Report generated on 22-Sep-2021 at 06:19:01 by pytest-html v3.1.1
| Packages | {"pluggy": "0.13.1", "py": "1.10.0", "pytest": "6.2.2"} |
| Platform | Linux-5.4.0-65-generic-x86_64-with-glibc2.27 |
| Plugins | {"html": "3.1.1", "metadata": "1.11.0"} |
| Python | 3.8.7 |
64504 tests ran in 27188.69 seconds.
(Un)check the boxes to filter the results.
63906 passed, 7415 skipped, 34 failed, 0 errors, 564 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Failed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_astype_boolean_view | 0.00 | |
|
args = (<cupy_tests.core_tests.test_ndarray_copy_and_view.TestArrayCopyAndView object at 0x7f280b7c9850>,) kw = {}, cupy_result = (array([0, 1, 2], dtype=int8),), cupy_error = None numpy_result = (array([0, 1, 1], dtype=int8),), numpy_error = None cupy_numpy_result_ndarrays = [(array([0, 1, 2], dtype=int8), array([0, 1, 1], dtype=int8))] cupy_r = array([0, 1, 2], dtype=int8), numpy_r = array([0, 1, 1], dtype=int8) masks = [None] @_wraps_partial_xp(impl, name, sp_name, scipy_name) def test_func(*args, **kw): # Run cupy and numpy ( cupy_result, cupy_error, numpy_result, numpy_error) = ( _call_func_numpy_cupy( impl, args, kw, name, sp_name, scipy_name)) assert cupy_result is not None or cupy_error is not None assert numpy_result is not None or numpy_error is not None # Check errors raised if cupy_error or numpy_error: _check_cupy_numpy_error(cupy_error, numpy_error, accept_error=accept_error) return # Check returned arrays if not isinstance(cupy_result, (tuple, list)): cupy_result = cupy_result, if not isinstance(numpy_result, (tuple, list)): numpy_result = numpy_result, assert len(cupy_result) == len(numpy_result) # Check types cupy_numpy_result_ndarrays = [ _convert_output_to_ndarray( cupy_r, numpy_r, sp_name, check_sparse_format) for cupy_r, numpy_r in zip(cupy_result, numpy_result)] # Check dtypes if type_check: for cupy_r, numpy_r in cupy_numpy_result_ndarrays: if cupy_r.dtype != numpy_r.dtype: raise AssertionError( '''ndarrays of different dtypes are returned. cupy: {} numpy: {}'''.format(cupy_r.dtype, numpy_r.dtype)) # Check contiguities if contiguous_check: for cupy_r, numpy_r in zip(cupy_result, numpy_result): if isinstance(numpy_r, numpy.ndarray): if (numpy_r.flags.c_contiguous and not cupy_r.flags.c_contiguous): raise AssertionError( 'The state of c_contiguous flag is false. ' '(cupy_result:{} numpy_result:{})'.format( cupy_r.flags.c_contiguous, numpy_r.flags.c_contiguous)) if (numpy_r.flags.f_contiguous and not cupy_r.flags.f_contiguous): raise AssertionError( 'The state of f_contiguous flag is false. ' '(cupy_result:{} numpy_result:{})'.format( cupy_r.flags.f_contiguous, numpy_r.flags.f_contiguous)) # Check shapes for cupy_r, numpy_r in cupy_numpy_result_ndarrays: assert cupy_r.shape == numpy_r.shape masks = [None] * len(cupy_result) if _contains_signed_and_unsigned(kw): needs_mask = [ cupy_r.dtype in _unsigned_dtypes for cupy_r in cupy_result] if any(needs_mask): masks = _make_positive_masks( impl, args, kw, name, sp_name, scipy_name) for i, flag in enumerate(needs_mask): if not flag: masks[i] = None # Check item values for (cupy_r, numpy_r), mask in zip( cupy_numpy_result_ndarrays, masks): # Behavior of assigning a negative value to an unsigned integer # variable is undefined. # nVidia GPUs and Intel CPUs behave differently. # To avoid this difference, we need to ignore dimensions whose # values are negative. skip = False if mask is not None: if cupy_r.shape == (): skip = (mask == 0).all() else: cupy_r = cupy_r[mask].get() numpy_r = numpy_r[mask] if not skip: > check_func(cupy_r, numpy_r) cupy/testing/_helper.py:355: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:660: in check_func _array.assert_array_equal(x, y, err_msg, verbose, strides_check) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ x = array([0, 1, 2], dtype=int8), y = array([0, 1, 1], dtype=int8), err_msg = '' verbose = True, strides_check = False def assert_array_equal(x, y, err_msg='', verbose=True, strides_check=False): """Raises an AssertionError if two array_like objects are not equal. Args: x(numpy.ndarray or cupy.ndarray): The actual object to check. y(numpy.ndarray or cupy.ndarray): The desired, expected object. strides_check(bool): If ``True``, consistency of strides is also checked. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_array_equal` """ > numpy.testing.assert_array_equal( cupy.asnumpy(x), cupy.asnumpy(y), err_msg=err_msg, verbose=verbose) E AssertionError: E Arrays are not equal E E Mismatched elements: 1 / 3 (33.3%) E Max absolute difference: 1 E Max relative difference: 1. E x: array([0, 1, 2], dtype=int8) E y: array([0, 1, 1], dtype=int8) cupy/testing/_array.py:91: AssertionError | |||
| Failed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_add_array_boolarray | 0.65 | |
|
self = <cupy_tests.core_tests.test_ndarray_elementwise_op.TestArrayElementwiseOp testMethod=test_add_array_boolarray> def test_add_array_boolarray(self): > self.check_array_boolarray_op(operator.add) tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py:478: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:837: in test_func impl(*args, **kw) cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[ 5., 8., 5.], [263., 253., 255.]]) desired = array([[3., 8., 2.], [9., 3., 9.]]), rtol = 1e-07, atol = 0 err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=0 E E Mismatched elements: 5 / 6 (83.3%) E Max absolute difference: 254. E Max relative difference: 83.33333333 E x: array([[ 5., 8., 5.], E [263., 253., 255.]]) E y: array([[3., 8., 2.], E [9., 3., 9.]]) cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ x_type is <class 'numpy.float64'> | |||
| Failed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_iadd_array_boolarray | 0.00 | |
|
self = <cupy_tests.core_tests.test_ndarray_elementwise_op.TestArrayElementwiseOp testMethod=test_iadd_array_boolarray> def test_iadd_array_boolarray(self): > self.check_array_boolarray_op(operator.iadd) tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py:481: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:837: in test_func impl(*args, **kw) cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[ 5., 8., 5.], [263., 253., 255.]]) desired = array([[3., 8., 2.], [9., 3., 9.]]), rtol = 1e-07, atol = 0 err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=0 E E Mismatched elements: 5 / 6 (83.3%) E Max absolute difference: 254. E Max relative difference: 83.33333333 E x: array([[ 5., 8., 5.], E [263., 253., 255.]]) E y: array([[3., 8., 2.], E [9., 3., 9.]]) cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ x_type is <class 'numpy.float64'> | |||
| Failed | tests/cupy_tests/math_tests/test_misc.py::TestConvolve_param_0_{mode='valid'}::test_convolve_diff_types | 0.04 | |
|
[XPASS(strict)] HIP/ROCm may have a bug with larger `b` | |||
| Failed | tests/cupy_tests/math_tests/test_misc.py::TestConvolve_param_1_{mode='same'}::test_convolve_diff_types | 0.01 | |
|
[XPASS(strict)] HIP/ROCm may have a bug with larger `b` | |||
| Failed | tests/cupy_tests/math_tests/test_misc.py::TestConvolve_param_2_{mode='full'}::test_convolve_diff_types | 0.01 | |
|
[XPASS(strict)] HIP/ROCm may have a bug with larger `b` | |||
| Failed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelate_param_0_{mode='valid'}::test_correlate_diff_types | 2.72 | |
|
[XPASS(strict)] ROCm/HIP may have a bug | |||
| Failed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelate_param_1_{mode='full'}::test_correlate_diff_types | 0.01 | |
|
[XPASS(strict)] ROCm/HIP may have a bug | |||
| Failed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelate_param_2_{mode='same'}::test_correlate_diff_types | 0.01 | |
|
[XPASS(strict)] ROCm/HIP may have a bug | |||
| Failed | tests/cupyx_tests/jit_tests/test_raw.py::TestRaw::test_atomic_add | 3.30 | |
|
self = <cupyx_tests.jit_tests.test_raw.TestRaw testMethod=test_atomic_add> dtype = <class 'numpy.float16'> @testing.for_dtypes('iILQefd') def test_atomic_add(self, dtype): @jit.rawkernel() def f(x, index, out): tid = jit.blockDim.x * jit.blockIdx.x + jit.threadIdx.x jit.atomic_add(out, index[tid], x[tid]) x = testing.shaped_random((1024,), dtype=dtype, seed=0) index = testing.shaped_random( (1024,), dtype=numpy.bool_, seed=1).astype(numpy.int32) out = cupy.zeros((2,), dtype=dtype) > f((32,), (32,), (x, index, out)) tests/cupyx_tests/jit_tests/test_raw.py:146: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/jit/_interface.py:92: in __call__ result = _compile.transpile( cupyx/jit/_compile.py:85: in transpile cuda_code, env = _transpile_function( cupyx/jit/_compile.py:175: in _transpile_function exc.reraise(source) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = _JitCompileError(TypeError('`atomicAdd` does not support float16 input.'), <_ast.Call object at 0x7f1f436230d0>) pycode = ' @jit.rawkernel()\n def f(x, index, out):\n tid = jit.blockDim.x * jit.blockIdx.x + jit.threadIdx.x\n> jit.atomic_add(out, index[tid], x[tid])\n' def reraise(self, pycode): start = self.node.lineno end = getattr(self.node, 'end_lineno', start) pycode = '\n'.join([ (f'> {line}' if start <= i + 1 <= end else f' {line}').rstrip() for i, line in enumerate(pycode.split('\n'))]) > raise self.error_type(self.mes + '\n\n' + pycode) E TypeError: `atomicAdd` does not support float16 input. E E @jit.rawkernel() E def f(x, index, out): E tid = jit.blockDim.x * jit.blockIdx.x + jit.threadIdx.x E > jit.atomic_add(out, index[tid], x[tid]) cupyx/jit/_compile.py:42: TypeError ------------------------------Captured stdout call------------------------------ dtype is e | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_46_{mode='grid-constant', order=4}] | 0.74 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestMapCoordinatesHalfInteger object at 0x7f1ee6877100> parameter: {'mode': 'grid-constant', 'order': 4}>,) kw = {'dtype': <class 'numpy.float64'>}, dtype = <class 'numpy.float64'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([229.76997843, 598.96953239]) desired = array([3.06993892, 8. ]), rtol = 1e-07, atol = 0.0001 err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=0.0001 E E Mismatched elements: 2 / 2 (100%) E Max absolute difference: 590.96953239 E Max relative difference: 73.87119155 E x: array([229.769978, 598.969532]) E y: array([3.069939, 8. ]) cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_47_{mode='grid-constant', order=5}] | 0.77 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestMapCoordinatesHalfInteger object at 0x7f1ee6884430> parameter: {'mode': 'grid-constant', 'order': 5}>,) kw = {'dtype': <class 'numpy.float64'>}, dtype = <class 'numpy.float64'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([ 78.42728447, 201.97560613]) desired = array([3.12122783, 8. ]), rtol = 1e-07, atol = 0.0001 err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=0.0001 E E Mismatched elements: 2 / 2 (100%) E Max absolute difference: 193.97560613 E Max relative difference: 24.24695077 E x: array([ 78.427284, 201.975606]) E y: array([3.121228, 8. ]) cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_4_{grid_mode=False, mode='constant', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.41 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1eddf22280> parameter: {'grid_mode': False, 'mode': 'constant', 'order': 4, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float32'>}, dtype = <class 'numpy.float32'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[-9.26215027e-04], [-7.12910551e-05], [-1.04548770e-03], [ 6.02170185e-04], [ ... [-1.58413204e-05], [-2.26292832e-05], [-1.52809316e-05], [-2.62873400e-05]]], dtype=float32) desired = array([[[-1.91677706e-16], [ 6.02007280e-16], [ 7.39644969e-18], [ 9.42839520e-17], [-... [ 2.49078413e-18], [-6.86374620e-18], [-2.01807717e-17], [-1.36889723e-17]]], dtype=float32) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 95 / 100 (95%) E Max absolute difference: 0.00124037 E Max relative difference: 1.6367563e+14 E x: array([[[-9.262150e-04], E [-7.129106e-05], E [-1.045488e-03],... E y: array([[[-1.916777e-16], E [ 6.020073e-16], E [ 7.396450e-18],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float32'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_5_{grid_mode=False, mode='constant', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.63 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1eddbbb700> parameter: {'grid_mode': False, 'mode': 'constant', 'order': 5, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float32'>}, dtype = <class 'numpy.float32'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[-6.23873319e-04], [-6.52701594e-04], [-5.34185849e-04], [-7.05319864e-04], [-... [-2.50156190e-05], [ 9.55036171e-07], [-1.27298597e-06], [-4.17136789e-06]]], dtype=float32) desired = array([[[ 2.1000416e-16], [-7.7505151e-16], [-6.6172874e-17], [-6.5140899e-16], [ 7.95... [-1.5922411e-17], [ 3.1236140e-17], [-5.3157008e-17], [-1.3124647e-17]]], dtype=float32) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 85 / 100 (85%) E Max absolute difference: 0.00084527 E Max relative difference: 1.881553e+13 E x: array([[[-6.238733e-04], E [-6.527016e-04], E [-5.341858e-04],... E y: array([[[ 2.100042e-16], E [-7.750515e-16], E [-6.617287e-17],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float32'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_16_{grid_mode=False, mode='mirror', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.16 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1eddbc8fd0> parameter: {'grid_mode': False, 'mode': 'mirror', 'order': 4, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float32'>}, dtype = <class 'numpy.float32'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[-9.26215027e-04], [-7.12910551e-05], [-1.04548770e-03], [ 6.02170185e-04], [ ... [-1.58413204e-05], [-2.26292832e-05], [-1.52809316e-05], [-2.62873400e-05]]], dtype=float32) desired = array([[[-1.91677706e-16], [ 6.02007280e-16], [ 7.39644969e-18], [ 9.42839520e-17], [-... [ 2.49078413e-18], [-6.86374620e-18], [-2.01807717e-17], [-1.36889723e-17]]], dtype=float32) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 95 / 100 (95%) E Max absolute difference: 0.00124037 E Max relative difference: 1.6367563e+14 E x: array([[[-9.262150e-04], E [-7.129106e-05], E [-1.045488e-03],... E y: array([[[-1.916777e-16], E [ 6.020073e-16], E [ 7.396450e-18],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float32'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_17_{grid_mode=False, mode='mirror', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.22 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1eddbbb100> parameter: {'grid_mode': False, 'mode': 'mirror', 'order': 5, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float32'>}, dtype = <class 'numpy.float32'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[-6.23873319e-04], [-6.52701594e-04], [-5.34185849e-04], [-7.05319864e-04], [-... [-2.50156190e-05], [ 9.55036171e-07], [-1.27298597e-06], [-4.17136789e-06]]], dtype=float32) desired = array([[[ 2.1000416e-16], [-7.7505151e-16], [-6.6172874e-17], [-6.5140899e-16], [ 7.95... [-1.5922411e-17], [ 3.1236140e-17], [-5.3157008e-17], [-1.3124647e-17]]], dtype=float32) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 85 / 100 (85%) E Max absolute difference: 0.00084527 E Max relative difference: 1.881553e+13 E x: array([[[-6.238733e-04], E [-6.527016e-04], E [-5.341858e-04],... E y: array([[[ 2.100042e-16], E [-7.750515e-16], E [-6.617287e-17],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float32'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_22_{grid_mode=False, mode='wrap', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.18 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1edd8ef580> parameter: {'grid_mode': False, 'mode': 'wrap', 'order': 4, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float32'>}, dtype = <class 'numpy.float32'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[-9.26215027e-04], [-7.12910551e-05], [-1.04548770e-03], [ 6.02170185e-04], [ ... [-1.58413204e-05], [-2.26292832e-05], [-1.52809316e-05], [-2.62873400e-05]]], dtype=float32) desired = array([[[-1.91677706e-16], [ 6.02007280e-16], [ 7.39644969e-18], [ 9.42839520e-17], [-... [ 2.49078413e-18], [-6.86374620e-18], [-2.01807717e-17], [-1.36889723e-17]]], dtype=float32) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 95 / 100 (95%) E Max absolute difference: 0.00124037 E Max relative difference: 1.6367563e+14 E x: array([[[-9.262150e-04], E [-7.129106e-05], E [-1.045488e-03],... E y: array([[[-1.916777e-16], E [ 6.020073e-16], E [ 7.396450e-18],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float32'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_23_{grid_mode=False, mode='wrap', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.26 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1edd87eb20> parameter: {'grid_mode': False, 'mode': 'wrap', 'order': 5, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float32'>}, dtype = <class 'numpy.float32'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[-6.23873319e-04], [-6.52701594e-04], [-5.34185849e-04], [-7.05319864e-04], [-... [-2.50156190e-05], [ 9.55036171e-07], [-1.27298597e-06], [-4.17136789e-06]]], dtype=float32) desired = array([[[ 2.1000416e-16], [-7.7505151e-16], [-6.6172874e-17], [-6.5140899e-16], [ 7.95... [-1.5922411e-17], [ 3.1236140e-17], [-5.3157008e-17], [-1.3124647e-17]]], dtype=float32) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 85 / 100 (85%) E Max absolute difference: 0.00084527 E Max relative difference: 1.881553e+13 E x: array([[[-6.238733e-04], E [-6.527016e-04], E [-5.341858e-04],... E y: array([[[ 2.100042e-16], E [-7.750515e-16], E [-6.617287e-17],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float32'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_46_{grid_mode=False, mode='grid-constant', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.51 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1edd903430> parameter: {'grid_mode': False, 'mode': 'grid-constant', 'order': 4, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float32'>}, dtype = <class 'numpy.float32'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[-1.6466675e-04], [-3.1765160e-06], [-2.8256103e-04], [ 1.0465207e-04], [-5.02... [-1.4928388e-06], [-5.8970027e-06], [-2.4932410e-06], [-3.5395026e-06]]], dtype=float32) desired = array([[[-8.12850668e-17], [-9.62678620e-17], [-7.64445911e-17], [ 6.90388762e-17], [-... [-1.31306278e-18], [-2.34584224e-18], [-1.16198641e-18], [-3.16820747e-19]]], dtype=float32) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 75 / 100 (75%) E Max absolute difference: 0.00034115 E Max relative difference: 2.5044335e+14 E x: array([[[-1.646668e-04], E [-3.176516e-06], E [-2.825610e-04],... E y: array([[[-8.128507e-17], E [-9.626786e-17], E [-7.644459e-17],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float32'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_47_{grid_mode=False, mode='grid-constant', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.21 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1edd87e550> parameter: {'grid_mode': False, 'mode': 'grid-constant', 'order': 5, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float32'>}, dtype = <class 'numpy.float32'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[ 1.46576144e-06], [-1.07652804e-05], [ 1.48250510e-05], [-2.88788979e-05], [-... [ 3.59045725e-06], [ 3.90473633e-06], [ 2.02454498e-06], [ 1.08106917e-06]]], dtype=float32) desired = array([[[-5.28892732e-17], [-4.68497761e-17], [-1.70810335e-16], [-1.91986781e-16], [-... [-3.94138989e-18], [-8.65396191e-18], [ 1.07858407e-18], [-2.29544853e-18]]], dtype=float32) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 40 / 100 (40%) E Max absolute difference: 0.00011814 E Max relative difference: 9.6834375e+13 E x: array([[[ 1.465761e-06], E [-1.076528e-05], E [ 1.482505e-05],... E y: array([[[-5.288927e-17], E [-4.684978e-17], E [-1.708103e-16],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float32'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_52_{grid_mode=True, mode='constant', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 0.93 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1eddbb2160> parameter: {'grid_mode': True, 'mode': 'constant', 'order': 4, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float64'>}, dtype = <class 'numpy.float64'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[ 0. ], [ 0. ], [ 0. ], [ 0. ], [ 0. ... [ 0. ], [ 0. ], [ 0. ], [ 0. ], [ 0. ]]]) desired = array([[[ 0.00000000e+00], [ 0.00000000e+00], [ 0.00000000e+00], [ 0.00000000e+00], [ ...000e+00], [ 0.00000000e+00], [ 0.00000000e+00], [ 0.00000000e+00], [ 0.00000000e+00]]]) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 64 / 100 (64%) E Max absolute difference: 2336.52632552 E Max relative difference: 629887.8879561 E x: array([[[ 0. ], E [ 0. ], E [ 0. ],... E y: array([[[ 0.000000e+00], E [ 0.000000e+00], E [ 0.000000e+00],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_53_{grid_mode=True, mode='constant', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.02 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1eddb510d0> parameter: {'grid_mode': True, 'mode': 'constant', 'order': 5, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float64'>}, dtype = <class 'numpy.float64'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[ 0.00000000e+00], [ 0.00000000e+00], [ 0.00000000e+00], [ 0.00000000e+00], [ ...000e+00], [ 0.00000000e+00], [ 0.00000000e+00], [ 0.00000000e+00], [ 0.00000000e+00]]]) desired = array([[[ 0.00000000e+00], [ 0.00000000e+00], [ 0.00000000e+00], [ 0.00000000e+00], [ ...000e+00], [ 0.00000000e+00], [ 0.00000000e+00], [ 0.00000000e+00], [ 0.00000000e+00]]]) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 64 / 100 (64%) E Max absolute difference: 233.83963068 E Max relative difference: 148867.79248851 E x: array([[[ 0.000000e+00], E [ 0.000000e+00], E [ 0.000000e+00],... E y: array([[[ 0.000000e+00], E [ 0.000000e+00], E [ 0.000000e+00],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_64_{grid_mode=True, mode='mirror', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 0.81 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1eddbd9a60> parameter: {'grid_mode': True, 'mode': 'mirror', 'order': 4, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float64'>}, dtype = <class 'numpy.float64'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[ 48.82195577], [ 48.82195577], [ 290.39318135], [ 337.78017528], [ 112.1240... [ -53.24969236], [ -21.88859247], [ 44.15090669], [ 53.29762289], [ 53.29762289]]]) desired = array([[[ 8.54663183e-03], [ 8.54663183e-03], [ 5.30645857e-02], [ 6.15797757e-02], [ ...126e-03], [-5.57818230e-04], [ 2.89445841e-04], [ 8.46143247e-05], [ 8.46143247e-05]]]) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 100 / 100 (100%) E Max absolute difference: 2336.52632552 E Max relative difference: 629887.88795612 E x: array([[[ 48.821956], E [ 48.821956], E [ 290.393181],... E y: array([[[ 8.546632e-03], E [ 8.546632e-03], E [ 5.306459e-02],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_65_{grid_mode=True, mode='mirror', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 0.86 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1edd872730> parameter: {'grid_mode': True, 'mode': 'mirror', 'order': 5, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float64'>}, dtype = <class 'numpy.float64'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[ 4.71685805e+00], [ 4.71685805e+00], [ 2.76221015e+01], [ 3.32433453e+01], [ ...958e+00], [-1.62349834e+00], [ 1.50933488e+01], [ 1.97919669e+01], [ 1.97919669e+01]]]) desired = array([[[ 8.60075856e-03], [ 8.60075856e-03], [ 5.25533883e-02], [ 6.23449044e-02], [ ...600e-03], [-8.00397905e-04], [ 4.16976616e-04], [ 1.32949066e-04], [ 1.32949066e-04]]]) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 100 / 100 (100%) E Max absolute difference: 233.83963068 E Max relative difference: 148867.79248854 E x: array([[[ 4.716858e+00], E [ 4.716858e+00], E [ 2.762210e+01],... E y: array([[[ 8.600759e-03], E [ 8.600759e-03], E [ 5.255339e-02],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_70_{grid_mode=True, mode='wrap', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 0.83 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1edd8e61f0> parameter: {'grid_mode': True, 'mode': 'wrap', 'order': 4, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float64'>}, dtype = <class 'numpy.float64'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[ 53.29762289], [ 51.0107262 ], [ 303.41199632], [ 352.92342892], [ 117.1507... [ -50.96485228], [ -20.9493958 ], [ 42.25647769], [ 51.0107262 ], [ 48.82195577]]]) desired = array([[[ 8.46143247e-05], [ 8.50392545e-04], [ 5.27994291e-03], [ 6.12720698e-03], [ ...636e-02], [-5.60619571e-03], [ 2.90899427e-03], [ 8.50392545e-04], [ 8.54663183e-03]]]) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 100 / 100 (100%) E Max absolute difference: 2336.52632552 E Max relative difference: 629887.8879561 E x: array([[[ 53.297623], E [ 51.010726], E [ 303.411996],... E y: array([[[ 8.461432e-05], E [ 8.503925e-04], E [ 5.279943e-03],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_71_{grid_mode=True, mode='wrap', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 0.85 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1edd25e490> parameter: {'grid_mode': True, 'mode': 'wrap', 'order': 5, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float64'>}, dtype = <class 'numpy.float64'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[ 1.97919669e+01], [ 9.66208561e+00], [ 5.65815436e+01], [ 6.80961870e+01], [ ...577e+00], [-7.92562963e-01], [ 7.36830399e+00], [ 9.66208561e+00], [ 4.71685805e+00]]]) desired = array([[[ 1.32949066e-04], [ 1.06932821e-03], [ 6.53393769e-03], [ 7.75131221e-03], [ ...718e-02], [-6.43771396e-03], [ 3.35380211e-03], [ 1.06932821e-03], [ 8.60075856e-03]]]) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 100 / 100 (100%) E Max absolute difference: 233.83963068 E Max relative difference: 148867.79248851 E x: array([[[ 1.979197e+01], E [ 9.662086e+00], E [ 5.658154e+01],... E y: array([[[ 1.329491e-04], E [ 1.069328e-03], E [ 6.533938e-03],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_94_{grid_mode=True, mode='grid-constant', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 0.92 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1eddbf18e0> parameter: {'grid_mode': True, 'mode': 'grid-constant', 'order': 4, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float64'>}, dtype = <class 'numpy.float64'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[ 5.63055219e+01], [-1.22528405e+02], [-3.83476709e+02], [-3.83476709e+02], [-...021e+00], [ 4.40535983e+00], [-2.69124172e+00], [-1.59183812e+00], [ 9.72456581e-01]]]) desired = array([[[ 1.27949283e-02], [-2.43606830e-02], [-7.91692940e-02], [-7.91692940e-02], [-...333e-03], [ 9.13158865e-04], [-5.54269262e-04], [-3.27391850e-04], [ 1.99955080e-04]]]) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 100 / 100 (100%) E Max absolute difference: 2611.23242921 E Max relative difference: 5747.85704324 E x: array([[[ 5.630552e+01], E [-1.225284e+02], E [-3.834767e+02],... E y: array([[[ 1.279493e-02], E [-2.436068e-02], E [-7.916929e-02],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| Failed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_95_{grid_mode=True, mode='grid-constant', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 0.82 | |
|
args = (<<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestZoomOutputSize1 object at 0x7f1eddb51e80> parameter: {'grid_mode': True, 'mode': 'grid-constant', 'order': 5, 'shape': (5, 5, 2), 'zoom': (2, 2, 0.5)}>,) kw = {'dtype': <class 'numpy.float64'>}, dtype = <class 'numpy.float64'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[ 4.16965077e+00], [-1.18699209e+01], [-3.36177788e+01], [-3.36177788e+01], [-...671e-01], [ 6.07624141e-01], [-3.96545295e-01], [-2.61764771e-01], [ 1.70742628e-01]]]) desired = array([[[ 1.44354197e-02], [-2.67893098e-02], [-8.45564959e-02], [-8.45564959e-02], [-...699e-03], [ 1.49724992e-03], [-9.55056276e-04], [-6.25982935e-04], [ 4.07383783e-04]]]) rtol = 1e-07, atol = 1e-05, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-05 E E Mismatched elements: 100 / 100 (100%) E Max absolute difference: 270.54779997 E Max relative difference: 678.67662434 E x: array([[[ 4.169651e+00], E [-1.186992e+01], E [-3.361778e+01],... E y: array([[[ 1.443542e-02], E [-2.678931e-02], E [-8.455650e-02],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| Failed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_12_{mode='full', size1=(3, 4, 10), size2=3}] | 0.01 | |
|
args = (<<test_signaltools.TestFFTConvolve object at 0x7f1ecffa4fa0> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 3}>,) kw = {'dtype': <class 'numpy.float64'>}, dtype = <class 'numpy.float64'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[ 7.95232463e+01, 7.18281100e+01, -1.08830701e+01, -2.99679584e+01, -3.25484953e+01, 1.26672720e+01... -7.54439194e+02, -5.21641607e+02, -8.12674000e+02, -6.47990876e+02, -5.10732530e+02, -3.22703181e+02]]]) desired = array([[[ 30.11962621, 78.50111643, 117.31051907, 116.12191629, 98.55258208, 98.59044458, 95.74539693, 11...68602809, 61.03013855, 47.46049262, 68.94265745, 60.25645139, 72.94771467, 56.95651852, 9.92766801]]]) rtol = 1e-08, atol = 1e-08, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-08, atol=1e-08 E E Mismatched elements: 360 / 360 (100%) E Max absolute difference: 2190.14702549 E Max relative difference: 51.28040502 E x: array([[[ 7.952325e+01, 7.182811e+01, -1.088307e+01, -2.996796e+01, E -3.254850e+01, 1.266727e+01, -1.785286e+01, 3.703741e+01, E 4.268585e+01, -9.254362e+01, -1.219189e+02, -3.967023e+01],... E y: array([[[ 30.119626, 78.501116, 117.310519, 116.121916, 98.552582, E 98.590445, 95.745397, 119.16961 , 143.041925, 143.716735, E 85.509392, 23.11245 ],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| Failed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_44_{mode='valid', size1=(3, 4, 10), size2=3}] | 0.00 | |
|
args = (<<test_signaltools.TestFFTConvolve object at 0x7f1ecf314af0> parameter: {'mode': 'valid', 'size1': (3, 4, 10), 'size2': 3}>,) kw = {'dtype': <class 'numpy.float16'>}, dtype = <class 'numpy.float16'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[-41138.582 , 19940.28 , -28182.572 , -13121.586 , 5010.394 , 22920.586 , 935.27344, ... , -17812.22 , 36488.453 , -46610.863 , -20180.379 , -39984.668 , -5373.056 ]]], dtype=float32) desired = array([[[800.56824, 863.0409 , 683.2234 , 644.73334, 573.70703, 714.93976, 728.83124, 808.6099 ], [879.7528 , 920.53406, 785.268 , 688.99976, 587.2948 , 719.44885, 815.8003 , 851.3048 ]]], dtype=float32) rtol = 0.001, atol = 0.001, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=0.001, atol=0.001 E E Mismatched elements: 16 / 16 (100%) E Max absolute difference: 47198.156 E Max relative difference: 80.36536 E x: array([[[-41138.582 , 19940.28 , -28182.572 , -13121.586 , E 5010.394 , 22920.586 , 935.27344, 2970.8938 ], E [ 6094.4087 , 35791.06 , -17812.22 , 36488.453 ,... E y: array([[[800.56824, 863.0409 , 683.2234 , 644.73334, 573.70703, E 714.93976, 728.83124, 808.6099 ], E [879.7528 , 920.53406, 785.268 , 688.99976, 587.2948 , E 719.44885, 815.8003 , 851.3048 ]]], dtype=float32) cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float16'> | |||
| Failed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_12_{mode='full', size1=(3, 4, 10), size2=3}] | 0.01 | |
|
args = (<<test_signaltools.TestFFTConvolve object at 0x7f1ecf28a5e0> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 3}>,) kw = {'dtype': <class 'numpy.float64'>}, dtype = <class 'numpy.float64'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[ 7.95232463e+01, 7.18281100e+01, -1.08830701e+01, -2.99679584e+01, -3.25484953e+01, 1.26672720e+01... -7.54439194e+02, -5.21641607e+02, -8.12674000e+02, -6.47990876e+02, -5.10732530e+02, -3.22703181e+02]]]) desired = array([[[ 30.11962621, 78.50111643, 117.31051907, 116.12191629, 98.55258208, 98.59044458, 95.74539693, 11...68602809, 61.03013855, 47.46049262, 68.94265745, 60.25645139, 72.94771467, 56.95651852, 9.92766801]]]) rtol = 1e-08, atol = 1e-08, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-08, atol=1e-08 E E Mismatched elements: 360 / 360 (100%) E Max absolute difference: 2190.14702549 E Max relative difference: 51.28040502 E x: array([[[ 7.952325e+01, 7.182811e+01, -1.088307e+01, -2.996796e+01, E -3.254850e+01, 1.266727e+01, -1.785286e+01, 3.703741e+01, E 4.268585e+01, -9.254362e+01, -1.219189e+02, -3.967023e+01],... E y: array([[[ 30.119626, 78.501116, 117.310519, 116.121916, 98.552582, E 98.590445, 95.745397, 119.16961 , 143.041925, 143.716735, E 85.509392, 23.11245 ],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| Failed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_44_{mode='valid', size1=(3, 4, 10), size2=3}] | 0.00 | |
|
args = (<<test_signaltools.TestFFTConvolve object at 0x7f1ecf109190> parameter: {'mode': 'valid', 'size1': (3, 4, 10), 'size2': 3}>,) kw = {'dtype': <class 'numpy.float16'>}, dtype = <class 'numpy.float16'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) cupy/testing/_array.py:24: in assert_allclose numpy.testing.assert_allclose( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ x = array([[[ 21340., inf, -51680., -inf, inf, 49500., -inf, inf], [ inf, -inf, -45600., inf, -inf, -inf, -inf, inf]]], dtype=float16) y = array([[[800.5, 863. , 683. , 644.5, 573.5, 715. , 729. , 808.5], [880. , 920.5, 785.5, 689. , 587.5, 719.5, 816. , 851.5]]], dtype=float16) func = <function assert_array_compare.<locals>.<lambda> at 0x7f1ecf3539d0> hasval = '+inf' def func_assert_same_pos(x, y, func=isnan, hasval='nan'): """Handling nan/inf. Combine results of running func on x and y, checking that they are True at the same locations. """ x_id = func(x) y_id = func(y) # We include work-arounds here to handle three types of slightly # pathological ndarray subclasses: # (1) all() on `masked` array scalars can return masked arrays, so we # use != True # (2) __eq__ on some ndarray subclasses returns Python booleans # instead of element-wise comparisons, so we cast to bool_() and # use isinstance(..., bool) checks # (3) subclasses with bare-bones __array_function__ implementations may # not implement np.all(), so favor using the .all() method # We are not committed to supporting such subclasses, but it's nice to # support them if possible. if bool_(x_id == y_id).all() != True: msg = build_err_msg([x, y], err_msg + '\nx and y %s location mismatch:' % (hasval), verbose=verbose, header=header, names=('x', 'y'), precision=precision) > raise AssertionError(msg) E AssertionError: E Not equal to tolerance rtol=0.001, atol=0.001 E E x and y +inf location mismatch: E x: array([[[ 21340., inf, -51680., -inf, inf, 49500., -inf, E inf], E [ inf, -inf, -45600., inf, -inf, -inf, -inf, E inf]]], dtype=float16) E y: array([[[800.5, 863. , 683. , 644.5, 573.5, 715. , 729. , 808.5], E [880. , 920.5, 785.5, 689. , 587.5, 719.5, 816. , 851.5]]], E dtype=float16) /home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/testing/_private/utils.py:740: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float16'> | |||
| Failed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_12_{mode='full', size1=(3, 4, 10), size2=3}] | 0.01 | |
|
args = (<<test_signaltools.TestFFTConvolve object at 0x7f1ecf109910> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 3}>,) kw = {'dtype': <class 'numpy.float32'>}, dtype = <class 'numpy.float32'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[ -67.023415 , -34.65665 , 2.4082286 , 4.3990808 , 30.086672 , -31.448004 , -59.45321...1.743105 , 4.0651803 , -59.686687 , -25.86646 , -49.65274 , -31.778236 ]]], dtype=float32) desired = array([[[ 7.8674293, 45.3722 , 60.898335 , 54.842022 , 48.07059 , 42.814228 , 52.615826 , 48.42525...42563 , 126.12969 , 119.81335 , 143.07594 , 136.70508 , 97.919945 , 38.007053 ]]], dtype=float32) rtol = 0.001, atol = 0.001, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=0.001, atol=0.001 E E Mismatched elements: 360 / 360 (100%) E Max absolute difference: 750.6533 E Max relative difference: 10.774607 E x: array([[[ -67.023415, -34.65665 , 2.408229, 4.399081, E 30.086672, -31.448004, -59.453213, -71.971054, E -90.94983 , -76.126305, -63.273407, -44.329117],... E y: array([[[ 7.867429, 45.3722 , 60.898335, 54.842022, 48.07059 , E 42.814228, 52.615826, 48.42525 , 76.05639 , 77.71094 , E 35.934895, 4.535131],... cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float32'> | |||
| Failed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_44_{mode='valid', size1=(3, 4, 10), size2=3}] | 0.01 | |
|
args = (<<test_signaltools.TestFFTConvolve object at 0x7f1ecf31cd90> parameter: {'mode': 'valid', 'size1': (3, 4, 10), 'size2': 3}>,) kw = {'dtype': <class 'numpy.longlong'>}, dtype = <class 'numpy.longlong'> @_wraps_partial(impl, name) def test_func(*args, **kw): for dtype in dtypes: try: kw[name] = numpy.dtype(dtype).type > impl(*args, **kw) cupy/testing/_helper.py:837: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array([[[-9223372034952392704, 9223372036489740288, -9223372034401665024, 9223372036581769216, -92... -8323010019634937856, 9223372034681276416, 9223372033914114048, -9223372034838167552]]], dtype=int64) desired = array([[[629, 722, 546, 533, 486, 484, 673, 613], [706, 763, 543, 463, 398, 605, 652, 729]]], dtype=int64) rtol = 1e-08, atol = 1e-08, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-08, atol=1e-08 E E Mismatched elements: 16 / 16 (100%) E Max absolute difference: 9223372036581768683 E Max relative difference: 2.09120855e+16 E x: array([[[-9223372034952392704, 9223372036489740288, E -9223372034401665024, 9223372036581769216, E -9223372034839863296, 9223372033767677952,... E y: array([[[629, 722, 546, 533, 486, 484, 673, 613], E [706, 763, 543, 463, 398, 605, 652, 729]]], dtype=int64) cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.longlong'> | |||
| XFailed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_5_{ordera='C', orderc='F', shape=(9, 10), side='R'}] | 0.00 | |
|
self = <<cupy_tests.test_cublas.TestDgmm object at 0x7f210e184430> parameter: {'ordera': 'C', 'orderc': 'F', 'shape': (9, 10), 'side': 'R'}> dtype = <class 'numpy.float32'> @testing.for_dtypes('fdFD') def test_dgmm_incx_minus_one(self, dtype): if self.orderc != 'F': pytest.skip() if cupy.cuda.runtime.is_hip: if self._check_dgmm_incx_minus_one_hip_skip_condition(): > pytest.xfail('HIP dgmm may have a bug') E _pytest.outcomes.XFailed: HIP dgmm may have a bug tests/cupy_tests/test_cublas.py:475: XFailed | |||
| XFailed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_7_{ordera='C', orderc='F', shape=(10, 9), side='R'}] | 0.00 | |
|
self = <<cupy_tests.test_cublas.TestDgmm object at 0x7f210e0fb5b0> parameter: {'ordera': 'C', 'orderc': 'F', 'shape': (10, 9), 'side': 'R'}> dtype = <class 'numpy.float32'> @testing.for_dtypes('fdFD') def test_dgmm_incx_minus_one(self, dtype): if self.orderc != 'F': pytest.skip() if cupy.cuda.runtime.is_hip: if self._check_dgmm_incx_minus_one_hip_skip_condition(): > pytest.xfail('HIP dgmm may have a bug') E _pytest.outcomes.XFailed: HIP dgmm may have a bug tests/cupy_tests/test_cublas.py:475: XFailed | |||
| XFailed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_12_{ordera='F', orderc='F', shape=(9, 10), side='L'}] | 0.00 | |
|
self = <<cupy_tests.test_cublas.TestDgmm object at 0x7f210e080e20> parameter: {'ordera': 'F', 'orderc': 'F', 'shape': (9, 10), 'side': 'L'}> dtype = <class 'numpy.float32'> @testing.for_dtypes('fdFD') def test_dgmm_incx_minus_one(self, dtype): if self.orderc != 'F': pytest.skip() if cupy.cuda.runtime.is_hip: if self._check_dgmm_incx_minus_one_hip_skip_condition(): > pytest.xfail('HIP dgmm may have a bug') E _pytest.outcomes.XFailed: HIP dgmm may have a bug tests/cupy_tests/test_cublas.py:475: XFailed | |||
| XFailed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_14_{ordera='F', orderc='F', shape=(10, 9), side='L'}] | 0.00 | |
|
self = <<cupy_tests.test_cublas.TestDgmm object at 0x7f210e163070> parameter: {'ordera': 'F', 'orderc': 'F', 'shape': (10, 9), 'side': 'L'}> dtype = <class 'numpy.float32'> @testing.for_dtypes('fdFD') def test_dgmm_incx_minus_one(self, dtype): if self.orderc != 'F': pytest.skip() if cupy.cuda.runtime.is_hip: if self._check_dgmm_incx_minus_one_hip_skip_condition(): > pytest.xfail('HIP dgmm may have a bug') E _pytest.outcomes.XFailed: HIP dgmm may have a bug tests/cupy_tests/test_cublas.py:475: XFailed | |||
| XFailed | tests/cupy_tests/test_numpy_interop.py::TestArrayUfunc::test_matmul | 0.00 | |
|
self = <cupy_tests.test_numpy_interop.TestArrayUfunc object at 0x7f24e68ce6d0> @pytest.mark.xfail( reason='cupy.ndarray.__array_ufunc__ does not support gufuncs yet') def test_matmul(self): x = cupy.array([3, 7]) y = MockArray() > assert x @ y == ('matmul', (x, y), {}) tests/cupy_tests/test_numpy_interop.py:81: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/core.pyx:1121: in cupy._core.core.ndarray.__matmul__ return cupy.linalg._product.matmul(x, y) cupy/linalg/_product.py:42: in matmul return _gu_func_matmul(x1, x2, out=out, axes=axes) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy._core._gufuncs._GUFunc object at 0x7f260ad44d30> args = (array([3, 7]), <cupy_tests.test_numpy_interop.MockArray object at 0x7f1febb86df0>) kwargs = {'axes': None, 'out': None}, dtype = dtype('int64') arg = <cupy_tests.test_numpy_interop.MockArray object at 0x7f1febb86df0> ret_dtype = dtype('int64') def __call__(self, *args, **kwargs): ''' Apply a generalized ufunc. Args: args: Input arguments. Each of them can be a :class:`cupy.ndarray` object or a scalar. The output arguments can be omitted or be specified by the ``out`` argument. axes (List of tuples of int, optional): A list of tuples with indices of axes a generalized ufunc should operate on. For instance, for a signature of ``'(i,j),(j,k)->(i,k)'`` appropriate for matrix multiplication, the base elements are two-dimensional matrices and these are taken to be stored in the two last axes of each argument. The corresponding axes keyword would be ``[(-2, -1), (-2, -1), (-2, -1)]``. For simplicity, for generalized ufuncs that operate on 1-dimensional arrays (vectors), a single integer is accepted instead of a single-element tuple, and for generalized ufuncs for which all outputs are scalars, the output tuples can be omitted. axis (int, optional): A single axis over which a generalized ufunc should operate. This is a short-cut for ufuncs that operate over a single, shared core dimension, equivalent to passing in axes with entries of (axis,) for each single-core-dimension argument and ``()`` for all others. For instance, for a signature ``'(i),(i)->()'``, it is equivalent to passing in ``axes=[(axis,), (axis,), ()]``. keepdims (bool, optional): If this is set to True, axes which are reduced over will be left in the result as a dimension with size one, so that the result will broadcast correctly against the inputs. This option can only be used for generalized ufuncs that operate on inputs that all have the same number of core dimensions and with outputs that have no core dimensions , i.e., with signatures like ``'(i),(i)->()'`` or ``'(m,m)->()'``. If used, the location of the dimensions in the output can be controlled with axes and axis. out (cupy.ndarray): Output array. It outputs to new arrays default. Returns: Output array or a tuple of output arrays. ''' # This argument cannot be used for generalized ufuncs # as those take non-scalar input. # where = kwargs.pop('where', None) dtype = args[0].dtype for arg in args: > ret_dtype = numpy.promote_types(dtype, arg.dtype) E AttributeError: 'MockArray' object has no attribute 'dtype' cupy/_core/_gufuncs.py:399: AttributeError | |||
| XFailed | tests/cupy_tests/core_tests/test_ndarray_conversion.py::TestNdarrayToBytes_param_1_{shape=(1,)}::test_item | 0.00 | |
|
self = <<cupy_tests.core_tests.test_ndarray_conversion.TestNdarrayToBytes_param_1_{shape=(1,)} testMethod=test_item> parameter: {'shape': (1,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_equal() def test_item(self, xp, dtype): if (runtime.is_hip and (self.shape == (1,) or (self.shape == (2, 3) and not hasattr(self, 'order')))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/core_tests/test_ndarray_conversion.py:54: XFailed | |||
| XFailed | tests/cupy_tests/core_tests/test_ndarray_conversion.py::TestNdarrayToBytes_param_2_{shape=(2, 3)}::test_item | 0.00 | |
|
self = <<cupy_tests.core_tests.test_ndarray_conversion.TestNdarrayToBytes_param_2_{shape=(2, 3)} testMethod=test_item> parameter: {'shape': (2, 3)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_equal() def test_item(self, xp, dtype): if (runtime.is_hip and (self.shape == (1,) or (self.shape == (2, 3) and not hasattr(self, 'order')))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/core_tests/test_ndarray_conversion.py:54: XFailed | |||
| XFailed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_0_{indexes=(1, 0, 2), shape=(2, 3, 4), transpose=None}::test_getitem | 0.00 | |
|
self = <<cupy_tests.core_tests.test_ndarray_indexing.TestArrayIndexingParameterized_param_0_{indexes=(1, 0, 2), shape=(2, 3, 4), transpose=None} testMethod=test_getitem> parameter: {'shape': (2, 3, 4), 'transpose': None, 'indexes': (1, 0, 2)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_array_equal() def test_getitem(self, xp, dtype): if cupy.cuda.runtime.is_hip: if self._check_getitem_hip_skip_condition(): > pytest.xfail('HIP may have a bug') E _pytest.outcomes.XFailed: HIP may have a bug tests/cupy_tests/core_tests/test_ndarray_indexing.py:101: XFailed | |||
| XFailed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_1_{indexes=(-1, 0, -2), shape=(2, 3, 4), transpose=None}::test_getitem | 0.00 | |
|
self = <<cupy_tests.core_tests.test_ndarray_indexing.TestArrayIndexingParameterized_param_1_{indexes=(-1, 0, -2), shape=(2, 3..., transpose=None} testMethod=test_getitem> parameter: {'shape': (2, 3, 4), 'transpose': None, 'indexes': (-1, 0, -2)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_array_equal() def test_getitem(self, xp, dtype): if cupy.cuda.runtime.is_hip: if self._check_getitem_hip_skip_condition(): > pytest.xfail('HIP may have a bug') E _pytest.outcomes.XFailed: HIP may have a bug tests/cupy_tests/core_tests/test_ndarray_indexing.py:101: XFailed | |||
| XFailed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_2_{indexes=(1, 0, 2), shape=(2, 3, 4), transpose=(2, 0, 1)}::test_getitem | 0.00 | |
|
self = <<cupy_tests.core_tests.test_ndarray_indexing.TestArrayIndexingParameterized_param_2_{indexes=(1, 0, 2), shape=(2, 3, ...ose=(2, 0, 1)} testMethod=test_getitem> parameter: {'shape': (2, 3, 4), 'transpose': (2, 0, 1), 'indexes': (1, 0, 2)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_array_equal() def test_getitem(self, xp, dtype): if cupy.cuda.runtime.is_hip: if self._check_getitem_hip_skip_condition(): > pytest.xfail('HIP may have a bug') E _pytest.outcomes.XFailed: HIP may have a bug tests/cupy_tests/core_tests/test_ndarray_indexing.py:101: XFailed | |||
| XFailed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_3_{indexes=(-1, 0, -2), shape=(2, 3, 4), transpose=(2, 0, 1)}::test_getitem | 0.00 | |
|
self = <<cupy_tests.core_tests.test_ndarray_indexing.TestArrayIndexingParameterized_param_3_{indexes=(-1, 0, -2), shape=(2, 3...e=(2, 0, 1)} testMethod=test_getitem> parameter: {'shape': (2, 3, 4), 'transpose': (2, 0, 1), 'indexes': (-1, 0, -2)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_array_equal() def test_getitem(self, xp, dtype): if cupy.cuda.runtime.is_hip: if self._check_getitem_hip_skip_condition(): > pytest.xfail('HIP may have a bug') E _pytest.outcomes.XFailed: HIP may have a bug tests/cupy_tests/core_tests/test_ndarray_indexing.py:101: XFailed | |||
| XFailed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_14_{indexes=(slice(None, None, None), None), shape=(2,), transpose=None}::test_getitem | 0.00 | |
|
self = <<cupy_tests.core_tests.test_ndarray_indexing.TestArrayIndexingParameterized_param_14_{indexes=(slice(None, None, None...e} testMethod=test_getitem> parameter: {'shape': (2,), 'transpose': None, 'indexes': (slice(None, None, None), None)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_array_equal() def test_getitem(self, xp, dtype): if cupy.cuda.runtime.is_hip: if self._check_getitem_hip_skip_condition(): > pytest.xfail('HIP may have a bug') E _pytest.outcomes.XFailed: HIP may have a bug tests/cupy_tests/core_tests/test_ndarray_indexing.py:101: XFailed | |||
| XFailed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_18_{indexes=(slice(-9, -10, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
self = <<cupy_tests.core_tests.test_ndarray_indexing.TestArrayIndexingParameterized_param_18_{indexes=(slice(-9, -10, -1),), ...spose=None} testMethod=test_getitem> parameter: {'shape': (10,), 'transpose': None, 'indexes': (slice(-9, -10, -1),)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_array_equal() def test_getitem(self, xp, dtype): if cupy.cuda.runtime.is_hip: if self._check_getitem_hip_skip_condition(): > pytest.xfail('HIP may have a bug') E _pytest.outcomes.XFailed: HIP may have a bug tests/cupy_tests/core_tests/test_ndarray_indexing.py:101: XFailed | |||
| XFailed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_27_{indexes=(slice(-4, -5, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
self = <<cupy_tests.core_tests.test_ndarray_indexing.TestArrayIndexingParameterized_param_27_{indexes=(slice(-4, -5, -1),), s...nspose=None} testMethod=test_getitem> parameter: {'shape': (10,), 'transpose': None, 'indexes': (slice(-4, -5, -1),)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_array_equal() def test_getitem(self, xp, dtype): if cupy.cuda.runtime.is_hip: if self._check_getitem_hip_skip_condition(): > pytest.xfail('HIP may have a bug') E _pytest.outcomes.XFailed: HIP may have a bug tests/cupy_tests/core_tests/test_ndarray_indexing.py:101: XFailed | |||
| XFailed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_38_{indexes=(slice(-5, -6, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
self = <<cupy_tests.core_tests.test_ndarray_indexing.TestArrayIndexingParameterized_param_38_{indexes=(slice(-5, -6, -1),), s...nspose=None} testMethod=test_getitem> parameter: {'shape': (10,), 'transpose': None, 'indexes': (slice(-5, -6, -1),)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_array_equal() def test_getitem(self, xp, dtype): if cupy.cuda.runtime.is_hip: if self._check_getitem_hip_skip_condition(): > pytest.xfail('HIP may have a bug') E _pytest.outcomes.XFailed: HIP may have a bug tests/cupy_tests/core_tests/test_ndarray_indexing.py:101: XFailed | |||
| XFailed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceHandles::test_cusparse_handle | 0.00 | |
|
self = <cupy_tests.cuda_tests.test_device.TestDeviceHandles testMethod=test_cusparse_handle> @pytest.mark.xfail( runtime.is_hip, reason='ROCm/HIP sparse support is not yet ready') def test_cusparse_handle(self): > self._check_handle(cuda.device.get_cusparse_handle) tests/cupy_tests/cuda_tests/test_device.py:153: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.cuda_tests.test_device.TestDeviceHandles testMethod=test_cusparse_handle> func = <built-in function get_cusparse_handle> def _check_handle(self, func): handles = [func(), None, None] def _subthread(): cupy.cuda.Device().use() handles[1] = func() handles[2] = func() t = threading.Thread(target=_subthread) t.start() t.join() assert handles[0] is not None > assert handles[0] != handles[1] E AssertionError: assert 139801357598944 != 139801357598944 tests/cupy_tests/cuda_tests/test_device.py:138: AssertionError | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_roots | 2.66 | |
|
self = <cupy_tests.lib_tests.test_polynomial.TestPoly1d object at 0x7f24db4e4f10> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.int8'> @pytest.mark.xfail(runtime.is_hip, reason='rocBLAS not implemented') @testing.for_signed_dtypes() @testing.numpy_cupy_allclose(rtol=1e-6) def test_poly1d_roots(self, xp, dtype): a = xp.array([-3, -2.5, 3], dtype) > out = xp.poly1d(a).roots tests/cupy_tests/lib_tests/test_polynomial.py:133: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/lib/_polynomial.pyx:63: in cupy.lib._polynomial.poly1d.roots.__get__ return _routines_poly.roots(self._coeffs) cupy/lib/_routines_poly.py:327: in roots out = cupy.linalg.eigvalsh(cmatrix) cupy/linalg/_eigenvalue.py:148: in eigvalsh return _syevd(a, UPLO, False)[0] cupy/linalg/_eigenvalue.py:53: in _syevd work_size = buffer_size( cupy_backends/cuda/libs/cusolver.pyx:3087: in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize cpdef int dsyevd_bufferSize(intptr_t handle, int jobz, int uplo, int n, cupy_backends/cuda/libs/cusolver.pyx:3096: in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 133, in test_poly1d_roots E out = xp.poly1d(a).roots E File "cupy/lib/_polynomial.pyx", line 63, in cupy.lib._polynomial.poly1d.roots.__get__ E return _routines_poly.roots(self._coeffs) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/lib/_routines_poly.py", line 327, in roots E out = cupy.linalg.eigvalsh(cmatrix) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/linalg/_eigenvalue.py", line 148, in eigvalsh E return _syevd(a, UPLO, False)[0] E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/linalg/_eigenvalue.py", line 53, in _syevd E work_size = buffer_size( E File "cupy_backends/cuda/libs/cusolver.pyx", line 3087, in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize E cpdef int dsyevd_bufferSize(intptr_t handle, int jobz, int uplo, int n, E File "cupy_backends/cuda/libs/cusolver.pyx", line 3096, in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.int8'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_0_{fname='add', type_l='poly1d', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7b989a0> parameter: {'fname': 'add', 'type_l': 'poly1d', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_1_{fname='add', type_l='ndarray', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7f83610> parameter: {'fname': 'add', 'type_l': 'ndarray', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_2_{fname='add', type_l='python_scalar', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f24db7a2160> parameter: {'fname': 'add', 'type_l': 'python_scalar', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_3_{fname='add', type_l='numpy_scalar', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7f88fd0> parameter: {'fname': 'add', 'type_l': 'numpy_scalar', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_4_{fname='subtract', type_l='poly1d', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7b981c0> parameter: {'fname': 'subtract', 'type_l': 'poly1d', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_5_{fname='subtract', type_l='ndarray', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7eb8790> parameter: {'fname': 'subtract', 'type_l': 'ndarray', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_6_{fname='subtract', type_l='python_scalar', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7a28af0> parameter: {'fname': 'subtract', 'type_l': 'python_scalar', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_7_{fname='subtract', type_l='numpy_scalar', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7b34130> parameter: {'fname': 'subtract', 'type_l': 'numpy_scalar', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_8_{fname='multiply', type_l='poly1d', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7aeba30> parameter: {'fname': 'multiply', 'type_l': 'poly1d', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_9_{fname='multiply', type_l='ndarray', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7a69d90> parameter: {'fname': 'multiply', 'type_l': 'ndarray', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_10_{fname='multiply', type_l='python_scalar', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd772e4c0> parameter: {'fname': 'multiply', 'type_l': 'python_scalar', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_11_{fname='multiply', type_l='numpy_scalar', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7b3adf0> parameter: {'fname': 'multiply', 'type_l': 'numpy_scalar', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_12_{fname='divide', type_l='poly1d', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7a28910> parameter: {'fname': 'divide', 'type_l': 'poly1d', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_13_{fname='divide', type_l='ndarray', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7eb8160> parameter: {'fname': 'divide', 'type_l': 'ndarray', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_14_{fname='divide', type_l='python_scalar', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7af9610> parameter: {'fname': 'divide', 'type_l': 'python_scalar', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_15_{fname='divide', type_l='numpy_scalar', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7afba60> parameter: {'fname': 'divide', 'type_l': 'numpy_scalar', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_16_{fname='power', type_l='poly1d', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7aebe80> parameter: {'fname': 'power', 'type_l': 'poly1d', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_17_{fname='power', type_l='ndarray', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd76d3550> parameter: {'fname': 'power', 'type_l': 'ndarray', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_18_{fname='power', type_l='python_scalar', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7a288e0> parameter: {'fname': 'power', 'type_l': 'python_scalar', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dMathArithmetic::test_poly1d_arithmetic[_param_19_{fname='power', type_l='numpy_scalar', type_r='poly1d'}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPoly1dMathArithmetic object at 0x7f1fd7eb8c10> parameter: {'fname': 'power', 'type_l': 'numpy_scalar', 'type_r': 'poly1d'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_poly1d_arithmetic(self, xp, dtype): func = getattr(xp, self.fname) a1 = self._get_input(xp, self.type_l, dtype) a2 = self._get_input(xp, self.type_r, dtype) > return func(a1, a2) tests/cupy_tests/lib_tests/test_polynomial.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/_core/_kernel.pyx:1119: in cupy._core._kernel.ufunc.__call__ arg_list = _preprocess_args(dev_id, args, False) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('Unsupported type %s' % type(arg)) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 332, in test_poly1d_arithmetic E return func(a1, a2) E File "cupy/_core/_kernel.pyx", line 1119, in cupy._core._kernel.ufunc.__call__ E arg_list = _preprocess_args(dev_id, args, False) E File "cupy/_core/_kernel.pyx", line 110, in cupy._core._kernel._preprocess_args E raise TypeError('Unsupported type %s' % type(arg)) E TypeError: Unsupported type <class 'cupy.lib._polynomial.poly1d'> cupy/_core/_kernel.pyx:110: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_0_{deg=0, rcond=None, shape1=(3,), shape2=(3,), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7b324c0> parameter: {'deg': 0, 'rcond': None, 'shape1': (3,), 'shape2': (3,), 'weighted': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose( atol=1e-9, accept_error=TypeError, contiguous_check=False) def test_polyfit_default(self, xp, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:501: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_1_{deg=0, rcond=None, shape1=(3,), shape2=(3,), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7afb3d0> parameter: {'deg': 0, 'rcond': None, 'shape1': (3,), 'shape2': (3,), 'weighted': False}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose( atol=1e-9, accept_error=TypeError, contiguous_check=False) def test_polyfit_default(self, xp, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:501: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_2_{deg=0, rcond=None, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7b83910> parameter: {'deg': 0, 'rcond': None, 'shape1': (3,), 'shape2': (3, 2), 'weighted': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose( atol=1e-9, accept_error=TypeError, contiguous_check=False) def test_polyfit_default(self, xp, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:501: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_3_{deg=0, rcond=None, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7a3e1f0> parameter: {'deg': 0, 'rcond': None, 'shape1': (3,), 'shape2': (3, 2), 'weighted': False}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose( atol=1e-9, accept_error=TypeError, contiguous_check=False) def test_polyfit_default(self, xp, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:501: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_4_{deg=0, rcond=0.5, shape1=(3,), shape2=(3,), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd76d3340> parameter: {'deg': 0, 'rcond': 0.5, 'shape1': (3,), 'shape2': (3,), 'weighted': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose( atol=1e-9, accept_error=TypeError, contiguous_check=False) def test_polyfit_default(self, xp, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:501: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_5_{deg=0, rcond=0.5, shape1=(3,), shape2=(3,), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd76c3d30> parameter: {'deg': 0, 'rcond': 0.5, 'shape1': (3,), 'shape2': (3,), 'weighted': False}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose( atol=1e-9, accept_error=TypeError, contiguous_check=False) def test_polyfit_default(self, xp, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:501: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_6_{deg=0, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7708760> parameter: {'deg': 0, 'rcond': 0.5, 'shape1': (3,), 'shape2': (3, 2), 'weighted': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose( atol=1e-9, accept_error=TypeError, contiguous_check=False) def test_polyfit_default(self, xp, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:501: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_7_{deg=0, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7a69310> parameter: {'deg': 0, 'rcond': 0.5, 'shape1': (3,), 'shape2': (3, 2), 'weighted': False}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose( atol=1e-9, accept_error=TypeError, contiguous_check=False) def test_polyfit_default(self, xp, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:501: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_8_{deg=0, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7afbd00> parameter: {'deg': 0, 'rcond': 1e-15, 'shape1': (3,), 'shape2': (3,), 'weighted': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose( atol=1e-9, accept_error=TypeError, contiguous_check=False) def test_polyfit_default(self, xp, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:501: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_9_{deg=0, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7a954c0> parameter: {'deg': 0, 'rcond': 1e-15, 'shape1': (3,), 'shape2': (3,), 'weighted': False}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose( atol=1e-9, accept_error=TypeError, contiguous_check=False) def test_polyfit_default(self, xp, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:501: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_10_{deg=0, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7a2a8b0> parameter: {'deg': 0, 'rcond': 1e-15, 'shape1': (3,), 'shape2': (3, 2), 'weighted': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose( atol=1e-9, accept_error=TypeError, contiguous_check=False) def test_polyfit_default(self, xp, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:501: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_11_{deg=0, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7a3e4f0> parameter: {'deg': 0, 'rcond': 1e-15, 'shape1': (3,), 'shape2': (3, 2), 'weighted': False}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose( atol=1e-9, accept_error=TypeError, contiguous_check=False) def test_polyfit_default(self, xp, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:501: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_0_{deg=0, rcond=None, shape1=(3,), shape2=(3,), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f24db5337f0> parameter: {'deg': 0, 'rcond': None, 'shape1': (3,), 'shape2': (3,), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_float16=True) def test_polyfit_full(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:510: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_1_{deg=0, rcond=None, shape1=(3,), shape2=(3,), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7a90190> parameter: {'deg': 0, 'rcond': None, 'shape1': (3,), 'shape2': (3,), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_float16=True) def test_polyfit_full(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:510: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_2_{deg=0, rcond=None, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7aa7eb0> parameter: {'deg': 0, 'rcond': None, 'shape1': (3,), 'shape2': (3, 2), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_float16=True) def test_polyfit_full(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:510: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_3_{deg=0, rcond=None, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7a593a0> parameter: {'deg': 0, 'rcond': None, 'shape1': (3,), 'shape2': (3, 2), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_float16=True) def test_polyfit_full(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:510: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_4_{deg=0, rcond=0.5, shape1=(3,), shape2=(3,), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7708ac0> parameter: {'deg': 0, 'rcond': 0.5, 'shape1': (3,), 'shape2': (3,), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_float16=True) def test_polyfit_full(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:510: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_5_{deg=0, rcond=0.5, shape1=(3,), shape2=(3,), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd771e2e0> parameter: {'deg': 0, 'rcond': 0.5, 'shape1': (3,), 'shape2': (3,), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_float16=True) def test_polyfit_full(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:510: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_6_{deg=0, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd75a66d0> parameter: {'deg': 0, 'rcond': 0.5, 'shape1': (3,), 'shape2': (3, 2), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_float16=True) def test_polyfit_full(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:510: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_7_{deg=0, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7a6e4f0> parameter: {'deg': 0, 'rcond': 0.5, 'shape1': (3,), 'shape2': (3, 2), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_float16=True) def test_polyfit_full(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:510: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_8_{deg=0, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd76d1850> parameter: {'deg': 0, 'rcond': 1e-15, 'shape1': (3,), 'shape2': (3,), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_float16=True) def test_polyfit_full(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:510: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_9_{deg=0, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7a953a0> parameter: {'deg': 0, 'rcond': 1e-15, 'shape1': (3,), 'shape2': (3,), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_float16=True) def test_polyfit_full(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:510: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_10_{deg=0, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7a8a0a0> parameter: {'deg': 0, 'rcond': 1e-15, 'shape1': (3,), 'shape2': (3, 2), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_float16=True) def test_polyfit_full(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:510: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_11_{deg=0, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitParametersCombinations object at 0x7f1fd7aff370> parameter: {'deg': 0, 'rcond': 1e-15, 'shape1': (3,), 'shape2': (3, 2), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_float16=True) def test_polyfit_full(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:510: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_0_{cov='unscaled', deg=0, rcond=None, shape=(3,), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f1fd7b12880> parameter: {'cov': 'unscaled', 'deg': 0, 'rcond': None, 'shape': (3,), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_1_{cov='unscaled', deg=0, rcond=None, shape=(3,), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f1fd7a900a0> parameter: {'cov': 'unscaled', 'deg': 0, 'rcond': None, 'shape': (3,), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_2_{cov='unscaled', deg=0, rcond=None, shape=(3, 2), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f1fd7ab9790> parameter: {'cov': 'unscaled', 'deg': 0, 'rcond': None, 'shape': (3, 2), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_3_{cov='unscaled', deg=0, rcond=None, shape=(3, 2), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f1fc7ff7370> parameter: {'cov': 'unscaled', 'deg': 0, 'rcond': None, 'shape': (3, 2), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_4_{cov='unscaled', deg=0, rcond=1e-15, shape=(3,), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f1fd7aa5640> parameter: {'cov': 'unscaled', 'deg': 0, 'rcond': 1e-15, 'shape': (3,), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_5_{cov='unscaled', deg=0, rcond=1e-15, shape=(3,), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f1fc7eb18b0> parameter: {'cov': 'unscaled', 'deg': 0, 'rcond': 1e-15, 'shape': (3,), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_6_{cov='unscaled', deg=0, rcond=1e-15, shape=(3, 2), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f1fc7ff9460> parameter: {'cov': 'unscaled', 'deg': 0, 'rcond': 1e-15, 'shape': (3, 2), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_7_{cov='unscaled', deg=0, rcond=1e-15, shape=(3, 2), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f1fd7700b80> parameter: {'cov': 'unscaled', 'deg': 0, 'rcond': 1e-15, 'shape': (3, 2), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_16_{cov=True, deg=0, rcond=None, shape=(3,), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f1fc7ff2c40> parameter: {'cov': True, 'deg': 0, 'rcond': None, 'shape': (3,), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_17_{cov=True, deg=0, rcond=None, shape=(3,), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f1fc7eb7310> parameter: {'cov': True, 'deg': 0, 'rcond': None, 'shape': (3,), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_18_{cov=True, deg=0, rcond=None, shape=(3, 2), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f27ae276d90> parameter: {'cov': True, 'deg': 0, 'rcond': None, 'shape': (3, 2), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_19_{cov=True, deg=0, rcond=None, shape=(3, 2), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f1fd76c7310> parameter: {'cov': True, 'deg': 0, 'rcond': None, 'shape': (3, 2), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_20_{cov=True, deg=0, rcond=1e-15, shape=(3,), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f24dd43b040> parameter: {'cov': True, 'deg': 0, 'rcond': 1e-15, 'shape': (3,), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_21_{cov=True, deg=0, rcond=1e-15, shape=(3,), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f27a5898fd0> parameter: {'cov': True, 'deg': 0, 'rcond': 1e-15, 'shape': (3,), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_22_{cov=True, deg=0, rcond=1e-15, shape=(3, 2), weighted=True}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f2398189d60> parameter: {'cov': True, 'deg': 0, 'rcond': 1e-15, 'shape': (3, 2), 'weighted': True}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_23_{cov=True, deg=0, rcond=1e-15, shape=(3, 2), weighted=False}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestPolyfitCovMode object at 0x7f1fe88fbac0> parameter: {'cov': True, 'deg': 0, 'rcond': 1e-15, 'shape': (3, 2), 'weighted': False}> dtype = <class 'numpy.float64'> @testing.for_float_dtypes(no_float16=True) def test_polyfit_cov(self, dtype): if runtime.is_hip and self.deg == 0: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/lib_tests/test_polynomial.py:542: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsReal::test_roots_array[_param_0_{input=[2, -1, -2]}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestRootsReal object at 0x7f1fc7ec3df0> parameter: {'input': [2, -1, -2]}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_signed_dtypes() @testing.numpy_cupy_allclose(rtol=1e-6) def test_roots_array(self, xp, dtype): a = xp.array(self.input, dtype) > out = xp.roots(a) tests/cupy_tests/lib_tests/test_polynomial.py:788: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/lib/_routines_poly.py:327: in roots out = cupy.linalg.eigvalsh(cmatrix) cupy/linalg/_eigenvalue.py:148: in eigvalsh return _syevd(a, UPLO, False)[0] cupy/linalg/_eigenvalue.py:53: in _syevd work_size = buffer_size( cupy_backends/cuda/libs/cusolver.pyx:3087: in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize cpdef int dsyevd_bufferSize(intptr_t handle, int jobz, int uplo, int n, cupy_backends/cuda/libs/cusolver.pyx:3096: in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 788, in test_roots_array E out = xp.roots(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/lib/_routines_poly.py", line 327, in roots E out = cupy.linalg.eigvalsh(cmatrix) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/linalg/_eigenvalue.py", line 148, in eigvalsh E return _syevd(a, UPLO, False)[0] E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/linalg/_eigenvalue.py", line 53, in _syevd E work_size = buffer_size( E File "cupy_backends/cuda/libs/cusolver.pyx", line 3087, in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize E cpdef int dsyevd_bufferSize(intptr_t handle, int jobz, int uplo, int n, E File "cupy_backends/cuda/libs/cusolver.pyx", line 3096, in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.int8'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsReal::test_roots_array[_param_1_{input=[-4, 10, 4]}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestRootsReal object at 0x7f1fc7688430> parameter: {'input': [-4, 10, 4]}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_signed_dtypes() @testing.numpy_cupy_allclose(rtol=1e-6) def test_roots_array(self, xp, dtype): a = xp.array(self.input, dtype) > out = xp.roots(a) tests/cupy_tests/lib_tests/test_polynomial.py:788: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/lib/_routines_poly.py:327: in roots out = cupy.linalg.eigvalsh(cmatrix) cupy/linalg/_eigenvalue.py:148: in eigvalsh return _syevd(a, UPLO, False)[0] cupy/linalg/_eigenvalue.py:53: in _syevd work_size = buffer_size( cupy_backends/cuda/libs/cusolver.pyx:3087: in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize cpdef int dsyevd_bufferSize(intptr_t handle, int jobz, int uplo, int n, cupy_backends/cuda/libs/cusolver.pyx:3096: in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 788, in test_roots_array E out = xp.roots(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/lib/_routines_poly.py", line 327, in roots E out = cupy.linalg.eigvalsh(cmatrix) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/linalg/_eigenvalue.py", line 148, in eigvalsh E return _syevd(a, UPLO, False)[0] E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/linalg/_eigenvalue.py", line 53, in _syevd E work_size = buffer_size( E File "cupy_backends/cuda/libs/cusolver.pyx", line 3087, in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize E cpdef int dsyevd_bufferSize(intptr_t handle, int jobz, int uplo, int n, E File "cupy_backends/cuda/libs/cusolver.pyx", line 3096, in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.int8'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsReal::test_roots_poly1d[_param_0_{input=[2, -1, -2]}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestRootsReal object at 0x7f1fc7676310> parameter: {'input': [2, -1, -2]}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_signed_dtypes() @testing.numpy_cupy_allclose(rtol=1e-6) def test_roots_poly1d(self, xp, dtype): a = xp.array(self.input, dtype) > out = xp.roots(xp.poly1d(a)) tests/cupy_tests/lib_tests/test_polynomial.py:795: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/lib/_routines_poly.py:327: in roots out = cupy.linalg.eigvalsh(cmatrix) cupy/linalg/_eigenvalue.py:148: in eigvalsh return _syevd(a, UPLO, False)[0] cupy/linalg/_eigenvalue.py:53: in _syevd work_size = buffer_size( cupy_backends/cuda/libs/cusolver.pyx:3087: in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize cpdef int dsyevd_bufferSize(intptr_t handle, int jobz, int uplo, int n, cupy_backends/cuda/libs/cusolver.pyx:3096: in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 795, in test_roots_poly1d E out = xp.roots(xp.poly1d(a)) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/lib/_routines_poly.py", line 327, in roots E out = cupy.linalg.eigvalsh(cmatrix) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/linalg/_eigenvalue.py", line 148, in eigvalsh E return _syevd(a, UPLO, False)[0] E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/linalg/_eigenvalue.py", line 53, in _syevd E work_size = buffer_size( E File "cupy_backends/cuda/libs/cusolver.pyx", line 3087, in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize E cpdef int dsyevd_bufferSize(intptr_t handle, int jobz, int uplo, int n, E File "cupy_backends/cuda/libs/cusolver.pyx", line 3096, in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.int8'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsReal::test_roots_poly1d[_param_1_{input=[-4, 10, 4]}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestRootsReal object at 0x7f1fc7688bb0> parameter: {'input': [-4, 10, 4]}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_signed_dtypes() @testing.numpy_cupy_allclose(rtol=1e-6) def test_roots_poly1d(self, xp, dtype): a = xp.array(self.input, dtype) > out = xp.roots(xp.poly1d(a)) tests/cupy_tests/lib_tests/test_polynomial.py:795: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/lib/_routines_poly.py:327: in roots out = cupy.linalg.eigvalsh(cmatrix) cupy/linalg/_eigenvalue.py:148: in eigvalsh return _syevd(a, UPLO, False)[0] cupy/linalg/_eigenvalue.py:53: in _syevd work_size = buffer_size( cupy_backends/cuda/libs/cusolver.pyx:3087: in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize cpdef int dsyevd_bufferSize(intptr_t handle, int jobz, int uplo, int n, cupy_backends/cuda/libs/cusolver.pyx:3096: in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py", line 795, in test_roots_poly1d E out = xp.roots(xp.poly1d(a)) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/lib/_routines_poly.py", line 327, in roots E out = cupy.linalg.eigvalsh(cmatrix) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/linalg/_eigenvalue.py", line 148, in eigvalsh E return _syevd(a, UPLO, False)[0] E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/linalg/_eigenvalue.py", line 53, in _syevd E work_size = buffer_size( E File "cupy_backends/cuda/libs/cusolver.pyx", line 3087, in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize E cpdef int dsyevd_bufferSize(intptr_t handle, int jobz, int uplo, int n, E File "cupy_backends/cuda/libs/cusolver.pyx", line 3096, in cupy_backends.cuda.libs.cusolver.dsyevd_bufferSize E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.int8'> | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsComplex::test_roots_array[_param_0_{input=[3j, 1.5j, (-0-3j)]}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestRootsComplex object at 0x7f1fc7676cd0> parameter: {'input': [3j, 1.5j, (-0-3j)]}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.complex64'> @testing.for_complex_dtypes() @testing.numpy_cupy_allclose(rtol=1e-6) def test_roots_array(self, xp, dtype): if runtime.is_hip and self.input == [3j, 1.5j, -3j]: > pytest.xfail('rocBLAS not implemented') E _pytest.outcomes.XFailed: rocBLAS not implemented tests/cupy_tests/lib_tests/test_polynomial.py:809: XFailed | |||
| XFailed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsComplex::test_roots_poly1d[_param_0_{input=[3j, 1.5j, (-0-3j)]}] | 0.00 | |
|
self = <<cupy_tests.lib_tests.test_polynomial.TestRootsComplex object at 0x7f1fd7acf1c0> parameter: {'input': [3j, 1.5j, (-0-3j)]}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.complex64'> @testing.for_complex_dtypes() @testing.numpy_cupy_allclose(rtol=1e-6) def test_roots_poly1d(self, xp, dtype): if runtime.is_hip and self.input == [3j, 1.5j, -3j]: > pytest.xfail('rocBLAS not implemented') E _pytest.outcomes.XFailed: rocBLAS not implemented tests/cupy_tests/lib_tests/test_polynomial.py:818: XFailed | |||
| XFailed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_2_{shapes=[(1,), (1,)]}::test_broadcast_arrays | 0.00 | |
|
self = <<cupy_tests.manipulation_tests.test_dims.TestBroadcast_param_2_{shapes=[(1,), (1,)]} testMethod=test_broadcast_arrays> parameter: {'shapes': [(1,), (1,)]}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_array_equal() def test_broadcast_arrays(self, xp, dtype): > self._hip_skip_invalid_broadcast() tests/cupy_tests/manipulation_tests/test_dims.py:313: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupy_tests.manipulation_tests.test_dims.TestBroadcast_param_2_{shapes=[(1,), (1,)]} testMethod=test_broadcast_arrays> parameter: {'shapes': [(1,), (1,)]}> def _hip_skip_invalid_broadcast(self): invalid_shapes = [ [(1,), (1,)], [(2,), (2,)], ] if runtime.is_hip and self.shapes in invalid_shapes: > pytest.xfail('HIP/ROCm may have a bug') E _pytest.outcomes.XFailed: HIP/ROCm may have a bug tests/cupy_tests/manipulation_tests/test_dims.py:308: XFailed | |||
| XFailed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_3_{shapes=[(2,), (2,)]}::test_broadcast_arrays | 0.00 | |
|
self = <<cupy_tests.manipulation_tests.test_dims.TestBroadcast_param_3_{shapes=[(2,), (2,)]} testMethod=test_broadcast_arrays> parameter: {'shapes': [(2,), (2,)]}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_array_equal() def test_broadcast_arrays(self, xp, dtype): > self._hip_skip_invalid_broadcast() tests/cupy_tests/manipulation_tests/test_dims.py:313: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupy_tests.manipulation_tests.test_dims.TestBroadcast_param_3_{shapes=[(2,), (2,)]} testMethod=test_broadcast_arrays> parameter: {'shapes': [(2,), (2,)]}> def _hip_skip_invalid_broadcast(self): invalid_shapes = [ [(1,), (1,)], [(2,), (2,)], ] if runtime.is_hip and self.shapes in invalid_shapes: > pytest.xfail('HIP/ROCm may have a bug') E _pytest.outcomes.XFailed: HIP/ROCm may have a bug tests/cupy_tests/manipulation_tests/test_dims.py:308: XFailed | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_out_xfail1[int16-int32-int32-no] | 0.00 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fe10790> in0_type = <class 'numpy.int16'>, in1_type = <class 'numpy.int32'> out_type = <class 'numpy.int32'>, casting = 'no' @pytest.mark.xfail() @pytest.mark.parametrize('casting', [ 'no', 'equiv', ]) @pytest.mark.parametrize(('in0_type', 'in1_type', 'out_type'), [ (numpy.int16, numpy.int32, numpy.int32), ]) def test_casting_out_xfail1(self, in0_type, in1_type, out_type, casting): > self.check_casting_out(in0_type, in1_type, out_type, casting) tests/cupy_tests/math_tests/test_arithmetic.py:391: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, cupy/testing/_helper.py:174: in _check_cupy_numpy_error _fail_test_with_unexpected_errors( cupy/testing/_helper.py:134: in _fail_test_with_unexpected_errors raise AssertionError(msg).with_traceback(tb) cupy/testing/_helper.py:47: in _call_func result = impl(*args, **kw) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fe10790> in0_type = <class 'numpy.int16'>, in1_type = <class 'numpy.int32'> out_type = <class 'numpy.int32'>, casting = 'no' xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @testing.numpy_cupy_allclose(accept_error=TypeError) def check_casting_out(self, in0_type, in1_type, out_type, casting, xp): a = testing.shaped_arange((2, 3), xp, in0_type) b = testing.shaped_arange((2, 3), xp, in1_type) c = xp.zeros((2, 3), out_type) if casting != 'unsafe': # may raise TypeError > return xp.add(a, b, out=c, casting=casting) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py", line 333, in check_casting_out E return xp.add(a, b, out=c, casting=casting) E numpy.core._exceptions._UFuncInputCastingError: Cannot cast ufunc 'add' input 0 from dtype('int16') to dtype('int32') with casting rule 'no' tests/cupy_tests/math_tests/test_arithmetic.py:333: AssertionError | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_out_xfail1[int16-int32-int32-equiv] | 0.00 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fe27250> in0_type = <class 'numpy.int16'>, in1_type = <class 'numpy.int32'> out_type = <class 'numpy.int32'>, casting = 'equiv' @pytest.mark.xfail() @pytest.mark.parametrize('casting', [ 'no', 'equiv', ]) @pytest.mark.parametrize(('in0_type', 'in1_type', 'out_type'), [ (numpy.int16, numpy.int32, numpy.int32), ]) def test_casting_out_xfail1(self, in0_type, in1_type, out_type, casting): > self.check_casting_out(in0_type, in1_type, out_type, casting) tests/cupy_tests/math_tests/test_arithmetic.py:391: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, cupy/testing/_helper.py:174: in _check_cupy_numpy_error _fail_test_with_unexpected_errors( cupy/testing/_helper.py:134: in _fail_test_with_unexpected_errors raise AssertionError(msg).with_traceback(tb) cupy/testing/_helper.py:47: in _call_func result = impl(*args, **kw) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fe27250> in0_type = <class 'numpy.int16'>, in1_type = <class 'numpy.int32'> out_type = <class 'numpy.int32'>, casting = 'equiv' xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @testing.numpy_cupy_allclose(accept_error=TypeError) def check_casting_out(self, in0_type, in1_type, out_type, casting, xp): a = testing.shaped_arange((2, 3), xp, in0_type) b = testing.shaped_arange((2, 3), xp, in1_type) c = xp.zeros((2, 3), out_type) if casting != 'unsafe': # may raise TypeError > return xp.add(a, b, out=c, casting=casting) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py", line 333, in check_casting_out E return xp.add(a, b, out=c, casting=casting) E numpy.core._exceptions._UFuncInputCastingError: Cannot cast ufunc 'add' input 0 from dtype('int16') to dtype('int32') with casting rule 'equiv' tests/cupy_tests/math_tests/test_arithmetic.py:333: AssertionError | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype_xfail1[int16-int32-int32-no] | 0.00 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fd12b20> in0_type = <class 'numpy.int16'>, in1_type = <class 'numpy.int32'> dtype = <class 'numpy.int32'>, casting = 'no' @pytest.mark.xfail() @pytest.mark.parametrize('casting', [ 'no', 'equiv', ]) @pytest.mark.parametrize(('in0_type', 'in1_type', 'dtype'), [ (numpy.int16, numpy.int32, numpy.int32), ]) def test_casting_dtype_xfail1(self, in0_type, in1_type, dtype, casting): > self.check_casting_dtype(in0_type, in1_type, dtype, casting) tests/cupy_tests/math_tests/test_arithmetic.py:415: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, cupy/testing/_helper.py:174: in _check_cupy_numpy_error _fail_test_with_unexpected_errors( cupy/testing/_helper.py:134: in _fail_test_with_unexpected_errors raise AssertionError(msg).with_traceback(tb) cupy/testing/_helper.py:47: in _call_func result = impl(*args, **kw) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fd12b20> in0_type = <class 'numpy.int16'>, in1_type = <class 'numpy.int32'> dtype = <class 'numpy.int32'>, casting = 'no' xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @testing.numpy_cupy_allclose(accept_error=TypeError) def check_casting_dtype(self, in0_type, in1_type, dtype, casting, xp): a = testing.shaped_arange((2, 3), xp, in0_type) b = testing.shaped_arange((2, 3), xp, in1_type) if casting != 'unsafe': # may raise TypeError > return xp.add(a, b, dtype=dtype, casting=casting) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py", line 348, in check_casting_dtype E return xp.add(a, b, dtype=dtype, casting=casting) E numpy.core._exceptions._UFuncInputCastingError: Cannot cast ufunc 'add' input 0 from dtype('int16') to dtype('int32') with casting rule 'no' tests/cupy_tests/math_tests/test_arithmetic.py:348: AssertionError | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype_xfail1[int16-int32-int32-equiv] | 0.00 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fcac430> in0_type = <class 'numpy.int16'>, in1_type = <class 'numpy.int32'> dtype = <class 'numpy.int32'>, casting = 'equiv' @pytest.mark.xfail() @pytest.mark.parametrize('casting', [ 'no', 'equiv', ]) @pytest.mark.parametrize(('in0_type', 'in1_type', 'dtype'), [ (numpy.int16, numpy.int32, numpy.int32), ]) def test_casting_dtype_xfail1(self, in0_type, in1_type, dtype, casting): > self.check_casting_dtype(in0_type, in1_type, dtype, casting) tests/cupy_tests/math_tests/test_arithmetic.py:415: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, cupy/testing/_helper.py:174: in _check_cupy_numpy_error _fail_test_with_unexpected_errors( cupy/testing/_helper.py:134: in _fail_test_with_unexpected_errors raise AssertionError(msg).with_traceback(tb) cupy/testing/_helper.py:47: in _call_func result = impl(*args, **kw) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fcac430> in0_type = <class 'numpy.int16'>, in1_type = <class 'numpy.int32'> dtype = <class 'numpy.int32'>, casting = 'equiv' xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @testing.numpy_cupy_allclose(accept_error=TypeError) def check_casting_dtype(self, in0_type, in1_type, dtype, casting, xp): a = testing.shaped_arange((2, 3), xp, in0_type) b = testing.shaped_arange((2, 3), xp, in1_type) if casting != 'unsafe': # may raise TypeError > return xp.add(a, b, dtype=dtype, casting=casting) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py", line 348, in check_casting_dtype E return xp.add(a, b, dtype=dtype, casting=casting) E numpy.core._exceptions._UFuncInputCastingError: Cannot cast ufunc 'add' input 0 from dtype('int16') to dtype('int32') with casting rule 'equiv' tests/cupy_tests/math_tests/test_arithmetic.py:348: AssertionError | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype_xfail2[int32-int32-bool_-no] | 0.66 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fe27160> in0_type = <class 'numpy.int32'>, in1_type = <class 'numpy.int32'> dtype = <class 'numpy.bool_'>, casting = 'no' @pytest.mark.xfail() @pytest.mark.parametrize('casting', [ 'no', 'equiv', 'safe', 'same_kind', ]) @pytest.mark.parametrize(('in0_type', 'in1_type', 'dtype'), [ (numpy.int32, numpy.int32, numpy.bool_), (numpy.float64, numpy.float64, numpy.int32), ]) def test_casting_dtype_xfail2(self, in0_type, in1_type, dtype, casting): > self.check_casting_dtype(in0_type, in1_type, dtype, casting) tests/cupy_tests/math_tests/test_arithmetic.py:429: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, cupy/testing/_helper.py:174: in _check_cupy_numpy_error _fail_test_with_unexpected_errors( cupy/testing/_helper.py:134: in _fail_test_with_unexpected_errors raise AssertionError(msg).with_traceback(tb) cupy/testing/_helper.py:47: in _call_func result = impl(*args, **kw) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fe27160> in0_type = <class 'numpy.int32'>, in1_type = <class 'numpy.int32'> dtype = <class 'numpy.bool_'>, casting = 'no' xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @testing.numpy_cupy_allclose(accept_error=TypeError) def check_casting_dtype(self, in0_type, in1_type, dtype, casting, xp): a = testing.shaped_arange((2, 3), xp, in0_type) b = testing.shaped_arange((2, 3), xp, in1_type) if casting != 'unsafe': # may raise TypeError > return xp.add(a, b, dtype=dtype, casting=casting) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py", line 348, in check_casting_dtype E return xp.add(a, b, dtype=dtype, casting=casting) E numpy.core._exceptions._UFuncInputCastingError: Cannot cast ufunc 'add' input 0 from dtype('int32') to dtype('bool') with casting rule 'no' tests/cupy_tests/math_tests/test_arithmetic.py:348: AssertionError | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype_xfail2[int32-int32-bool_-equiv] | 0.00 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fc23580> in0_type = <class 'numpy.int32'>, in1_type = <class 'numpy.int32'> dtype = <class 'numpy.bool_'>, casting = 'equiv' @pytest.mark.xfail() @pytest.mark.parametrize('casting', [ 'no', 'equiv', 'safe', 'same_kind', ]) @pytest.mark.parametrize(('in0_type', 'in1_type', 'dtype'), [ (numpy.int32, numpy.int32, numpy.bool_), (numpy.float64, numpy.float64, numpy.int32), ]) def test_casting_dtype_xfail2(self, in0_type, in1_type, dtype, casting): > self.check_casting_dtype(in0_type, in1_type, dtype, casting) tests/cupy_tests/math_tests/test_arithmetic.py:429: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, cupy/testing/_helper.py:174: in _check_cupy_numpy_error _fail_test_with_unexpected_errors( cupy/testing/_helper.py:134: in _fail_test_with_unexpected_errors raise AssertionError(msg).with_traceback(tb) cupy/testing/_helper.py:47: in _call_func result = impl(*args, **kw) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fc23580> in0_type = <class 'numpy.int32'>, in1_type = <class 'numpy.int32'> dtype = <class 'numpy.bool_'>, casting = 'equiv' xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @testing.numpy_cupy_allclose(accept_error=TypeError) def check_casting_dtype(self, in0_type, in1_type, dtype, casting, xp): a = testing.shaped_arange((2, 3), xp, in0_type) b = testing.shaped_arange((2, 3), xp, in1_type) if casting != 'unsafe': # may raise TypeError > return xp.add(a, b, dtype=dtype, casting=casting) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py", line 348, in check_casting_dtype E return xp.add(a, b, dtype=dtype, casting=casting) E numpy.core._exceptions._UFuncInputCastingError: Cannot cast ufunc 'add' input 0 from dtype('int32') to dtype('bool') with casting rule 'equiv' tests/cupy_tests/math_tests/test_arithmetic.py:348: AssertionError | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype_xfail2[int32-int32-bool_-safe] | 0.00 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fe109a0> in0_type = <class 'numpy.int32'>, in1_type = <class 'numpy.int32'> dtype = <class 'numpy.bool_'>, casting = 'safe' @pytest.mark.xfail() @pytest.mark.parametrize('casting', [ 'no', 'equiv', 'safe', 'same_kind', ]) @pytest.mark.parametrize(('in0_type', 'in1_type', 'dtype'), [ (numpy.int32, numpy.int32, numpy.bool_), (numpy.float64, numpy.float64, numpy.int32), ]) def test_casting_dtype_xfail2(self, in0_type, in1_type, dtype, casting): > self.check_casting_dtype(in0_type, in1_type, dtype, casting) tests/cupy_tests/math_tests/test_arithmetic.py:429: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, cupy/testing/_helper.py:174: in _check_cupy_numpy_error _fail_test_with_unexpected_errors( cupy/testing/_helper.py:134: in _fail_test_with_unexpected_errors raise AssertionError(msg).with_traceback(tb) cupy/testing/_helper.py:47: in _call_func result = impl(*args, **kw) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fe109a0> in0_type = <class 'numpy.int32'>, in1_type = <class 'numpy.int32'> dtype = <class 'numpy.bool_'>, casting = 'safe' xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @testing.numpy_cupy_allclose(accept_error=TypeError) def check_casting_dtype(self, in0_type, in1_type, dtype, casting, xp): a = testing.shaped_arange((2, 3), xp, in0_type) b = testing.shaped_arange((2, 3), xp, in1_type) if casting != 'unsafe': # may raise TypeError > return xp.add(a, b, dtype=dtype, casting=casting) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py", line 348, in check_casting_dtype E return xp.add(a, b, dtype=dtype, casting=casting) E numpy.core._exceptions._UFuncInputCastingError: Cannot cast ufunc 'add' input 0 from dtype('int32') to dtype('bool') with casting rule 'safe' tests/cupy_tests/math_tests/test_arithmetic.py:348: AssertionError | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype_xfail2[int32-int32-bool_-same_kind] | 0.00 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fd45160> in0_type = <class 'numpy.int32'>, in1_type = <class 'numpy.int32'> dtype = <class 'numpy.bool_'>, casting = 'same_kind' @pytest.mark.xfail() @pytest.mark.parametrize('casting', [ 'no', 'equiv', 'safe', 'same_kind', ]) @pytest.mark.parametrize(('in0_type', 'in1_type', 'dtype'), [ (numpy.int32, numpy.int32, numpy.bool_), (numpy.float64, numpy.float64, numpy.int32), ]) def test_casting_dtype_xfail2(self, in0_type, in1_type, dtype, casting): > self.check_casting_dtype(in0_type, in1_type, dtype, casting) tests/cupy_tests/math_tests/test_arithmetic.py:429: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, cupy/testing/_helper.py:174: in _check_cupy_numpy_error _fail_test_with_unexpected_errors( cupy/testing/_helper.py:134: in _fail_test_with_unexpected_errors raise AssertionError(msg).with_traceback(tb) cupy/testing/_helper.py:47: in _call_func result = impl(*args, **kw) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fd45160> in0_type = <class 'numpy.int32'>, in1_type = <class 'numpy.int32'> dtype = <class 'numpy.bool_'>, casting = 'same_kind' xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @testing.numpy_cupy_allclose(accept_error=TypeError) def check_casting_dtype(self, in0_type, in1_type, dtype, casting, xp): a = testing.shaped_arange((2, 3), xp, in0_type) b = testing.shaped_arange((2, 3), xp, in1_type) if casting != 'unsafe': # may raise TypeError > return xp.add(a, b, dtype=dtype, casting=casting) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py", line 348, in check_casting_dtype E return xp.add(a, b, dtype=dtype, casting=casting) E numpy.core._exceptions._UFuncInputCastingError: Cannot cast ufunc 'add' input 0 from dtype('int32') to dtype('bool') with casting rule 'same_kind' tests/cupy_tests/math_tests/test_arithmetic.py:348: AssertionError | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype_xfail2[float64-float64-int32-no] | 0.67 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fcea520> in0_type = <class 'numpy.float64'>, in1_type = <class 'numpy.float64'> dtype = <class 'numpy.int32'>, casting = 'no' @pytest.mark.xfail() @pytest.mark.parametrize('casting', [ 'no', 'equiv', 'safe', 'same_kind', ]) @pytest.mark.parametrize(('in0_type', 'in1_type', 'dtype'), [ (numpy.int32, numpy.int32, numpy.bool_), (numpy.float64, numpy.float64, numpy.int32), ]) def test_casting_dtype_xfail2(self, in0_type, in1_type, dtype, casting): > self.check_casting_dtype(in0_type, in1_type, dtype, casting) tests/cupy_tests/math_tests/test_arithmetic.py:429: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, cupy/testing/_helper.py:174: in _check_cupy_numpy_error _fail_test_with_unexpected_errors( cupy/testing/_helper.py:134: in _fail_test_with_unexpected_errors raise AssertionError(msg).with_traceback(tb) cupy/testing/_helper.py:47: in _call_func result = impl(*args, **kw) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fcea520> in0_type = <class 'numpy.float64'>, in1_type = <class 'numpy.float64'> dtype = <class 'numpy.int32'>, casting = 'no' xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @testing.numpy_cupy_allclose(accept_error=TypeError) def check_casting_dtype(self, in0_type, in1_type, dtype, casting, xp): a = testing.shaped_arange((2, 3), xp, in0_type) b = testing.shaped_arange((2, 3), xp, in1_type) if casting != 'unsafe': # may raise TypeError > return xp.add(a, b, dtype=dtype, casting=casting) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py", line 348, in check_casting_dtype E return xp.add(a, b, dtype=dtype, casting=casting) E numpy.core._exceptions._UFuncInputCastingError: Cannot cast ufunc 'add' input 0 from dtype('float64') to dtype('int32') with casting rule 'no' tests/cupy_tests/math_tests/test_arithmetic.py:348: AssertionError | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype_xfail2[float64-float64-int32-equiv] | 0.00 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fcde490> in0_type = <class 'numpy.float64'>, in1_type = <class 'numpy.float64'> dtype = <class 'numpy.int32'>, casting = 'equiv' @pytest.mark.xfail() @pytest.mark.parametrize('casting', [ 'no', 'equiv', 'safe', 'same_kind', ]) @pytest.mark.parametrize(('in0_type', 'in1_type', 'dtype'), [ (numpy.int32, numpy.int32, numpy.bool_), (numpy.float64, numpy.float64, numpy.int32), ]) def test_casting_dtype_xfail2(self, in0_type, in1_type, dtype, casting): > self.check_casting_dtype(in0_type, in1_type, dtype, casting) tests/cupy_tests/math_tests/test_arithmetic.py:429: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, cupy/testing/_helper.py:174: in _check_cupy_numpy_error _fail_test_with_unexpected_errors( cupy/testing/_helper.py:134: in _fail_test_with_unexpected_errors raise AssertionError(msg).with_traceback(tb) cupy/testing/_helper.py:47: in _call_func result = impl(*args, **kw) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fcde490> in0_type = <class 'numpy.float64'>, in1_type = <class 'numpy.float64'> dtype = <class 'numpy.int32'>, casting = 'equiv' xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @testing.numpy_cupy_allclose(accept_error=TypeError) def check_casting_dtype(self, in0_type, in1_type, dtype, casting, xp): a = testing.shaped_arange((2, 3), xp, in0_type) b = testing.shaped_arange((2, 3), xp, in1_type) if casting != 'unsafe': # may raise TypeError > return xp.add(a, b, dtype=dtype, casting=casting) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py", line 348, in check_casting_dtype E return xp.add(a, b, dtype=dtype, casting=casting) E numpy.core._exceptions._UFuncInputCastingError: Cannot cast ufunc 'add' input 0 from dtype('float64') to dtype('int32') with casting rule 'equiv' tests/cupy_tests/math_tests/test_arithmetic.py:348: AssertionError | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype_xfail2[float64-float64-int32-safe] | 0.00 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fac4580> in0_type = <class 'numpy.float64'>, in1_type = <class 'numpy.float64'> dtype = <class 'numpy.int32'>, casting = 'safe' @pytest.mark.xfail() @pytest.mark.parametrize('casting', [ 'no', 'equiv', 'safe', 'same_kind', ]) @pytest.mark.parametrize(('in0_type', 'in1_type', 'dtype'), [ (numpy.int32, numpy.int32, numpy.bool_), (numpy.float64, numpy.float64, numpy.int32), ]) def test_casting_dtype_xfail2(self, in0_type, in1_type, dtype, casting): > self.check_casting_dtype(in0_type, in1_type, dtype, casting) tests/cupy_tests/math_tests/test_arithmetic.py:429: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, cupy/testing/_helper.py:174: in _check_cupy_numpy_error _fail_test_with_unexpected_errors( cupy/testing/_helper.py:134: in _fail_test_with_unexpected_errors raise AssertionError(msg).with_traceback(tb) cupy/testing/_helper.py:47: in _call_func result = impl(*args, **kw) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fac4580> in0_type = <class 'numpy.float64'>, in1_type = <class 'numpy.float64'> dtype = <class 'numpy.int32'>, casting = 'safe' xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @testing.numpy_cupy_allclose(accept_error=TypeError) def check_casting_dtype(self, in0_type, in1_type, dtype, casting, xp): a = testing.shaped_arange((2, 3), xp, in0_type) b = testing.shaped_arange((2, 3), xp, in1_type) if casting != 'unsafe': # may raise TypeError > return xp.add(a, b, dtype=dtype, casting=casting) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py", line 348, in check_casting_dtype E return xp.add(a, b, dtype=dtype, casting=casting) E numpy.core._exceptions._UFuncInputCastingError: Cannot cast ufunc 'add' input 0 from dtype('float64') to dtype('int32') with casting rule 'safe' tests/cupy_tests/math_tests/test_arithmetic.py:348: AssertionError | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype_xfail2[float64-float64-int32-same_kind] | 0.00 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fd51490> in0_type = <class 'numpy.float64'>, in1_type = <class 'numpy.float64'> dtype = <class 'numpy.int32'>, casting = 'same_kind' @pytest.mark.xfail() @pytest.mark.parametrize('casting', [ 'no', 'equiv', 'safe', 'same_kind', ]) @pytest.mark.parametrize(('in0_type', 'in1_type', 'dtype'), [ (numpy.int32, numpy.int32, numpy.bool_), (numpy.float64, numpy.float64, numpy.int32), ]) def test_casting_dtype_xfail2(self, in0_type, in1_type, dtype, casting): > self.check_casting_dtype(in0_type, in1_type, dtype, casting) tests/cupy_tests/math_tests/test_arithmetic.py:429: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, cupy/testing/_helper.py:174: in _check_cupy_numpy_error _fail_test_with_unexpected_errors( cupy/testing/_helper.py:134: in _fail_test_with_unexpected_errors raise AssertionError(msg).with_traceback(tb) cupy/testing/_helper.py:47: in _call_func result = impl(*args, **kw) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fd51490> in0_type = <class 'numpy.float64'>, in1_type = <class 'numpy.float64'> dtype = <class 'numpy.int32'>, casting = 'same_kind' xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @testing.numpy_cupy_allclose(accept_error=TypeError) def check_casting_dtype(self, in0_type, in1_type, dtype, casting, xp): a = testing.shaped_arange((2, 3), xp, in0_type) b = testing.shaped_arange((2, 3), xp, in1_type) if casting != 'unsafe': # may raise TypeError > return xp.add(a, b, dtype=dtype, casting=casting) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py", line 348, in check_casting_dtype E return xp.add(a, b, dtype=dtype, casting=casting) E numpy.core._exceptions._UFuncInputCastingError: Cannot cast ufunc 'add' input 0 from dtype('float64') to dtype('int32') with casting rule 'same_kind' tests/cupy_tests/math_tests/test_arithmetic.py:348: AssertionError | |||
| XFailed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype_xfail3[complex64-complex64-float32] | 0.67 | |
|
self = <cupy_tests.math_tests.test_arithmetic.TestUfunc object at 0x7f1f2fc23460> in0_type = <class 'numpy.complex64'>, in1_type = <class 'numpy.complex64'> dtype = <class 'numpy.float32'> @pytest.mark.xfail() @pytest.mark.parametrize(('in0_type', 'in1_type', 'dtype'), [ (numpy.complex64, numpy.complex64, numpy.float32), ]) def test_casting_dtype_xfail3(self, in0_type, in1_type, dtype): casting = 'unsafe' > self.check_casting_dtype(in0_type, in1_type, dtype, casting) tests/cupy_tests/math_tests/test_arithmetic.py:437: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array(0), desired = array(2), rtol = 1e-07, atol = 0, err_msg = '' verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=0 E E Mismatched elements: 1 / 1 (100%) E Max absolute difference: 2 E Max relative difference: 1. E x: array(0) E y: array(2) cupy/testing/_array.py:24: AssertionError | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_0_{dtype=float64, scale_shape=(), shape=(4, 3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fbb7560a0> parameter: {'dtype': <class 'numpy.float64'>, 'scale_shape': (), 'shape': (4, 3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_1_{dtype=float64, scale_shape=(), shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9fb5b50> parameter: {'dtype': <class 'numpy.float64'>, 'scale_shape': (), 'shape': (4, 3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_2_{dtype=float64, scale_shape=(), shape=(3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fbb756bb0> parameter: {'dtype': <class 'numpy.float64'>, 'scale_shape': (), 'shape': (3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_3_{dtype=float64, scale_shape=(), shape=(3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9fb52e0> parameter: {'dtype': <class 'numpy.float64'>, 'scale_shape': (), 'shape': (3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_4_{dtype=float64, scale_shape=(), shape=None, shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fbb75d250> parameter: {'dtype': <class 'numpy.float64'>, 'scale_shape': (), 'shape': None, 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_5_{dtype=float64, scale_shape=(), shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fbb76f640> parameter: {'dtype': <class 'numpy.float64'>, 'scale_shape': (), 'shape': None, 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_6_{dtype=float64, scale_shape=(3, 2), shape=(4, 3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9f013a0> parameter: {'dtype': <class 'numpy.float64'>, 'scale_shape': (3, 2), 'shape': (4, 3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_7_{dtype=float64, scale_shape=(3, 2), shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9fb5130> parameter: {'dtype': <class 'numpy.float64'>, 'scale_shape': (3, 2), 'shape': (4, 3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_8_{dtype=float64, scale_shape=(3, 2), shape=(3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fbb76edf0> parameter: {'dtype': <class 'numpy.float64'>, 'scale_shape': (3, 2), 'shape': (3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_9_{dtype=float64, scale_shape=(3, 2), shape=(3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9fbcd90> parameter: {'dtype': <class 'numpy.float64'>, 'scale_shape': (3, 2), 'shape': (3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_10_{dtype=float64, scale_shape=(3, 2), shape=None, shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9e0b0d0> parameter: {'dtype': <class 'numpy.float64'>, 'scale_shape': (3, 2), 'shape': None, 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_11_{dtype=float64, scale_shape=(3, 2), shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fbb423850> parameter: {'dtype': <class 'numpy.float64'>, 'scale_shape': (3, 2), 'shape': None, 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_12_{dtype=float32, scale_shape=(), shape=(4, 3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9f851f0> parameter: {'dtype': <class 'numpy.float32'>, 'scale_shape': (), 'shape': (4, 3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_13_{dtype=float32, scale_shape=(), shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9f3e220> parameter: {'dtype': <class 'numpy.float32'>, 'scale_shape': (), 'shape': (4, 3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_14_{dtype=float32, scale_shape=(), shape=(3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9f90e80> parameter: {'dtype': <class 'numpy.float32'>, 'scale_shape': (), 'shape': (3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_15_{dtype=float32, scale_shape=(), shape=(3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9e09be0> parameter: {'dtype': <class 'numpy.float32'>, 'scale_shape': (), 'shape': (3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_16_{dtype=float32, scale_shape=(), shape=None, shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9fa4d90> parameter: {'dtype': <class 'numpy.float32'>, 'scale_shape': (), 'shape': None, 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_17_{dtype=float32, scale_shape=(), shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fbb75d700> parameter: {'dtype': <class 'numpy.float32'>, 'scale_shape': (), 'shape': None, 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_18_{dtype=float32, scale_shape=(3, 2), shape=(4, 3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9f57130> parameter: {'dtype': <class 'numpy.float32'>, 'scale_shape': (3, 2), 'shape': (4, 3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_19_{dtype=float32, scale_shape=(3, 2), shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9fc1d00> parameter: {'dtype': <class 'numpy.float32'>, 'scale_shape': (3, 2), 'shape': (4, 3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_20_{dtype=float32, scale_shape=(3, 2), shape=(3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9fc9d90> parameter: {'dtype': <class 'numpy.float32'>, 'scale_shape': (3, 2), 'shape': (3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_21_{dtype=float32, scale_shape=(3, 2), shape=(3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9e0bd30> parameter: {'dtype': <class 'numpy.float32'>, 'scale_shape': (3, 2), 'shape': (3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_22_{dtype=float32, scale_shape=(3, 2), shape=None, shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9f01ee0> parameter: {'dtype': <class 'numpy.float32'>, 'scale_shape': (3, 2), 'shape': None, 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_23_{dtype=float32, scale_shape=(3, 2), shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fbb429790> parameter: {'dtype': <class 'numpy.float32'>, 'scale_shape': (3, 2), 'shape': None, 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_24_{dtype=float16, scale_shape=(), shape=(4, 3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9f92970> parameter: {'dtype': <class 'numpy.float16'>, 'scale_shape': (), 'shape': (4, 3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_25_{dtype=float16, scale_shape=(), shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9ef1490> parameter: {'dtype': <class 'numpy.float16'>, 'scale_shape': (), 'shape': (4, 3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_26_{dtype=float16, scale_shape=(), shape=(3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9fa7cd0> parameter: {'dtype': <class 'numpy.float16'>, 'scale_shape': (), 'shape': (3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_27_{dtype=float16, scale_shape=(), shape=(3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9ed74f0> parameter: {'dtype': <class 'numpy.float16'>, 'scale_shape': (), 'shape': (3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_28_{dtype=float16, scale_shape=(), shape=None, shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9fbccd0> parameter: {'dtype': <class 'numpy.float16'>, 'scale_shape': (), 'shape': None, 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_29_{dtype=float16, scale_shape=(), shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9f061c0> parameter: {'dtype': <class 'numpy.float16'>, 'scale_shape': (), 'shape': None, 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_30_{dtype=float16, scale_shape=(3, 2), shape=(4, 3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fbb76e700> parameter: {'dtype': <class 'numpy.float16'>, 'scale_shape': (3, 2), 'shape': (4, 3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_31_{dtype=float16, scale_shape=(3, 2), shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9ef3220> parameter: {'dtype': <class 'numpy.float16'>, 'scale_shape': (3, 2), 'shape': (4, 3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_32_{dtype=float16, scale_shape=(3, 2), shape=(3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1f2fc8ec40> parameter: {'dtype': <class 'numpy.float16'>, 'scale_shape': (3, 2), 'shape': (3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_33_{dtype=float16, scale_shape=(3, 2), shape=(3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9fc9e50> parameter: {'dtype': <class 'numpy.float16'>, 'scale_shape': (3, 2), 'shape': (3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_34_{dtype=float16, scale_shape=(3, 2), shape=None, shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fbb4292b0> parameter: {'dtype': <class 'numpy.float16'>, 'scale_shape': (3, 2), 'shape': None, 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_generator[_param_35_{dtype=float16, scale_shape=(3, 2), shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsGamma object at 0x7f1fb9ef1550> parameter: {'dtype': <class 'numpy.float16'>, 'scale_shape': (3, 2), 'shape': None, 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, scale_dtype = <class 'numpy.float32'> @cupy.testing.for_dtypes_combination( _float_dtypes, names=['shape_dtype', 'scale_dtype']) @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_gamma_generator(self, shape_dtype, scale_dtype): > self.check_distribution(cupy.random.default_rng().gamma, shape_dtype, scale_dtype) tests/cupy_tests/random_tests/test_distributions.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = None def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ {'shape_dtype': <class 'numpy.float64'>, 'scale_dtype': <class 'numpy.float32'>} | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoisson::test_poisson_generator[_param_0_{lam_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsPoisson object at 0x7f1fb9ee75e0> parameter: {'lam_shape': (), 'shape': (4, 3, 2)}> lam_dtype = <class 'numpy.float64'> @cupy.testing.for_float_dtypes('lam_dtype') @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_poisson_generator(self, lam_dtype): > self.check_distribution(cupy.random.default_rng(0).poisson, lam_dtype) tests/cupy_tests/random_tests/test_distributions.py:555: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ lam_dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoisson::test_poisson_generator[_param_1_{lam_shape=(), shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsPoisson object at 0x7f1f2fc13700> parameter: {'lam_shape': (), 'shape': (3, 2)}> lam_dtype = <class 'numpy.float64'> @cupy.testing.for_float_dtypes('lam_dtype') @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_poisson_generator(self, lam_dtype): > self.check_distribution(cupy.random.default_rng(0).poisson, lam_dtype) tests/cupy_tests/random_tests/test_distributions.py:555: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ lam_dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoisson::test_poisson_generator[_param_2_{lam_shape=(), shape=None}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsPoisson object at 0x7f1fb9f437c0> parameter: {'lam_shape': (), 'shape': None}> lam_dtype = <class 'numpy.float64'> @cupy.testing.for_float_dtypes('lam_dtype') @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_poisson_generator(self, lam_dtype): > self.check_distribution(cupy.random.default_rng(0).poisson, lam_dtype) tests/cupy_tests/random_tests/test_distributions.py:555: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ lam_dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoisson::test_poisson_generator[_param_3_{lam_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsPoisson object at 0x7f1f4a8662b0> parameter: {'lam_shape': (3, 2), 'shape': (4, 3, 2)}> lam_dtype = <class 'numpy.float64'> @cupy.testing.for_float_dtypes('lam_dtype') @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_poisson_generator(self, lam_dtype): > self.check_distribution(cupy.random.default_rng(0).poisson, lam_dtype) tests/cupy_tests/random_tests/test_distributions.py:555: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ lam_dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoisson::test_poisson_generator[_param_4_{lam_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsPoisson object at 0x7f1f4a8773d0> parameter: {'lam_shape': (3, 2), 'shape': (3, 2)}> lam_dtype = <class 'numpy.float64'> @cupy.testing.for_float_dtypes('lam_dtype') @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_poisson_generator(self, lam_dtype): > self.check_distribution(cupy.random.default_rng(0).poisson, lam_dtype) tests/cupy_tests/random_tests/test_distributions.py:555: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ lam_dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoisson::test_poisson_generator[_param_5_{lam_shape=(3, 2), shape=None}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsPoisson object at 0x7f1f4a865a30> parameter: {'lam_shape': (3, 2), 'shape': None}> lam_dtype = <class 'numpy.float64'> @cupy.testing.for_float_dtypes('lam_dtype') @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_poisson_generator(self, lam_dtype): > self.check_distribution(cupy.random.default_rng(0).poisson, lam_dtype) tests/cupy_tests/random_tests/test_distributions.py:555: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ lam_dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoissonInvalid::test_none_lam_generator | 0.00 | |
|
self = <cupy_tests.random_tests.test_distributions.TestDistributionsPoissonInvalid object at 0x7f1f4a99c670> @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_none_lam_generator(self): with pytest.raises(TypeError): > cupy.random.default_rng(0).poisson(None) tests/cupy_tests/random_tests/test_distributions.py:566: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGamma::test_standard_gamma_generator[_param_0_{shape=(4, 3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsStandardGamma object at 0x7f1f4a8777f0> parameter: {'shape': (4, 3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, dtype = <class 'numpy.float64'> @cupy.testing.for_float_dtypes('dtype', no_float16=True) @cupy.testing.for_float_dtypes('shape_dtype') @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_standard_gamma_generator(self, shape_dtype, dtype): shape = numpy.ones(self.shape_shape, dtype=shape_dtype) > self.check_generator_distribution('standard_gamma', {'shape': shape}, dtype) tests/cupy_tests/random_tests/test_distributions.py:673: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ tests/cupy_tests/random_tests/test_distributions.py:31: in check_generator_distribution cp_gen = cupy.random.default_rng(0) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ shape_dtype is <class 'numpy.float64'> dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGamma::test_standard_gamma_generator[_param_1_{shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsStandardGamma object at 0x7f279fa8dca0> parameter: {'shape': (4, 3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, dtype = <class 'numpy.float64'> @cupy.testing.for_float_dtypes('dtype', no_float16=True) @cupy.testing.for_float_dtypes('shape_dtype') @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_standard_gamma_generator(self, shape_dtype, dtype): shape = numpy.ones(self.shape_shape, dtype=shape_dtype) > self.check_generator_distribution('standard_gamma', {'shape': shape}, dtype) tests/cupy_tests/random_tests/test_distributions.py:673: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ tests/cupy_tests/random_tests/test_distributions.py:31: in check_generator_distribution cp_gen = cupy.random.default_rng(0) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ shape_dtype is <class 'numpy.float64'> dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGamma::test_standard_gamma_generator[_param_2_{shape=(3, 2), shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsStandardGamma object at 0x7f1fbb76e160> parameter: {'shape': (3, 2), 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, dtype = <class 'numpy.float64'> @cupy.testing.for_float_dtypes('dtype', no_float16=True) @cupy.testing.for_float_dtypes('shape_dtype') @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_standard_gamma_generator(self, shape_dtype, dtype): shape = numpy.ones(self.shape_shape, dtype=shape_dtype) > self.check_generator_distribution('standard_gamma', {'shape': shape}, dtype) tests/cupy_tests/random_tests/test_distributions.py:673: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ tests/cupy_tests/random_tests/test_distributions.py:31: in check_generator_distribution cp_gen = cupy.random.default_rng(0) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ shape_dtype is <class 'numpy.float64'> dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGamma::test_standard_gamma_generator[_param_3_{shape=(3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsStandardGamma object at 0x7f1f4a4ef310> parameter: {'shape': (3, 2), 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, dtype = <class 'numpy.float64'> @cupy.testing.for_float_dtypes('dtype', no_float16=True) @cupy.testing.for_float_dtypes('shape_dtype') @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_standard_gamma_generator(self, shape_dtype, dtype): shape = numpy.ones(self.shape_shape, dtype=shape_dtype) > self.check_generator_distribution('standard_gamma', {'shape': shape}, dtype) tests/cupy_tests/random_tests/test_distributions.py:673: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ tests/cupy_tests/random_tests/test_distributions.py:31: in check_generator_distribution cp_gen = cupy.random.default_rng(0) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ shape_dtype is <class 'numpy.float64'> dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGamma::test_standard_gamma_generator[_param_4_{shape=None, shape_shape=()}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsStandardGamma object at 0x7f1f4a4c9400> parameter: {'shape': None, 'shape_shape': ()}> shape_dtype = <class 'numpy.float64'>, dtype = <class 'numpy.float64'> @cupy.testing.for_float_dtypes('dtype', no_float16=True) @cupy.testing.for_float_dtypes('shape_dtype') @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_standard_gamma_generator(self, shape_dtype, dtype): shape = numpy.ones(self.shape_shape, dtype=shape_dtype) > self.check_generator_distribution('standard_gamma', {'shape': shape}, dtype) tests/cupy_tests/random_tests/test_distributions.py:673: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ tests/cupy_tests/random_tests/test_distributions.py:31: in check_generator_distribution cp_gen = cupy.random.default_rng(0) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ shape_dtype is <class 'numpy.float64'> dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGamma::test_standard_gamma_generator[_param_5_{shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
self = <<cupy_tests.random_tests.test_distributions.TestDistributionsStandardGamma object at 0x7f1f4a4d4ac0> parameter: {'shape': None, 'shape_shape': (3, 2)}> shape_dtype = <class 'numpy.float64'>, dtype = <class 'numpy.float64'> @cupy.testing.for_float_dtypes('dtype', no_float16=True) @cupy.testing.for_float_dtypes('shape_dtype') @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_standard_gamma_generator(self, shape_dtype, dtype): shape = numpy.ones(self.shape_shape, dtype=shape_dtype) > self.check_generator_distribution('standard_gamma', {'shape': shape}, dtype) tests/cupy_tests/random_tests/test_distributions.py:673: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ tests/cupy_tests/random_tests/test_distributions.py:31: in check_generator_distribution cp_gen = cupy.random.default_rng(0) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError ------------------------------Captured stdout call------------------------------ shape_dtype is <class 'numpy.float64'> dtype is <class 'numpy.float64'> | |||
| XFailed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGammaInvalid::test_none_shape_generator | 0.00 | |
|
self = <cupy_tests.random_tests.test_distributions.TestDistributionsStandardGammaInvalid object at 0x7f1fb9ef7df0> @pytest.mark.xfail( runtime.is_hip, reason='Generator API not supported in HIP') def test_none_shape_generator(self): with pytest.raises(TypeError): > cupy.random.default_rng(0).standard_gamma(None) tests/cupy_tests/random_tests/test_distributions.py:685: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ seed = 0 def default_rng(seed=None): # NOQA avoid redefinition of seed """Construct a new Generator with the default BitGenerator (XORWOW). Args: seed (None, int, array_like[ints], numpy.random.SeedSequence, cupy.random.BitGenerator, cupy.random.Generator, optional): A seed to initialize the :class:`cupy.random.BitGenerator`. If an ``int`` or ``array_like[ints]`` or None is passed, then it will be passed to :class:`numpy.random.SeedSequence` to detive the initial :class:`BitGenerator` state. One may also pass in a `SeedSequence instance. Adiditionally, when passed :class:`BitGenerator`, it will be wrapped by :class:`Generator`. If passed a :class:`Generator`, it will be returned unaltered. Returns: Generator: The initialized generator object. """ # NOQA, list of types need to be in one line for sphinx if runtime.is_hip: > raise RuntimeError('Generator API not supported in HIP,' ' please use the legacy one.') E RuntimeError: Generator API not supported in HIP, please use the legacy one. cupy/random/__init__.py:36: RuntimeError | |||
| XFailed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceChi::test_goodness_of_fit_2 | 0.01 | |
|
cupy/testing/_condition.py:79: in wrapper fail() cupy/testing/_condition.py:50: in fail instance.fail(msg) E AssertionError: E Fail: 1, Success: 4 E E The first error message: E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_condition.py", line 59, in <lambda> E lambda: f(ins, *args[1:], **kwargs), E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator.py", line 943, in test_goodness_of_fit_2 E assert _hypothesis.chi_square_test(counts, expected) E AssertionError: assert False E + where False = <function chi_square_test at 0x7f24d301c4c0>(array([17, 33, 50]), array([30, 30, 40])) E + where <function chi_square_test at 0x7f24d301c4c0> = _hypothesis.chi_square_test | |||
| XFailed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutations_param_0_{seed=None}::test_permutation_zero_dim | 0.00 | |
|
self = <<cupy_tests.random_tests.test_permutations.TestPermutations_param_0_{seed=None} testMethod=test_permutation_zero_dim> parameter: {'seed': None}> @pytest.mark.xfail(reason='Explicit error types required') def test_permutation_zero_dim(self): for xp in (numpy, cupy): xp_random = self._xp_random(xp) a = testing.shaped_random((), xp) with pytest.raises(IndexError): > xp_random.permutation(a) tests/cupy_tests/random_tests/test_permutations.py:33: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/random/_permutations.py:31: in permutation return rs.permutation(a) cupy/random/_generator.py:1110: in permutation return a[self._permutation(len(a))] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('len() of unsized object') E TypeError: len() of unsized object cupy/_core/core.pyx:1313: TypeError | |||
| XFailed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutations_param_1_{seed=0}::test_permutation_zero_dim | 0.00 | |
|
self = <<cupy_tests.random_tests.test_permutations.TestPermutations_param_1_{seed=0} testMethod=test_permutation_zero_dim> parameter: {'seed': 0}> @pytest.mark.xfail(reason='Explicit error types required') def test_permutation_zero_dim(self): for xp in (numpy, cupy): xp_random = self._xp_random(xp) a = testing.shaped_random((), xp) with pytest.raises(IndexError): > xp_random.permutation(a) tests/cupy_tests/random_tests/test_permutations.py:33: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy/random/_generator.py:1110: in permutation return a[self._permutation(len(a))] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise TypeError('len() of unsized object') E TypeError: len() of unsized object cupy/_core/core.pyx:1313: TypeError | |||
| XFailed | tests/cupy_tests/random_tests/test_sample.py::TestRandint2::test_goodness_of_fit_2 | 0.00 | |
|
cupy/testing/_condition.py:79: in wrapper fail() cupy/testing/_condition.py:50: in fail instance.fail(msg) E AssertionError: E Fail: 1, Success: 3 E E The first error message: E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_condition.py", line 59, in <lambda> E lambda: f(ins, *args[1:], **kwargs), E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_sample.py", line 109, in test_goodness_of_fit_2 E assert _hypothesis.chi_square_test(counts, expected) E AssertionError: assert False E + where False = <function chi_square_test at 0x7f24d301c4c0>(array([21, 21, 11, 30, 17]), array([20., 20., 20., 20., 20.])) E + where <function chi_square_test at 0x7f24d301c4c0> = _hypothesis.chi_square_test | |||
| XFailed | tests/cupy_tests/random_tests/test_sample.py::TestRandomIntegers2::test_goodness_of_fit_2 | 0.00 | |
|
cupy/testing/_condition.py:79: in wrapper fail() cupy/testing/_condition.py:50: in fail instance.fail(msg) E AssertionError: E Fail: 1, Success: 3 E E The first error message: E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_condition.py", line 59, in <lambda> E lambda: f(ins, *args[1:], **kwargs), E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_sample.py", line 205, in test_goodness_of_fit_2 E assert _hypothesis.chi_square_test(counts, expected) E AssertionError: assert False E + where False = <function chi_square_test at 0x7f24d301c4c0>(array([21, 21, 11, 30, 17]), array([20., 20., 20., 20., 20.])) E + where <function chi_square_test at 0x7f24d301c4c0> = _hypothesis.chi_square_test | |||
| XFailed | tests/cupy_tests/sorting_tests/test_sort.py::TestLexsort::test_lexsort_zero_dim | 0.00 | |
|
self = <cupy_tests.sorting_tests.test_sort.TestLexsort testMethod=test_lexsort_zero_dim> @pytest.mark.xfail(reason='Explicit error types required') def test_lexsort_zero_dim(self): for xp in (numpy, cupy): a = testing.shaped_random((), xp) with pytest.raises(numpy.AxisError): > return xp.lexsort(a) tests/cupy_tests/sorting_tests/test_sort.py:207: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (array(5.488135, dtype=float32),), kwargs = {} relevant_args = (array(5.488135, dtype=float32),) > ??? E TypeError: need sequence of keys with len > 0 in lexsort <__array_function__ internals>:5: TypeError | |||
| XFailed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelate_param_1_{mode='full'}::test_correlate_non_contiguous | 0.00 | |
|
self = <<cupy_tests.statistics_tests.test_correlation.TestCorrelate_param_1_{mode='full'} testMethod=test_correlate_non_contiguous> parameter: {'mode': 'full'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(rtol=1e-5) def test_correlate_non_contiguous(self, xp, dtype): if runtime.is_hip and self.mode == 'full': > pytest.xfail(reason='ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupy_tests/statistics_tests/test_correlation.py:121: XFailed | |||
| XFailed | tests/cupy_tests/testing_tests/test_helper.py::TestSkipFail_param_0_{framework='unittest'}::test_different_reason | 0.00 | |
|
cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy_error = SkipTest('skip2'), numpy_error = SkipTest('skip1') accept_error = False def _check_cupy_numpy_error(cupy_error, numpy_error, accept_error=False): # Skip the test if both raised SkipTest. if (isinstance(cupy_error, _skip_classes) and isinstance(numpy_error, _skip_classes)): if cupy_error.__class__ is not numpy_error.__class__: raise AssertionError( 'Both numpy and cupy were skipped but with different ' 'exceptions.') if cupy_error.args != numpy_error.args: > raise AssertionError( 'Both numpy and cupy were skipped but with different causes.') E AssertionError: Both numpy and cupy were skipped but with different causes. cupy/testing/_helper.py:147: AssertionError | |||
| XFailed | tests/cupy_tests/testing_tests/test_helper.py::TestSkipFail_param_0_{framework='unittest'}::test_dtype_only_cupy | 0.00 | |
|
self = <<cupy_tests.testing_tests.test_helper.TestSkipFail_param_0_{framework='unittest'} testMethod=test_dtype_only_cupy> parameter: {'framework': 'unittest'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float32'> @pytest.mark.xfail(strict=True) @testing.for_all_dtypes() @testing.numpy_cupy_allclose() def test_dtype_only_cupy(self, xp, dtype): if dtype is not xp.float32: return xp.array(True) if xp is numpy: return xp.array(True) else: > self._skip('skip') tests/cupy_tests/testing_tests/test_helper.py:671: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupy_tests.testing_tests.test_helper.TestSkipFail_param_0_{framework='unittest'} testMethod=test_dtype_only_cupy> parameter: {'framework': 'unittest'}> reason = 'skip' def _skip(self, reason): if self.framework == 'unittest': > raise unittest.SkipTest(reason) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py", line 671, in test_dtype_only_cupy E self._skip('skip') E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py", line 633, in _skip E raise unittest.SkipTest(reason) E unittest.case.SkipTest: skip tests/cupy_tests/testing_tests/test_helper.py:633: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float32'> | |||
| XFailed | tests/cupy_tests/testing_tests/test_helper.py::TestSkipFail_param_0_{framework='unittest'}::test_only_cupy | 0.00 | |
|
self = <<cupy_tests.testing_tests.test_helper.TestSkipFail_param_0_{framework='unittest'} testMethod=test_only_cupy> parameter: {'framework': 'unittest'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @pytest.mark.xfail(strict=True) @testing.numpy_cupy_allclose() def test_only_cupy(self, xp): if xp is numpy: return xp.array(True) else: > self._skip('skip') tests/cupy_tests/testing_tests/test_helper.py:659: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupy_tests.testing_tests.test_helper.TestSkipFail_param_0_{framework='unittest'} testMethod=test_only_cupy> parameter: {'framework': 'unittest'}> reason = 'skip' def _skip(self, reason): if self.framework == 'unittest': > raise unittest.SkipTest(reason) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py", line 659, in test_only_cupy E self._skip('skip') E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py", line 633, in _skip E raise unittest.SkipTest(reason) E unittest.case.SkipTest: skip tests/cupy_tests/testing_tests/test_helper.py:633: AssertionError | |||
| XFailed | tests/cupy_tests/testing_tests/test_helper.py::TestSkipFail_param_0_{framework='unittest'}::test_only_numpy | 0.00 | |
|
self = <<cupy_tests.testing_tests.test_helper.TestSkipFail_param_0_{framework='unittest'} testMethod=test_only_numpy> parameter: {'framework': 'unittest'}> xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @pytest.mark.xfail(strict=True) @testing.numpy_cupy_allclose() def test_only_numpy(self, xp): if xp is numpy: > self._skip('skip') tests/cupy_tests/testing_tests/test_helper.py:649: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupy_tests.testing_tests.test_helper.TestSkipFail_param_0_{framework='unittest'} testMethod=test_only_numpy> parameter: {'framework': 'unittest'}> reason = 'skip' def _skip(self, reason): if self.framework == 'unittest': > raise unittest.SkipTest(reason) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py", line 649, in test_only_numpy E self._skip('skip') E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py", line 633, in _skip E raise unittest.SkipTest(reason) E unittest.case.SkipTest: skip tests/cupy_tests/testing_tests/test_helper.py:633: AssertionError | |||
| XFailed | tests/cupy_tests/testing_tests/test_helper.py::TestSkipFail_param_1_{framework='pytest'}::test_different_reason | 0.00 | |
|
cupy/testing/_helper.py:273: in test_func _check_cupy_numpy_error(cupy_error, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupy_error = skip2, numpy_error = skip1, accept_error = False def _check_cupy_numpy_error(cupy_error, numpy_error, accept_error=False): # Skip the test if both raised SkipTest. if (isinstance(cupy_error, _skip_classes) and isinstance(numpy_error, _skip_classes)): if cupy_error.__class__ is not numpy_error.__class__: raise AssertionError( 'Both numpy and cupy were skipped but with different ' 'exceptions.') if cupy_error.args != numpy_error.args: > raise AssertionError( 'Both numpy and cupy were skipped but with different causes.') E AssertionError: Both numpy and cupy were skipped but with different causes. cupy/testing/_helper.py:147: AssertionError | |||
| XFailed | tests/cupy_tests/testing_tests/test_helper.py::TestSkipFail_param_1_{framework='pytest'}::test_dtype_only_cupy | 0.00 | |
|
self = <<cupy_tests.testing_tests.test_helper.TestSkipFail_param_1_{framework='pytest'} testMethod=test_dtype_only_cupy> parameter: {'framework': 'pytest'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> dtype = <class 'numpy.float32'> @pytest.mark.xfail(strict=True) @testing.for_all_dtypes() @testing.numpy_cupy_allclose() def test_dtype_only_cupy(self, xp, dtype): if dtype is not xp.float32: return xp.array(True) if xp is numpy: return xp.array(True) else: > self._skip('skip') tests/cupy_tests/testing_tests/test_helper.py:671: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupy_tests.testing_tests.test_helper.TestSkipFail_param_1_{framework='pytest'} testMethod=test_dtype_only_cupy> parameter: {'framework': 'pytest'}> reason = 'skip' def _skip(self, reason): if self.framework == 'unittest': raise unittest.SkipTest(reason) else: > pytest.skip(reason) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py", line 671, in test_dtype_only_cupy E self._skip('skip') E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py", line 635, in _skip E pytest.skip(reason) E File "/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/_pytest/outcomes.py", line 139, in skip E raise Skipped(msg=msg, allow_module_level=allow_module_level) E Skipped: skip tests/cupy_tests/testing_tests/test_helper.py:635: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float32'> | |||
| XFailed | tests/cupy_tests/testing_tests/test_helper.py::TestSkipFail_param_1_{framework='pytest'}::test_only_cupy | 0.00 | |
|
self = <<cupy_tests.testing_tests.test_helper.TestSkipFail_param_1_{framework='pytest'} testMethod=test_only_cupy> parameter: {'framework': 'pytest'}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @pytest.mark.xfail(strict=True) @testing.numpy_cupy_allclose() def test_only_cupy(self, xp): if xp is numpy: return xp.array(True) else: > self._skip('skip') tests/cupy_tests/testing_tests/test_helper.py:659: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupy_tests.testing_tests.test_helper.TestSkipFail_param_1_{framework='pytest'} testMethod=test_only_cupy> parameter: {'framework': 'pytest'}> reason = 'skip' def _skip(self, reason): if self.framework == 'unittest': raise unittest.SkipTest(reason) else: > pytest.skip(reason) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py", line 659, in test_only_cupy E self._skip('skip') E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py", line 635, in _skip E pytest.skip(reason) E File "/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/_pytest/outcomes.py", line 139, in skip E raise Skipped(msg=msg, allow_module_level=allow_module_level) E Skipped: skip tests/cupy_tests/testing_tests/test_helper.py:635: AssertionError | |||
| XFailed | tests/cupy_tests/testing_tests/test_helper.py::TestSkipFail_param_1_{framework='pytest'}::test_only_numpy | 0.00 | |
|
self = <<cupy_tests.testing_tests.test_helper.TestSkipFail_param_1_{framework='pytest'} testMethod=test_only_numpy> parameter: {'framework': 'pytest'}> xp = <module 'numpy' from '/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/numpy/__init__.py'> @pytest.mark.xfail(strict=True) @testing.numpy_cupy_allclose() def test_only_numpy(self, xp): if xp is numpy: > self._skip('skip') tests/cupy_tests/testing_tests/test_helper.py:649: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupy_tests.testing_tests.test_helper.TestSkipFail_param_1_{framework='pytest'} testMethod=test_only_numpy> parameter: {'framework': 'pytest'}> reason = 'skip' def _skip(self, reason): if self.framework == 'unittest': raise unittest.SkipTest(reason) else: > pytest.skip(reason) E AssertionError: Only numpy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py", line 649, in test_only_numpy E self._skip('skip') E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py", line 635, in _skip E pytest.skip(reason) E File "/home/kmaeh/.pyenv/versions/rocm-ci/lib/python3.8/site-packages/_pytest/outcomes.py", line 139, in skip E raise Skipped(msg=msg, allow_module_level=allow_module_level) E Skipped: skip tests/cupy_tests/testing_tests/test_helper.py:635: AssertionError | |||
| XFailed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyAllCloseTolPerDtype::test_atol_fail | 0.00 | |
|
cupy/testing/_helper.py:837: in test_func impl(*args, **kw) cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array(0.000977, dtype=float16), desired = array(0., dtype=float16) rtol = 1e-07, atol = 1e-06, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-07, atol=1e-06 E E Mismatched elements: 1 / 1 (100%) E Max absolute difference: 0.000977 E Max relative difference: inf E x: array(0.000977, dtype=float16) E y: array(0., dtype=float16) cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float16'> | |||
| XFailed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyAllCloseTolPerDtype::test_rtol_fail | 0.00 | |
|
cupy/testing/_helper.py:837: in test_func impl(*args, **kw) cupy/testing/_helper.py:355: in test_func check_func(cupy_r, numpy_r) cupy/testing/_helper.py:507: in check_func _array.assert_allclose(c, n, rtol1, atol1, err_msg, verbose) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ actual = array(1.001, dtype=float16), desired = array(1., dtype=float16) rtol = 1e-06, atol = 0, err_msg = '', verbose = True def assert_allclose(actual, desired, rtol=1e-7, atol=0, err_msg='', verbose=True): """Raises an AssertionError if objects are not equal up to desired tolerance. Args: actual(numpy.ndarray or cupy.ndarray): The actual object to check. desired(numpy.ndarray or cupy.ndarray): The desired, expected object. rtol(float): Relative tolerance. atol(float): Absolute tolerance. err_msg(str): The error message to be printed in case of failure. verbose(bool): If ``True``, the conflicting values are appended to the error message. .. seealso:: :func:`numpy.testing.assert_allclose` """ # NOQA > numpy.testing.assert_allclose( cupy.asnumpy(actual), cupy.asnumpy(desired), rtol=rtol, atol=atol, err_msg=err_msg, verbose=verbose) E AssertionError: E Not equal to tolerance rtol=1e-06, atol=0 E E Mismatched elements: 1 / 1 (100%) E Max absolute difference: 0.000977 E Max relative difference: 0.000977 E x: array(1.001, dtype=float16) E y: array(1., dtype=float16) cupy/testing/_array.py:24: AssertionError ------------------------------Captured stdout call------------------------------ dtype is <class 'numpy.float16'> | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_0_{dtype=float32, size=5}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_0_{dtype=float32, size=5} testMethod=test_invh> parameter: {'dtype': <class 'numpy.float32'>, 'size': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1231: in cupy_backends.cuda.libs.cusolver.spotrs cpdef spotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1239: in cupy_backends.cuda.libs.cusolver.spotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1231, in cupy_backends.cuda.libs.cusolver.spotrs E cpdef spotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1239, in cupy_backends.cuda.libs.cusolver.spotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_1_{dtype=float32, size=9}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_1_{dtype=float32, size=9} testMethod=test_invh> parameter: {'dtype': <class 'numpy.float32'>, 'size': 9}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1231: in cupy_backends.cuda.libs.cusolver.spotrs cpdef spotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1239: in cupy_backends.cuda.libs.cusolver.spotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1231, in cupy_backends.cuda.libs.cusolver.spotrs E cpdef spotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1239, in cupy_backends.cuda.libs.cusolver.spotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_2_{dtype=float32, size=17}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_2_{dtype=float32, size=17} testMethod=test_invh> parameter: {'dtype': <class 'numpy.float32'>, 'size': 17}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1231: in cupy_backends.cuda.libs.cusolver.spotrs cpdef spotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1239: in cupy_backends.cuda.libs.cusolver.spotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1231, in cupy_backends.cuda.libs.cusolver.spotrs E cpdef spotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1239, in cupy_backends.cuda.libs.cusolver.spotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_3_{dtype=float32, size=33}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_3_{dtype=float32, size=33} testMethod=test_invh> parameter: {'dtype': <class 'numpy.float32'>, 'size': 33}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1231: in cupy_backends.cuda.libs.cusolver.spotrs cpdef spotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1239: in cupy_backends.cuda.libs.cusolver.spotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1231, in cupy_backends.cuda.libs.cusolver.spotrs E cpdef spotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1239, in cupy_backends.cuda.libs.cusolver.spotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_4_{dtype=float64, size=5}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_4_{dtype=float64, size=5} testMethod=test_invh> parameter: {'dtype': <class 'numpy.float64'>, 'size': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1241: in cupy_backends.cuda.libs.cusolver.dpotrs cpdef dpotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1249: in cupy_backends.cuda.libs.cusolver.dpotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1241, in cupy_backends.cuda.libs.cusolver.dpotrs E cpdef dpotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1249, in cupy_backends.cuda.libs.cusolver.dpotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_5_{dtype=float64, size=9}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_5_{dtype=float64, size=9} testMethod=test_invh> parameter: {'dtype': <class 'numpy.float64'>, 'size': 9}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1241: in cupy_backends.cuda.libs.cusolver.dpotrs cpdef dpotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1249: in cupy_backends.cuda.libs.cusolver.dpotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1241, in cupy_backends.cuda.libs.cusolver.dpotrs E cpdef dpotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1249, in cupy_backends.cuda.libs.cusolver.dpotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_6_{dtype=float64, size=17}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_6_{dtype=float64, size=17} testMethod=test_invh> parameter: {'dtype': <class 'numpy.float64'>, 'size': 17}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1241: in cupy_backends.cuda.libs.cusolver.dpotrs cpdef dpotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1249: in cupy_backends.cuda.libs.cusolver.dpotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1241, in cupy_backends.cuda.libs.cusolver.dpotrs E cpdef dpotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1249, in cupy_backends.cuda.libs.cusolver.dpotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_7_{dtype=float64, size=33}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_7_{dtype=float64, size=33} testMethod=test_invh> parameter: {'dtype': <class 'numpy.float64'>, 'size': 33}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1241: in cupy_backends.cuda.libs.cusolver.dpotrs cpdef dpotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1249: in cupy_backends.cuda.libs.cusolver.dpotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1241, in cupy_backends.cuda.libs.cusolver.dpotrs E cpdef dpotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1249, in cupy_backends.cuda.libs.cusolver.dpotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_8_{dtype=complex64, size=5}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_8_{dtype=complex64, size=5} testMethod=test_invh> parameter: {'dtype': <class 'numpy.complex64'>, 'size': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1251: in cupy_backends.cuda.libs.cusolver.cpotrs cpdef cpotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1259: in cupy_backends.cuda.libs.cusolver.cpotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1251, in cupy_backends.cuda.libs.cusolver.cpotrs E cpdef cpotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1259, in cupy_backends.cuda.libs.cusolver.cpotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_9_{dtype=complex64, size=9}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_9_{dtype=complex64, size=9} testMethod=test_invh> parameter: {'dtype': <class 'numpy.complex64'>, 'size': 9}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1251: in cupy_backends.cuda.libs.cusolver.cpotrs cpdef cpotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1259: in cupy_backends.cuda.libs.cusolver.cpotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1251, in cupy_backends.cuda.libs.cusolver.cpotrs E cpdef cpotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1259, in cupy_backends.cuda.libs.cusolver.cpotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_10_{dtype=complex64, size=17}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_10_{dtype=complex64, size=17} testMethod=test_invh> parameter: {'dtype': <class 'numpy.complex64'>, 'size': 17}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1251: in cupy_backends.cuda.libs.cusolver.cpotrs cpdef cpotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1259: in cupy_backends.cuda.libs.cusolver.cpotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1251, in cupy_backends.cuda.libs.cusolver.cpotrs E cpdef cpotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1259, in cupy_backends.cuda.libs.cusolver.cpotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_11_{dtype=complex64, size=33}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_11_{dtype=complex64, size=33} testMethod=test_invh> parameter: {'dtype': <class 'numpy.complex64'>, 'size': 33}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1251: in cupy_backends.cuda.libs.cusolver.cpotrs cpdef cpotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1259: in cupy_backends.cuda.libs.cusolver.cpotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1251, in cupy_backends.cuda.libs.cusolver.cpotrs E cpdef cpotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1259, in cupy_backends.cuda.libs.cusolver.cpotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_12_{dtype=complex128, size=5}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_12_{dtype=complex128, size=5} testMethod=test_invh> parameter: {'dtype': <class 'numpy.complex128'>, 'size': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1261: in cupy_backends.cuda.libs.cusolver.zpotrs cpdef zpotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1269: in cupy_backends.cuda.libs.cusolver.zpotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1261, in cupy_backends.cuda.libs.cusolver.zpotrs E cpdef zpotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1269, in cupy_backends.cuda.libs.cusolver.zpotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_13_{dtype=complex128, size=9}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_13_{dtype=complex128, size=9} testMethod=test_invh> parameter: {'dtype': <class 'numpy.complex128'>, 'size': 9}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1261: in cupy_backends.cuda.libs.cusolver.zpotrs cpdef zpotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1269: in cupy_backends.cuda.libs.cusolver.zpotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1261, in cupy_backends.cuda.libs.cusolver.zpotrs E cpdef zpotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1269, in cupy_backends.cuda.libs.cusolver.zpotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_14_{dtype=complex128, size=17}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_14_{dtype=complex128, size=17} testMethod=test_invh> parameter: {'dtype': <class 'numpy.complex128'>, 'size': 17}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1261: in cupy_backends.cuda.libs.cusolver.zpotrs cpdef zpotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1269: in cupy_backends.cuda.libs.cusolver.zpotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1261, in cupy_backends.cuda.libs.cusolver.zpotrs E cpdef zpotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1269, in cupy_backends.cuda.libs.cusolver.zpotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/linalg_tests/test_solve.py::TestInvh_param_15_{dtype=complex128, size=33}::test_invh | 0.00 | |
|
self = <<cupyx_tests.linalg_tests.test_solve.TestInvh_param_15_{dtype=complex128, size=33} testMethod=test_invh> parameter: {'dtype': <class 'numpy.complex128'>, 'size': 33}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5) def test_invh(self, xp): a = self._create_symmetric_matrix(xp, self.size, self.dtype) if xp == cupy: > return cupyx.linalg.invh(a) tests/cupyx_tests/linalg_tests/test_solve.py:26: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cupyx/linalg/_solve.py:31: in invh return lapack.posv(a, b) cupyx/lapack.py:337: in posv potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, cupy_backends/cuda/libs/cusolver.pyx:1261: in cupy_backends.cuda.libs.cusolver.zpotrs cpdef zpotrs(intptr_t handle, int uplo, int n, int nrhs, cupy_backends/cuda/libs/cusolver.pyx:1269: in cupy_backends.cuda.libs.cusolver.zpotrs check_status(status) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > raise CUSOLVERError(status) E AssertionError: Only cupy raises error E E Traceback (most recent call last): E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/testing/_helper.py", line 47, in _call_func E result = impl(*args, **kw) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py", line 26, in test_invh E return cupyx.linalg.invh(a) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/linalg/_solve.py", line 31, in invh E return lapack.posv(a, b) E File "/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/lapack.py", line 337, in posv E potrs(handle, uplo, n, nrhs, a.data.ptr, lda, b.data.ptr, ldb, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1261, in cupy_backends.cuda.libs.cusolver.zpotrs E cpdef zpotrs(intptr_t handle, int uplo, int n, int nrhs, E File "cupy_backends/cuda/libs/cusolver.pyx", line 1269, in cupy_backends.cuda.libs.cusolver.zpotrs E check_status(status) E File "cupy_backends/cuda/libs/cusolver.pyx", line 1052, in cupy_backends.cuda.libs.cusolver.check_status E raise CUSOLVERError(status) E cupy_backends.cuda.libs.cusolver.CUSOLVERError: rocblas_status_not_implemented cupy_backends/cuda/libs/cusolver.pyx:1052: AssertionError | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2964_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f2120da99a0> parameter: {'filter': 'median_filter', 'footprint': False, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'mode': 'mirror', 'shape': (4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:225: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f2120da99a0> parameter: {'filter': 'median_filter', 'footprint': False, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'mode': 'mirror', 'shape': (4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.dtype != numpy.float64: return if self.filter != 'median_filter': return if self.mode == 'mirror': invalids = [(False, 3, (4, 5)), (False, 3, (3, 4, 5)), (False, 4, (4, 5)), (True, 4, (4, 5))] if (self.footprint, self.ksize, self.shape) in invalids: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:210: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2965_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f2b286490> parameter: {'filter': 'median_filter', 'footprint': False, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'mode': 'mirror', 'shape': (3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:225: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f2b286490> parameter: {'filter': 'median_filter', 'footprint': False, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'mode': 'mirror', 'shape': (3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.dtype != numpy.float64: return if self.filter != 'median_filter': return if self.mode == 'mirror': invalids = [(False, 3, (4, 5)), (False, 3, (3, 4, 5)), (False, 4, (4, 5)), (True, 4, (4, 5))] if (self.footprint, self.ksize, self.shape) in invalids: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:210: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2966_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f24d16e11c0> parameter: {'filter': 'median_filter', 'footprint': False, 'dtype': <class 'numpy.float64'>, 'ksize': 4, 'mode': 'mirror', 'shape': (4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:225: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f24d16e11c0> parameter: {'filter': 'median_filter', 'footprint': False, 'dtype': <class 'numpy.float64'>, 'ksize': 4, 'mode': 'mirror', 'shape': (4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.dtype != numpy.float64: return if self.filter != 'median_filter': return if self.mode == 'mirror': invalids = [(False, 3, (4, 5)), (False, 3, (3, 4, 5)), (False, 4, (4, 5)), (True, 4, (4, 5))] if (self.footprint, self.ksize, self.shape) in invalids: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:210: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3023_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f2120dcd520> parameter: {'filter': 'medi...rue, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'mode': 'reflect', 'origin': 0, 'output': None, 'shape': (3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:225: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f2120dcd520> parameter: {'filter': 'medi...rue, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'mode': 'reflect', 'origin': 0, 'output': None, 'shape': (3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.dtype != numpy.float64: return if self.filter != 'median_filter': return if self.mode == 'mirror': invalids = [(False, 3, (4, 5)), (False, 3, (3, 4, 5)), (False, 4, (4, 5)), (True, 4, (4, 5))] if (self.footprint, self.ksize, self.shape) in invalids: pytest.xfail('ROCm/HIP may have a bug') elif self.mode == 'reflect': if (self.footprint and self.ksize == 3 and self.shape == (3, 4, 5) and self.output != numpy.float64): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3026_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f24d2645310> parameter: {'filter': 'medi...ass 'numpy.float64'>, 'ksize': 3, 'mode': 'reflect', 'origin': 0, 'output': <class 'numpy.uint8'>, 'shape': (3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:225: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f24d2645310> parameter: {'filter': 'medi...ass 'numpy.float64'>, 'ksize': 3, 'mode': 'reflect', 'origin': 0, 'output': <class 'numpy.uint8'>, 'shape': (3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.dtype != numpy.float64: return if self.filter != 'median_filter': return if self.mode == 'mirror': invalids = [(False, 3, (4, 5)), (False, 3, (3, 4, 5)), (False, 4, (4, 5)), (True, 4, (4, 5))] if (self.footprint, self.ksize, self.shape) in invalids: pytest.xfail('ROCm/HIP may have a bug') elif self.mode == 'reflect': if (self.footprint and self.ksize == 3 and self.shape == (3, 4, 5) and self.output != numpy.float64): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3032_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f4337f2e0> parameter: {'filter': 'medi...rue, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'mode': 'reflect', 'origin': 1, 'output': None, 'shape': (3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:225: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f4337f2e0> parameter: {'filter': 'medi...rue, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'mode': 'reflect', 'origin': 1, 'output': None, 'shape': (3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.dtype != numpy.float64: return if self.filter != 'median_filter': return if self.mode == 'mirror': invalids = [(False, 3, (4, 5)), (False, 3, (3, 4, 5)), (False, 4, (4, 5)), (True, 4, (4, 5))] if (self.footprint, self.ksize, self.shape) in invalids: pytest.xfail('ROCm/HIP may have a bug') elif self.mode == 'reflect': if (self.footprint and self.ksize == 3 and self.shape == (3, 4, 5) and self.output != numpy.float64): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3035_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f43e66700> parameter: {'filter': 'medi...ass 'numpy.float64'>, 'ksize': 3, 'mode': 'reflect', 'origin': 1, 'output': <class 'numpy.uint8'>, 'shape': (3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:225: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f43e66700> parameter: {'filter': 'medi...ass 'numpy.float64'>, 'ksize': 3, 'mode': 'reflect', 'origin': 1, 'output': <class 'numpy.uint8'>, 'shape': (3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.dtype != numpy.float64: return if self.filter != 'median_filter': return if self.mode == 'mirror': invalids = [(False, 3, (4, 5)), (False, 3, (3, 4, 5)), (False, 4, (4, 5)), (True, 4, (4, 5))] if (self.footprint, self.ksize, self.shape) in invalids: pytest.xfail('ROCm/HIP may have a bug') elif self.mode == 'reflect': if (self.footprint and self.ksize == 3 and self.shape == (3, 4, 5) and self.output != numpy.float64): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3041_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f43e5e700> parameter: {'filter': 'medi... <class 'numpy.float64'>, 'ksize': 3, 'mode': 'reflect', 'origin': (-1, 1, -1, 1), 'output': None, 'shape': (3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:225: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f43e5e700> parameter: {'filter': 'medi... <class 'numpy.float64'>, 'ksize': 3, 'mode': 'reflect', 'origin': (-1, 1, -1, 1), 'output': None, 'shape': (3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.dtype != numpy.float64: return if self.filter != 'median_filter': return if self.mode == 'mirror': invalids = [(False, 3, (4, 5)), (False, 3, (3, 4, 5)), (False, 4, (4, 5)), (True, 4, (4, 5))] if (self.footprint, self.ksize, self.shape) in invalids: pytest.xfail('ROCm/HIP may have a bug') elif self.mode == 'reflect': if (self.footprint and self.ksize == 3 and self.shape == (3, 4, 5) and self.output != numpy.float64): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3044_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f43efdc10> parameter: {'filter': 'medi...oat64'>, 'ksize': 3, 'mode': 'reflect', 'origin': (-1, 1, -1, 1), 'output': <class 'numpy.uint8'>, 'shape': (3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:225: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f43efdc10> parameter: {'filter': 'medi...oat64'>, 'ksize': 3, 'mode': 'reflect', 'origin': (-1, 1, -1, 1), 'output': <class 'numpy.uint8'>, 'shape': (3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.dtype != numpy.float64: return if self.filter != 'median_filter': return if self.mode == 'mirror': invalids = [(False, 3, (4, 5)), (False, 3, (3, 4, 5)), (False, 4, (4, 5)), (True, 4, (4, 5))] if (self.footprint, self.ksize, self.shape) in invalids: pytest.xfail('ROCm/HIP may have a bug') elif self.mode == 'reflect': if (self.footprint and self.ksize == 3 and self.shape == (3, 4, 5) and self.output != numpy.float64): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3161_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f47ab5df0> parameter: {'filter': 'median_filter', 'footprint': True, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'mode': 'nearest', 'shape': (3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:225: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f47ab5df0> parameter: {'filter': 'median_filter', 'footprint': True, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'mode': 'nearest', 'shape': (3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.dtype != numpy.float64: return if self.filter != 'median_filter': return if self.mode == 'mirror': invalids = [(False, 3, (4, 5)), (False, 3, (3, 4, 5)), (False, 4, (4, 5)), (True, 4, (4, 5))] if (self.footprint, self.ksize, self.shape) in invalids: pytest.xfail('ROCm/HIP may have a bug') elif self.mode == 'reflect': if (self.footprint and self.ksize == 3 and self.shape == (3, 4, 5) and self.output != numpy.float64): pytest.xfail('ROCm/HIP may have a bug') elif self.mode == 'nearest' or self.mode == 'wrap': if (self.footprint and self.ksize == 3 and self.shape == (3, 4, 5)): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:221: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3164_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f279f15c370> parameter: {'filter': 'median_filter', 'footprint': True, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'mode': 'wrap', 'shape': (3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:225: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f279f15c370> parameter: {'filter': 'median_filter', 'footprint': True, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'mode': 'wrap', 'shape': (3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.dtype != numpy.float64: return if self.filter != 'median_filter': return if self.mode == 'mirror': invalids = [(False, 3, (4, 5)), (False, 3, (3, 4, 5)), (False, 4, (4, 5)), (True, 4, (4, 5))] if (self.footprint, self.ksize, self.shape) in invalids: pytest.xfail('ROCm/HIP may have a bug') elif self.mode == 'reflect': if (self.footprint and self.ksize == 3 and self.shape == (3, 4, 5) and self.output != numpy.float64): pytest.xfail('ROCm/HIP may have a bug') elif self.mode == 'nearest' or self.mode == 'wrap': if (self.footprint and self.ksize == 3 and self.shape == (3, 4, 5)): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:221: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3178_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f47a4c070> parameter: {'filter': 'median_filter', 'footprint': True, 'dtype': <class 'numpy.float64'>, 'ksize': 4, 'mode': 'mirror', 'shape': (4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:225: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilter object at 0x7f1f47a4c070> parameter: {'filter': 'median_filter', 'footprint': True, 'dtype': <class 'numpy.float64'>, 'ksize': 4, 'mode': 'mirror', 'shape': (4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.dtype != numpy.float64: return if self.filter != 'median_filter': return if self.mode == 'mirror': invalids = [(False, 3, (4, 5)), (False, 3, (3, 4, 5)), (False, 4, (4, 5)), (True, 4, (4, 5))] if (self.footprint, self.ksize, self.shape) in invalids: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:210: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_38_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=25, shape=(1, 3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilterFast object at 0x7f1f47a5efd0> parameter: {'filter': 'percentile_filter', 'percentile': 25, 'dtype': <class 'numpy.uint8'>, 'ksize': 3, 'shape': (1, 3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:314: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilterFast object at 0x7f1f47a5efd0> parameter: {'filter': 'percentile_filter', 'percentile': 25, 'dtype': <class 'numpy.uint8'>, 'ksize': 3, 'shape': (1, 3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.filter != 'percentile_filter': return if self.ksize != 3: return invalids = [(25, (1, 3, 4, 5)), (50, (3, 4, 5)), (-25, (1, 3, 4, 5))] if (self.percentile, self.shape) in invalids: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:310: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_44_{dtype=float64, filter='percentile_filter', ksize=3, percentile=25, shape=(1, 3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilterFast object at 0x7f1f47a9ddf0> parameter: {'filter': 'percentile_filter', 'percentile': 25, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'shape': (1, 3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:314: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilterFast object at 0x7f1f47a9ddf0> parameter: {'filter': 'percentile_filter', 'percentile': 25, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'shape': (1, 3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.filter != 'percentile_filter': return if self.ksize != 3: return invalids = [(25, (1, 3, 4, 5)), (50, (3, 4, 5)), (-25, (1, 3, 4, 5))] if (self.percentile, self.shape) in invalids: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:310: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_49_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=50, shape=(3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilterFast object at 0x7f1f47a45340> parameter: {'filter': 'percentile_filter', 'percentile': 50, 'dtype': <class 'numpy.uint8'>, 'ksize': 3, 'shape': (3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:314: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilterFast object at 0x7f1f47a45340> parameter: {'filter': 'percentile_filter', 'percentile': 50, 'dtype': <class 'numpy.uint8'>, 'ksize': 3, 'shape': (3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.filter != 'percentile_filter': return if self.ksize != 3: return invalids = [(25, (1, 3, 4, 5)), (50, (3, 4, 5)), (-25, (1, 3, 4, 5))] if (self.percentile, self.shape) in invalids: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:310: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_55_{dtype=float64, filter='percentile_filter', ksize=3, percentile=50, shape=(3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilterFast object at 0x7f1f47aab880> parameter: {'filter': 'percentile_filter', 'percentile': 50, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'shape': (3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:314: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilterFast object at 0x7f1f47aab880> parameter: {'filter': 'percentile_filter', 'percentile': 50, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'shape': (3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.filter != 'percentile_filter': return if self.ksize != 3: return invalids = [(25, (1, 3, 4, 5)), (50, (3, 4, 5)), (-25, (1, 3, 4, 5))] if (self.percentile, self.shape) in invalids: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:310: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_62_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=-25, shape=(1, 3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilterFast object at 0x7f1f47a4ec10> parameter: {'filter': 'percentile_filter', 'percentile': -25, 'dtype': <class 'numpy.uint8'>, 'ksize': 3, 'shape': (1, 3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:314: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilterFast object at 0x7f1f47a4ec10> parameter: {'filter': 'percentile_filter', 'percentile': -25, 'dtype': <class 'numpy.uint8'>, 'ksize': 3, 'shape': (1, 3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.filter != 'percentile_filter': return if self.ksize != 3: return invalids = [(25, (1, 3, 4, 5)), (50, (3, 4, 5)), (-25, (1, 3, 4, 5))] if (self.percentile, self.shape) in invalids: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:310: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_68_{dtype=float64, filter='percentile_filter', ksize=3, percentile=-25, shape=(1, 3, 4, 5)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilterFast object at 0x7f24c8dc99a0> parameter: {'filter': 'percentile_filter', 'percentile': -25, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'shape': (1, 3, 4, 5)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> @testing.numpy_cupy_allclose(atol=1e-5, rtol=1e-5, scipy_name='scp') def test_filter(self, xp, scp): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:314: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_filters.TestFilterFast object at 0x7f24c8dc99a0> parameter: {'filter': 'percentile_filter', 'percentile': -25, 'dtype': <class 'numpy.float64'>, 'ksize': 3, 'shape': (1, 3, 4, 5)}> def _hip_skip_invalid_condition(self): if not runtime.is_hip: return if self.filter != 'percentile_filter': return if self.ksize != 3: return invalids = [(25, (1, 3, 4, 5)), (50, (3, 4, 5)), (-25, (1, 3, 4, 5))] if (self.percentile, self.shape) in invalids: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py:310: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_13_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3533100> parameter: {..._shape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3533100> parameter: {..._shape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_17_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3533d60> parameter: {...ape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3533d60> parameter: {...ape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_19_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33bc370> parameter: {..._shape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33bc370> parameter: {..._shape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_23_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee34045b0> parameter: {...ape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee34045b0> parameter: {...ape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_25_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee330c1c0> parameter: {..._shape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee330c1c0> parameter: {..._shape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_29_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33c7430> parameter: {...ape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33c7430> parameter: {...ape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_31_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3345a30> parameter: {..._shape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3345a30> parameter: {..._shape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_35_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32669d0> parameter: {...ape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32669d0> parameter: {...ape': (2,), 'mode': 'constant', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_49_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3204d30> parameter: {... (2,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3204d30> parameter: {... (2,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_53_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3463460> parameter: {...,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3463460> parameter: {...,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_55_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32664f0> parameter: {... (2,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32664f0> parameter: {... (2,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_59_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3463580> parameter: {...,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3463580> parameter: {...,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_61_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee320bb20> parameter: {... (2,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee320bb20> parameter: {... (2,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_65_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3297130> parameter: {...,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3297130> parameter: {...,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_67_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3204280> parameter: {... (2,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3204280> parameter: {... (2,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_71_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3315490> parameter: {...,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3315490> parameter: {...,), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_85_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3304250> parameter: {...x_shape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3304250> parameter: {...x_shape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_89_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3204880> parameter: {...hape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3204880> parameter: {...hape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_91_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32825e0> parameter: {...x_shape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32825e0> parameter: {...x_shape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_95_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31e2b20> parameter: {...hape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31e2b20> parameter: {...hape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_97_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee34910d0> parameter: {...x_shape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee34910d0> parameter: {...x_shape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_101_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3282ee0> parameter: {...hape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3282ee0> parameter: {...hape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_103_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3013520> parameter: {...x_shape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3013520> parameter: {...x_shape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_107_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3032e80> parameter: {...hape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3032e80> parameter: {...hape': (2,), 'mode': 'nearest', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_121_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32f64f0> parameter: {...: (2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32f64f0> parameter: {...: (2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_125_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3312c70> parameter: {...2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3312c70> parameter: {...2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_127_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3029a00> parameter: {...: (2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3029a00> parameter: {...: (2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_131_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f93880> parameter: {...2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f93880> parameter: {...2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_133_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3029850> parameter: {...: (2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3029850> parameter: {...: (2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_137_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33eb970> parameter: {...2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33eb970> parameter: {...2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_139_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3312820> parameter: {...: (2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3312820> parameter: {...: (2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_143_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3038f70> parameter: {...2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3038f70> parameter: {...2,), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_157_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f9a850> parameter: {...ix_shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f9a850> parameter: {...ix_shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_161_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee301ca90> parameter: {...shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee301ca90> parameter: {...shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_163_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee346a520> parameter: {...ix_shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee346a520> parameter: {...ix_shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_167_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31efeb0> parameter: {...shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31efeb0> parameter: {...shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_169_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30a9610> parameter: {...ix_shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30a9610> parameter: {...ix_shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_173_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33ebac0> parameter: {...shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33ebac0> parameter: {...shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_175_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3032af0> parameter: {...ix_shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3032af0> parameter: {...ix_shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_179_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3284490> parameter: {...shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3284490> parameter: {...shape': (2,), 'mode': 'mirror', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_193_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30c0c70> parameter: {...': (2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30c0c70> parameter: {...': (2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_197_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30b8640> parameter: {...(2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30b8640> parameter: {...(2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_199_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30b46a0> parameter: {...': (2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30b46a0> parameter: {...': (2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_203_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b402b0> parameter: {...(2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b402b0> parameter: {...(2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_205_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f93b20> parameter: {...': (2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f93b20> parameter: {...': (2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_209_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b44f10> parameter: {...(2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b44f10> parameter: {...(2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_211_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31efb20> parameter: {...': (2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31efb20> parameter: {...': (2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_215_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30dafd0> parameter: {...(2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30dafd0> parameter: {...(2,), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_229_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b4cbe0> parameter: {...trix_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b4cbe0> parameter: {...trix_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_233_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b637c0> parameter: {...x_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b637c0> parameter: {...x_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_235_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee346a460> parameter: {...trix_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee346a460> parameter: {...trix_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_239_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2fa91f0> parameter: {...x_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2fa91f0> parameter: {...x_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_241_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b74070> parameter: {...trix_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b74070> parameter: {...trix_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_245_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30a9760> parameter: {...x_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30a9760> parameter: {...x_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_247_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dbdfa00> parameter: {...trix_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dbdfa00> parameter: {...trix_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_251_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b406d0> parameter: {...x_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b406d0> parameter: {...x_shape': (2,), 'mode': 'wrap', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_265_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ea59d0> parameter: {...pe': (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ea59d0> parameter: {...pe': (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_269_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33bc1c0> parameter: {...: (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33bc1c0> parameter: {...: (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_271_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30c0280> parameter: {...pe': (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30c0280> parameter: {...pe': (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_275_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3304bb0> parameter: {...: (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3304bb0> parameter: {...: (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_277_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dc214c0> parameter: {...pe': (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dc214c0> parameter: {...pe': (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_281_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f21203dd970> parameter: {...: (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f21203dd970> parameter: {...: (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_283_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1eeb1c6550> parameter: {...pe': (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1eeb1c6550> parameter: {...pe': (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_287_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3312490> parameter: {...: (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3312490> parameter: {...: (2,), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_301_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dc3a100> parameter: {...shape': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dc3a100> parameter: {...shape': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_305_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dc951c0> parameter: {...pe': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dc951c0> parameter: {...pe': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_307_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1f43f1a820> parameter: {...shape': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1f43f1a820> parameter: {...shape': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_311_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f24c8dc9940> parameter: {...pe': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f24c8dc9940> parameter: {...pe': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_313_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3038a90> parameter: {...shape': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3038a90> parameter: {...shape': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_317_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33eb700> parameter: {...pe': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33eb700> parameter: {...pe': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_319_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f24c8da9100> parameter: {...shape': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f24c8da9100> parameter: {...shape': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_323_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f97b50> parameter: {...pe': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f97b50> parameter: {...pe': (2,), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_337_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b447f0> parameter: {...(2,), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b447f0> parameter: {...(2,), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_341_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b74ac0> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b74ac0> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_343_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3404850> parameter: {...(2,), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3404850> parameter: {...(2,), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_347_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3533ac0> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3533ac0> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_349_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1eeb7d3f70> parameter: {...(2,), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1eeb7d3f70> parameter: {...(2,), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_353_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dbf8ac0> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dbf8ac0> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_355_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3345af0> parameter: {...(2,), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3345af0> parameter: {...(2,), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_359_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee301c370> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee301c370> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_373_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31f9700> parameter: {...x_shape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31f9700> parameter: {...x_shape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_377_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3290820> parameter: {...hape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3290820> parameter: {...hape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_379_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b63ac0> parameter: {...x_shape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b63ac0> parameter: {...x_shape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_383_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3029be0> parameter: {...hape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3029be0> parameter: {...hape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_385_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33154f0> parameter: {...x_shape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33154f0> parameter: {...x_shape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_389_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31ef160> parameter: {...hape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31ef160> parameter: {...hape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_391_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b56dc0> parameter: {...x_shape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b56dc0> parameter: {...x_shape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_395_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30b4130> parameter: {...hape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30b4130> parameter: {...hape': (2,), 'mode': 'reflect', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_409_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30b8ca0> parameter: {...: (2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30b8ca0> parameter: {...: (2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_413_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2fc0640> parameter: {...2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2fc0640> parameter: {...2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_415_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32f77f0> parameter: {...: (2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32f77f0> parameter: {...: (2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_419_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee34714c0> parameter: {...2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee34714c0> parameter: {...2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_421_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3478100> parameter: {...: (2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3478100> parameter: {...: (2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_425_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32ee0a0> parameter: {...2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32ee0a0> parameter: {...2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_427_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3326790> parameter: {...: (2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3326790> parameter: {...: (2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_431_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33d9a30> parameter: {...2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33d9a30> parameter: {...2,), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_445_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2eb0400> parameter: {...ape': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2eb0400> parameter: {...ape': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_449_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3032cd0> parameter: {...': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3032cd0> parameter: {...': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_451_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30e21f0> parameter: {...ape': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30e21f0> parameter: {...ape': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_455_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b697c0> parameter: {...': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b697c0> parameter: {...': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_457_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee301cfd0> parameter: {...ape': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee301cfd0> parameter: {...ape': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_461_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2eb8eb0> parameter: {...': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2eb8eb0> parameter: {...': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_463_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3282ac0> parameter: {...ape': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3282ac0> parameter: {...ape': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_467_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee34835b0> parameter: {...': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee34835b0> parameter: {...': (2,), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_481_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ea0a30> parameter: {...,), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ea0a30> parameter: {...,), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_485_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ed3610> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ed3610> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_487_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32907f0> parameter: {...,), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32907f0> parameter: {...,), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_491_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33e9be0> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33e9be0> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_493_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b732b0> parameter: {...,), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b732b0> parameter: {...,), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_497_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2fa9cd0> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2fa9cd0> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_499_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b7e0d0> parameter: {...,), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b7e0d0> parameter: {...,), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_503_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3463f10> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3463f10> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_517_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ebc070> parameter: {...e': (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ebc070> parameter: {...e': (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_521_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31e50d0> parameter: {... (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31e50d0> parameter: {... (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_523_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26dc190> parameter: {...e': (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26dc190> parameter: {...e': (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_527_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ea7a60> parameter: {... (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ea7a60> parameter: {... (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_529_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ebd3d0> parameter: {...e': (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ebd3d0> parameter: {...e': (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_533_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27d0490> parameter: {... (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27d0490> parameter: {... (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_535_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27bd4f0> parameter: {...e': (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27bd4f0> parameter: {...e': (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_539_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2edf190> parameter: {... (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2edf190> parameter: {... (2,), 'mode': 'grid-constant', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_553_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26f6640> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26f6640> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_557_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32f77c0> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32f77c0> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_559_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27e7ac0> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27e7ac0> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_563_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b69e20> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b69e20> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_565_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32841f0> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32841f0> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_569_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27c6220> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27c6220> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_571_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2fc0430> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2fc0430> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_575_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2706ac0> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2706ac0> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_589_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3471040> parameter: {...hape': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3471040> parameter: {...hape': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_593_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f93220> parameter: {...e': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f93220> parameter: {...e': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_595_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3483370> parameter: {...hape': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3483370> parameter: {...hape': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_599_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26eebb0> parameter: {...e': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26eebb0> parameter: {...e': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_601_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee271b190> parameter: {...hape': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee271b190> parameter: {...hape': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_605_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27bceb0> parameter: {...e': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27bceb0> parameter: {...e': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_607_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee326b160> parameter: {...hape': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee326b160> parameter: {...hape': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_611_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee24a07c0> parameter: {...e': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee24a07c0> parameter: {...e': (2, 2), 'mode': 'constant', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_625_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26ff760> parameter: {...2, 2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26ff760> parameter: {...2, 2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_629_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30c4bb0> parameter: {...2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30c4bb0> parameter: {...2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_631_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b7ed30> parameter: {...2, 2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b7ed30> parameter: {...2, 2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_635_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee248ee50> parameter: {...2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee248ee50> parameter: {...2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_637_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27f8bb0> parameter: {...2, 2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27f8bb0> parameter: {...2, 2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_641_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33e9dc0> parameter: {...2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33e9dc0> parameter: {...2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_643_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee24a59d0> parameter: {...2, 2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee24a59d0> parameter: {...2, 2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_647_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31d4a90> parameter: {...2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31d4a90> parameter: {...2), 'mode': 'constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_661_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26e14c0> parameter: {...shape': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26e14c0> parameter: {...shape': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_665_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27d0d30> parameter: {...pe': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27d0d30> parameter: {...pe': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_667_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2715880> parameter: {...shape': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2715880> parameter: {...shape': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_671_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3318fd0> parameter: {...pe': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3318fd0> parameter: {...pe': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_673_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23cfe80> parameter: {...shape': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23cfe80> parameter: {...shape': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_677_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee24ba100> parameter: {...pe': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee24ba100> parameter: {...pe': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_679_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ecd790> parameter: {...shape': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ecd790> parameter: {...shape': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_683_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee348c8e0> parameter: {...pe': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee348c8e0> parameter: {...pe': (2, 2), 'mode': 'nearest', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_697_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23fb400> parameter: {...(2, 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23fb400> parameter: {...(2, 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_701_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee256e5e0> parameter: {... 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee256e5e0> parameter: {... 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_703_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23f6970> parameter: {...(2, 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23f6970> parameter: {...(2, 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_707_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23dd4c0> parameter: {... 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23dd4c0> parameter: {... 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_709_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23e6ac0> parameter: {...(2, 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23e6ac0> parameter: {...(2, 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_713_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3334dc0> parameter: {... 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3334dc0> parameter: {... 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_715_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2491be0> parameter: {...(2, 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2491be0> parameter: {...(2, 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_719_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee256a430> parameter: {... 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee256a430> parameter: {... 2), 'mode': 'nearest', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_733_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2403730> parameter: {..._shape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2403730> parameter: {..._shape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_737_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee333ebb0> parameter: {...ape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee333ebb0> parameter: {...ape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_739_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee258d970> parameter: {..._shape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee258d970> parameter: {..._shape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_743_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee255c070> parameter: {...ape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee255c070> parameter: {...ape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_745_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23d9d90> parameter: {..._shape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23d9d90> parameter: {..._shape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_749_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2483460> parameter: {...ape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2483460> parameter: {...ape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_751_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1dcf250> parameter: {..._shape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1dcf250> parameter: {..._shape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_755_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee24bfd60> parameter: {...ape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee24bfd60> parameter: {...ape': (2, 2), 'mode': 'mirror', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_769_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2466cd0> parameter: {... (2, 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2466cd0> parameter: {... (2, 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_773_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2576be0> parameter: {..., 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2576be0> parameter: {..., 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_775_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee232ec10> parameter: {... (2, 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee232ec10> parameter: {... (2, 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_779_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee231ddc0> parameter: {..., 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee231ddc0> parameter: {..., 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_781_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee247fc70> parameter: {... (2, 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee247fc70> parameter: {... (2, 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_785_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee259a580> parameter: {..., 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee259a580> parameter: {..., 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_787_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27d2d00> parameter: {... (2, 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27d2d00> parameter: {... (2, 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_791_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee233fac0> parameter: {..., 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee233fac0> parameter: {..., 2), 'mode': 'mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_805_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee22eba30> parameter: {...ix_shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee22eba30> parameter: {...ix_shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_809_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1fcce50> parameter: {...shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1fcce50> parameter: {...shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_811_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23cff40> parameter: {...ix_shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23cff40> parameter: {...ix_shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_815_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee245d280> parameter: {...shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee245d280> parameter: {...shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_817_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ebd580> parameter: {...ix_shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ebd580> parameter: {...ix_shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_821_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee326b430> parameter: {...shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee326b430> parameter: {...shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_823_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26dc430> parameter: {...ix_shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26dc430> parameter: {...ix_shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_827_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26ff100> parameter: {...shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26ff100> parameter: {...shape': (2, 2), 'mode': 'wrap', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_841_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2498760> parameter: {...': (2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2498760> parameter: {...': (2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_845_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27d7130> parameter: {...(2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27d7130> parameter: {...(2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_847_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211db33700> parameter: {...': (2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211db33700> parameter: {...': (2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_851_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27d0af0> parameter: {...(2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27d0af0> parameter: {...(2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_853_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1de8520> parameter: {...': (2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1de8520> parameter: {...': (2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_857_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23f6fd0> parameter: {...(2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23f6fd0> parameter: {...(2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_859_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23d9ac0> parameter: {...': (2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23d9ac0> parameter: {...': (2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_863_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ea04f0> parameter: {...(2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ea04f0> parameter: {...(2, 2), 'mode': 'wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_877_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32ee6a0> parameter: {...ape': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee32ee6a0> parameter: {...ape': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_881_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee255c2b0> parameter: {...': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee255c2b0> parameter: {...': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_883_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee248ecd0> parameter: {...ape': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee248ecd0> parameter: {...ape': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_887_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27bc400> parameter: {...': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27bc400> parameter: {...': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_889_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33c7c40> parameter: {...ape': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33c7c40> parameter: {...ape': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_893_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f93070> parameter: {...': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f93070> parameter: {...': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_895_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1f47a5e970> parameter: {...ape': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1f47a5e970> parameter: {...ape': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_899_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee34719d0> parameter: {...': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee34719d0> parameter: {...': (2, 2), 'mode': 'grid-wrap', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_913_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2483190> parameter: {..., 2), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2483190> parameter: {..., 2), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_917_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31e53a0> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee31e53a0> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_919_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee333e580> parameter: {..., 2), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee333e580> parameter: {..., 2), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_923_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26eedc0> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26eedc0> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_925_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dc04d00> parameter: {..., 2), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dc04d00> parameter: {..., 2), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_929_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30a9f70> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30a9f70> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_931_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3334b20> parameter: {..., 2), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3334b20> parameter: {..., 2), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_935_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2eb8370> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2eb8370> parameter: {...), 'mode': 'grid-wrap', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_949_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33269d0> parameter: {...shape': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33269d0> parameter: {...shape': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_953_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b56130> parameter: {...pe': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b56130> parameter: {...pe': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_955_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211db8e100> parameter: {...shape': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211db8e100> parameter: {...shape': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_959_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1e85be0> parameter: {...pe': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1e85be0> parameter: {...pe': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_961_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23dfd90> parameter: {...shape': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23dfd90> parameter: {...shape': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_965_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee247f2e0> parameter: {...pe': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee247f2e0> parameter: {...pe': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_967_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23e6ca0> parameter: {...shape': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23e6ca0> parameter: {...shape': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_971_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dbd1400> parameter: {...pe': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f211dbd1400> parameter: {...pe': (2, 2), 'mode': 'reflect', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_985_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b7e4f0> parameter: {...(2, 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b7e4f0> parameter: {...(2, 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_989_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b696a0> parameter: {... 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b696a0> parameter: {... 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_991_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30e0e20> parameter: {...(2, 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30e0e20> parameter: {...(2, 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_995_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2576820> parameter: {... 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2576820> parameter: {... 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_997_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27c6ac0> parameter: {...(2, 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27c6ac0> parameter: {...(2, 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1001_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27e7c40> parameter: {... 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27e7c40> parameter: {... 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1003_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3404430> parameter: {...(2, 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3404430> parameter: {...(2, 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1007_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b740a0> parameter: {... 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2b740a0> parameter: {... 2), 'mode': 'reflect', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1021_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26f6100> parameter: {...e': (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee26f6100> parameter: {...e': (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1025_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee233f430> parameter: {... (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee233f430> parameter: {... (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1027_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27d7970> parameter: {...e': (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27d7970> parameter: {...e': (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1031_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30da400> parameter: {... (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30da400> parameter: {... (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1033_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee333eca0> parameter: {...e': (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee333eca0> parameter: {...e': (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1037_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33e9190> parameter: {... (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33e9190> parameter: {... (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1039_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2fc0dc0> parameter: {...e': (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2fc0dc0> parameter: {...e': (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1043_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f97fa0> parameter: {... (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2f97fa0> parameter: {... (2, 2), 'mode': 'grid-mirror', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1057_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2491220> parameter: {...2), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2491220> parameter: {...2), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1061_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3284cd0> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3284cd0> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1063_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3463400> parameter: {...2), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3463400> parameter: {...2), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1067_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee22f9490> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee22f9490> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1069_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2fa95e0> parameter: {...2), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2fa95e0> parameter: {...2), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1073_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33d9c70> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee33d9c70> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1075_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30e0760> parameter: {...2), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee30e0760> parameter: {...2), 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1079_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27f2250> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee27f2250> parameter: {... 'mode': 'grid-mirror', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1093_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1fcc0d0> parameter: {...: (2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1fcc0d0> parameter: {...: (2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1097_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1ea5910> parameter: {...2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1ea5910> parameter: {...2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1099_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ec9460> parameter: {...: (2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ec9460> parameter: {...: (2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1103_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23201f0> parameter: {...2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee23201f0> parameter: {...2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1105_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3274f70> parameter: {...: (2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee3274f70> parameter: {...: (2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1109_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1ddf5e0> parameter: {...2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1ddf5e0> parameter: {...2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1111_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee25895e0> parameter: {...: (2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee25895e0> parameter: {...: (2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1115_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1e70280> parameter: {...2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1e70280> parameter: {...2, 2), 'mode': 'grid-constant', 'offset': 0.3, 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1129_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee259a2e0> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee259a2e0> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1133_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1fea6a0> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1fea6a0> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 2, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1135_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee257dcd0> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee257dcd0> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1139_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ed2760> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2ed2760> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 3, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1141_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2453d90> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2453d90> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1145_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee245d130> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee245d130> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 4, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1147_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1de8d00> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee1de8d00> parameter: {..., 'mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': None, 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1151_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2338400> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_affine_transform_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:221: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestAffineTransform object at 0x7f1ee2338400> parameter: {...mode': 'grid-constant', 'offset': [-1.3, 1.3], 'order': 5, 'output': 'empty', 'output_shape': None, 'prefilter': True}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.matrix_shape in [(2,), (2, 2)] and self.order in [2, 3, 4, 5] and self.output in [None, 'empty'] and self.prefilter): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:216: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_3_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee33341f0> parameter: {'angle': ...), 'cval': 1.0, 'mode': 'constant', 'order': 0, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee33341f0> parameter: {'angle': ...), 'cval': 1.0, 'mode': 'constant', 'order': 0, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:368: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_9_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f211daa3040> parameter: {'angle': ...), 'cval': 1.0, 'mode': 'constant', 'order': 1, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f211daa3040> parameter: {'angle': ...), 'cval': 1.0, 'mode': 'constant', 'order': 1, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:368: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_15_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee2f9be20> parameter: {'angle': ...0), 'cval': 1.0, 'mode': 'nearest', 'order': 0, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee2f9be20> parameter: {'angle': ...0), 'cval': 1.0, 'mode': 'nearest', 'order': 0, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:368: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_21_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee1439310> parameter: {'angle': ...0), 'cval': 1.0, 'mode': 'nearest', 'order': 1, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee1439310> parameter: {'angle': ...0), 'cval': 1.0, 'mode': 'nearest', 'order': 1, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:368: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_27_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee12ea8e0> parameter: {'angle': ... 0), 'cval': 1.0, 'mode': 'mirror', 'order': 0, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee12ea8e0> parameter: {'angle': ... 0), 'cval': 1.0, 'mode': 'mirror', 'order': 0, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:368: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_33_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee1ddf340> parameter: {'angle': ... 0), 'cval': 1.0, 'mode': 'mirror', 'order': 1, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee1ddf340> parameter: {'angle': ... 0), 'cval': 1.0, 'mode': 'mirror', 'order': 1, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:368: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_39_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee259a1c0> parameter: {'angle': ...), 'cval': 1.0, 'mode': 'constant', 'order': 0, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee259a1c0> parameter: {'angle': ...), 'cval': 1.0, 'mode': 'constant', 'order': 0, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:368: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_45_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee14614f0> parameter: {'angle': ...), 'cval': 1.0, 'mode': 'constant', 'order': 1, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee14614f0> parameter: {'angle': ...), 'cval': 1.0, 'mode': 'constant', 'order': 1, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:368: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_51_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee12cd1c0> parameter: {'angle': ...0), 'cval': 1.0, 'mode': 'nearest', 'order': 0, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee12cd1c0> parameter: {'angle': ...0), 'cval': 1.0, 'mode': 'nearest', 'order': 0, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:368: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_57_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee15a71f0> parameter: {'angle': ...0), 'cval': 1.0, 'mode': 'nearest', 'order': 1, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee15a71f0> parameter: {'angle': ...0), 'cval': 1.0, 'mode': 'nearest', 'order': 1, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:368: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_63_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee2ed2580> parameter: {'angle': ... 0), 'cval': 1.0, 'mode': 'mirror', 'order': 0, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee2ed2580> parameter: {'angle': ... 0), 'cval': 1.0, 'mode': 'mirror', 'order': 0, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:368: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_69_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee12abe80> parameter: {'angle': ... 0), 'cval': 1.0, 'mode': 'mirror', 'order': 1, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee12abe80> parameter: {'angle': ... 0), 'cval': 1.0, 'mode': 'mirror', 'order': 1, 'output': <class 'numpy.float64'>, 'prefilter': True, 'reshape': True}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:368: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_77_{angle=-15, axes=(1, 0), cval=1.0, mode='nearest', order=3, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee0f421c0> parameter: {'angle': -15, 'axes': (1, 0), 'cval': 1.0, 'mode': 'nearest', 'order': 3, 'output': None, 'prefilter': True, 'reshape': False}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee0f421c0> parameter: {'angle': -15, 'axes': (1, 0), 'cval': 1.0, 'mode': 'nearest', 'order': 3, 'output': None, 'prefilter': True, 'reshape': False}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): pytest.xfail('ROCm/HIP may have a bug') if (self.angle == -15 and self.mode in [ 'nearest', 'grid-wrap', 'reflect', 'grid-mirror'] and self.order == 3): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:373: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_86_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee12a5c70> parameter: {'angle': -15, 'axes': (1, 0), 'cval': 1.0, 'mode': 'grid-wrap', 'order': 3, 'output': None, 'prefilter': True, 'reshape': False}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee12a5c70> parameter: {'angle': -15, 'axes': (1, 0), 'cval': 1.0, 'mode': 'grid-wrap', 'order': 3, 'output': None, 'prefilter': True, 'reshape': False}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): pytest.xfail('ROCm/HIP may have a bug') if (self.angle == -15 and self.mode in [ 'nearest', 'grid-wrap', 'reflect', 'grid-mirror'] and self.order == 3): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:373: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_89_{angle=-15, axes=(1, 0), cval=1.0, mode='reflect', order=3, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee2453dc0> parameter: {'angle': -15, 'axes': (1, 0), 'cval': 1.0, 'mode': 'reflect', 'order': 3, 'output': None, 'prefilter': True, 'reshape': False}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee2453dc0> parameter: {'angle': -15, 'axes': (1, 0), 'cval': 1.0, 'mode': 'reflect', 'order': 3, 'output': None, 'prefilter': True, 'reshape': False}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): pytest.xfail('ROCm/HIP may have a bug') if (self.angle == -15 and self.mode in [ 'nearest', 'grid-wrap', 'reflect', 'grid-mirror'] and self.order == 3): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:373: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_92_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee31d4970> parameter: {'angle': -15, 'axes': (1, 0), 'cval': 1.0, 'mode': 'grid-mirror', 'order': 3, 'output': None, 'prefilter': True, 'reshape': False}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_rotate_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestRotate object at 0x7f1ee31d4970> parameter: {'angle': -15, 'axes': (1, 0), 'cval': 1.0, 'mode': 'grid-mirror', 'order': 3, 'output': None, 'prefilter': True, 'reshape': False}> def _hip_skip_invalid_condition(self): if runtime.is_hip: if (self.angle in [-10, 1000] and self.mode in ['constant', 'nearest', 'mirror'] and self.output == numpy.float64 and self.reshape): pytest.xfail('ROCm/HIP may have a bug') if (self.angle == -15 and self.mode in [ 'nearest', 'grid-wrap', 'reflect', 'grid-mirror'] and self.order == 3): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:373: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_18_{cval=1.0, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf5e90d0> parameter: {'cval': 1.0, 'mode': 'constant', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf5e90d0> parameter: {'cval': 1.0, 'mode': 'constant', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_24_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf1ab0d0> parameter: {'cval': 1.0, 'mode': 'constant', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf1ab0d0> parameter: {'cval': 1.0, 'mode': 'constant', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_45_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf1940a0> parameter: {'cval': 1.0, 'mode': 'nearest', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf1940a0> parameter: {'cval': 1.0, 'mode': 'nearest', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_51_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf0f35b0> parameter: {'cval': 1.0, 'mode': 'nearest', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf0f35b0> parameter: {'cval': 1.0, 'mode': 'nearest', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_72_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf1a1640> parameter: {'cval': 1.0, 'mode': 'mirror', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf1a1640> parameter: {'cval': 1.0, 'mode': 'mirror', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_78_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf1a2460> parameter: {'cval': 1.0, 'mode': 'mirror', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf1a2460> parameter: {'cval': 1.0, 'mode': 'mirror', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_99_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf4a9d90> parameter: {'cval': 1.0, 'mode': 'wrap', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf4a9d90> parameter: {'cval': 1.0, 'mode': 'wrap', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_105_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf01c8e0> parameter: {'cval': 1.0, 'mode': 'wrap', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf01c8e0> parameter: {'cval': 1.0, 'mode': 'wrap', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_126_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf1bca90> parameter: {'cval': 1.0, 'mode': 'grid-wrap', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf1bca90> parameter: {'cval': 1.0, 'mode': 'grid-wrap', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_132_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf1bd760> parameter: {'cval': 1.0, 'mode': 'grid-wrap', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf1bd760> parameter: {'cval': 1.0, 'mode': 'grid-wrap', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_153_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf012b80> parameter: {'cval': 1.0, 'mode': 'reflect', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf012b80> parameter: {'cval': 1.0, 'mode': 'reflect', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_159_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1ededabaf0> parameter: {'cval': 1.0, 'mode': 'reflect', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1ededabaf0> parameter: {'cval': 1.0, 'mode': 'reflect', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_180_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1ededabd30> parameter: {'cval': 1.0, 'mode': 'grid-mirror', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1ededabd30> parameter: {'cval': 1.0, 'mode': 'grid-mirror', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_186_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edec4e580> parameter: {'cval': 1.0, 'mode': 'grid-mirror', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edec4e580> parameter: {'cval': 1.0, 'mode': 'grid-mirror', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_207_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf00e0a0> parameter: {'cval': 1.0, 'mode': 'grid-constant', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1edf00e0a0> parameter: {'cval': 1.0, 'mode': 'grid-constant', 'order': 3, 'output': None, 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_213_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1ede9120a0> parameter: {'cval': 1.0, 'mode': 'grid-constant', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.int8'> @testing.for_int_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=1e-5, scipy_name='scp') def test_shift_int(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:517: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_interpolation.TestShift object at 0x7f1ede9120a0> parameter: {'cval': 1.0, 'mode': 'grid-constant', 'order': 3, 'output': 'empty', 'prefilter': True, 'shift': 0.1}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.cval == 1.0 and self.order == 3 and self.output in [None, 'empty'] and self.shift == 0.1): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py:512: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_10_{enable_cub=True, index=None, labels=None, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc2ade20> parameter: {'enable_cub': True, 'index': None, 'labels': None, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc2ade20> parameter: {'enable_cub': True, 'index': None, 'labels': None, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_11_{enable_cub=True, index=None, labels=None, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc148910> parameter: {'enable_cub': True, 'index': None, 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc148910> parameter: {'enable_cub': True, 'index': None, 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_22_{enable_cub=True, index=None, labels=5, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc2057c0> parameter: {'enable_cub': True, 'index': None, 'labels': 5, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc2057c0> parameter: {'enable_cub': True, 'index': None, 'labels': 5, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_23_{enable_cub=True, index=None, labels=5, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc2037f0> parameter: {'enable_cub': True, 'index': None, 'labels': 5, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc2037f0> parameter: {'enable_cub': True, 'index': None, 'labels': 5, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_34_{enable_cub=True, index=None, labels=50, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc1480d0> parameter: {'enable_cub': True, 'index': None, 'labels': 50, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc1480d0> parameter: {'enable_cub': True, 'index': None, 'labels': 50, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_35_{enable_cub=True, index=None, labels=50, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc0500a0> parameter: {'enable_cub': True, 'index': None, 'labels': 50, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc0500a0> parameter: {'enable_cub': True, 'index': None, 'labels': 50, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_46_{enable_cub=True, index=1, labels=None, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc1a60a0> parameter: {'enable_cub': True, 'index': 1, 'labels': None, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc1a60a0> parameter: {'enable_cub': True, 'index': 1, 'labels': None, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_47_{enable_cub=True, index=1, labels=None, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc13e880> parameter: {'enable_cub': True, 'index': 1, 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc13e880> parameter: {'enable_cub': True, 'index': 1, 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_58_{enable_cub=True, index=1, labels=5, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc203520> parameter: {'enable_cub': True, 'index': 1, 'labels': 5, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc203520> parameter: {'enable_cub': True, 'index': 1, 'labels': 5, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_59_{enable_cub=True, index=1, labels=5, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc2125e0> parameter: {'enable_cub': True, 'index': 1, 'labels': 5, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc2125e0> parameter: {'enable_cub': True, 'index': 1, 'labels': 5, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_82_{enable_cub=True, index='all', labels=None, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc07f5e0> parameter: {'enable_cub': True, 'index': 'all', 'labels': None, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc07f5e0> parameter: {'enable_cub': True, 'index': 'all', 'labels': None, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_83_{enable_cub=True, index='all', labels=None, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc145e20> parameter: {'enable_cub': True, 'index': 'all', 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc145e20> parameter: {'enable_cub': True, 'index': 'all', 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_118_{enable_cub=True, index='subset', labels=None, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc054ee0> parameter: {'enable_cub': True, 'index': 'subset', 'labels': None, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc054ee0> parameter: {'enable_cub': True, 'index': 'subset', 'labels': None, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_119_{enable_cub=True, index='subset', labels=None, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc151250> parameter: {'enable_cub': True, 'index': 'subset', 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc151250> parameter: {'enable_cub': True, 'index': 'subset', 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_154_{enable_cub=False, index=None, labels=None, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc145850> parameter: {'enable_cub': False, 'index': None, 'labels': None, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc145850> parameter: {'enable_cub': False, 'index': None, 'labels': None, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_155_{enable_cub=False, index=None, labels=None, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f211c251130> parameter: {'enable_cub': False, 'index': None, 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f211c251130> parameter: {'enable_cub': False, 'index': None, 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_166_{enable_cub=False, index=None, labels=5, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc151c10> parameter: {'enable_cub': False, 'index': None, 'labels': 5, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc151c10> parameter: {'enable_cub': False, 'index': None, 'labels': 5, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_167_{enable_cub=False, index=None, labels=5, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc188940> parameter: {'enable_cub': False, 'index': None, 'labels': 5, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc188940> parameter: {'enable_cub': False, 'index': None, 'labels': 5, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_178_{enable_cub=False, index=None, labels=50, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc17ea00> parameter: {'enable_cub': False, 'index': None, 'labels': 50, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc17ea00> parameter: {'enable_cub': False, 'index': None, 'labels': 50, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_179_{enable_cub=False, index=None, labels=50, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc10cca0> parameter: {'enable_cub': False, 'index': None, 'labels': 50, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc10cca0> parameter: {'enable_cub': False, 'index': None, 'labels': 50, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_190_{enable_cub=False, index=1, labels=None, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc212130> parameter: {'enable_cub': False, 'index': 1, 'labels': None, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc212130> parameter: {'enable_cub': False, 'index': 1, 'labels': None, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_191_{enable_cub=False, index=1, labels=None, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc018040> parameter: {'enable_cub': False, 'index': 1, 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc018040> parameter: {'enable_cub': False, 'index': 1, 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_202_{enable_cub=False, index=1, labels=5, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc1884c0> parameter: {'enable_cub': False, 'index': 1, 'labels': 5, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc1884c0> parameter: {'enable_cub': False, 'index': 1, 'labels': 5, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_203_{enable_cub=False, index=1, labels=5, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc01c460> parameter: {'enable_cub': False, 'index': 1, 'labels': 5, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc01c460> parameter: {'enable_cub': False, 'index': 1, 'labels': 5, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_226_{enable_cub=False, index='all', labels=None, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc030df0> parameter: {'enable_cub': False, 'index': 'all', 'labels': None, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc030df0> parameter: {'enable_cub': False, 'index': 'all', 'labels': None, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_227_{enable_cub=False, index='all', labels=None, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc0193a0> parameter: {'enable_cub': False, 'index': 'all', 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc0193a0> parameter: {'enable_cub': False, 'index': 'all', 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_262_{enable_cub=False, index='subset', labels=None, op='extrema', shape=(512,)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc0721c0> parameter: {'enable_cub': False, 'index': 'subset', 'labels': None, 'op': 'extrema', 'shape': (512,)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc0721c0> parameter: {'enable_cub': False, 'index': 'subset', 'labels': None, 'op': 'extrema', 'shape': (512,)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_263_{enable_cub=False, index='subset', labels=None, op='extrema', shape=(32, 64)}] | 0.00 | |
|
self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc030ca0> parameter: {'enable_cub': False, 'index': 'subset', 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_complex=True, no_bool=True) @testing.numpy_cupy_allclose(scipy_name='scp') def test_measurements_select(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<cupyx_tests.scipy_tests.ndimage_tests.test_measurements.TestMeasurementsSelect object at 0x7f1edc030ca0> parameter: {'enable_cub': False, 'index': 'subset', 'labels': None, 'op': 'extrema', 'shape': (32, 64)}> def _hip_skip_invalid_condition(self): if (runtime.is_hip and self.op == 'extrema' and (self.index is None or (self.index == 1 and self.labels in [None, 5]) or (self.index in ['all', 'subset'] and self.labels is None))): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py:320: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_13_{mode='full', size1=(3, 4, 10), size2=4}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf3512e0> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 4}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_fftconvolve(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:73: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf3512e0> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 4}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_14_{mode='full', size1=(3, 4, 10), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf28aa90> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_fftconvolve(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:73: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf28aa90> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 5}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_15_{mode='full', size1=(3, 4, 10), size2=10}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf363730> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 10}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_fftconvolve(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:73: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf363730> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 10}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_28_{mode='same', size1=(3, 4, 10), size2=3}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf2c0c40> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 3}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_fftconvolve(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:73: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf2c0c40> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 3}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_29_{mode='same', size1=(3, 4, 10), size2=4}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf878760> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 4}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_fftconvolve(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:73: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf878760> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 4}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_30_{mode='same', size1=(3, 4, 10), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf363fd0> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_fftconvolve(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:73: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf363fd0> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 5}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_31_{mode='same', size1=(3, 4, 10), size2=10}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf28a340> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 10}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_fftconvolve(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:73: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf28a340> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 10}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_47_{mode='valid', size1=(3, 4, 10), size2=10}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf2a2fa0> parameter: {'mode': 'valid', 'size1': (3, 4, 10), 'size2': 10}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_fftconvolve(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:73: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf2a2fa0> parameter: {'mode': 'valid', 'size1': (3, 4, 10), 'size2': 10}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_13_{mode='full', size1=(3, 4, 10), size2=4}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf37acd0> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 4}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_convolve_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:80: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf37acd0> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 4}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_14_{mode='full', size1=(3, 4, 10), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf246640> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_convolve_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:80: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf246640> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 5}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_15_{mode='full', size1=(3, 4, 10), size2=10}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf361a30> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 10}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_convolve_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:80: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf361a30> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 10}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_28_{mode='same', size1=(3, 4, 10), size2=3}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf34b4f0> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 3}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_convolve_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:80: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf34b4f0> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 3}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_29_{mode='same', size1=(3, 4, 10), size2=4}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf2a2070> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 4}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_convolve_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:80: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf2a2070> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 4}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_30_{mode='same', size1=(3, 4, 10), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf296ca0> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_convolve_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:80: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf296ca0> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 5}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_31_{mode='same', size1=(3, 4, 10), size2=10}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf246610> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 10}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_convolve_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:80: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf246610> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 10}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_47_{mode='valid', size1=(3, 4, 10), size2=10}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ee05e15e0> parameter: {'mode': 'valid', 'size1': (3, 4, 10), 'size2': 10}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_convolve_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:80: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ee05e15e0> parameter: {'mode': 'valid', 'size1': (3, 4, 10), 'size2': 10}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_13_{mode='full', size1=(3, 4, 10), size2=4}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ed08e39d0> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 4}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_correlate_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:87: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ed08e39d0> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 4}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_14_{mode='full', size1=(3, 4, 10), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecff8ddc0> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_correlate_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:87: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecff8ddc0> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 5}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_15_{mode='full', size1=(3, 4, 10), size2=10}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf361a60> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 10}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_correlate_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:87: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf361a60> parameter: {'mode': 'full', 'size1': (3, 4, 10), 'size2': 10}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_28_{mode='same', size1=(3, 4, 10), size2=3}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf2c2df0> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 3}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_correlate_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:87: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ecf2c2df0> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 3}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_29_{mode='same', size1=(3, 4, 10), size2=4}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ed905b2e0> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 4}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_correlate_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:87: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ed905b2e0> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 4}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_30_{mode='same', size1=(3, 4, 10), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f1ed904f040> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_correlate_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:87: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f1ed904f040> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 5}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_31_{mode='same', size1=(3, 4, 10), size2=10}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f211c1e8130> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 10}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_correlate_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:87: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f211c1e8130> parameter: {'mode': 'same', 'size1': (3, 4, 10), 'size2': 10}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_47_{mode='valid', size1=(3, 4, 10), size2=10}] | 0.00 | |
|
self = <<test_signaltools.TestFFTConvolve object at 0x7f2112b472b0> parameter: {'mode': 'valid', 'size1': (3, 4, 10), 'size2': 10}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes(no_bool=True) @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_correlate_fft(self, xp, scp, dtype): > self._hip_skip_invalid_condition() tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:87: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <<test_signaltools.TestFFTConvolve object at 0x7f2112b472b0> parameter: {'mode': 'valid', 'size1': (3, 4, 10), 'size2': 10}> def _hip_skip_invalid_condition(self): invalid_condition = [ ('full', 4), ('full', 5), ('full', 10), ('same', 3), ('same', 4), ('same', 5), ('same', 10), ('valid', 10)] if (runtime.is_hip and self.size1 == (3, 4, 10) and (self.mode, self.size2) in invalid_condition): > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:67: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_2_{mode='full', size1=(10,), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1ecf31c280> parameter: {'mode': 'full', 'size1': (10,), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_4_{mode='full', size1=(10,), size2=None}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1edc10ca00> parameter: {'mode': 'full', 'size1': (10,), 'size2': None}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_7_{mode='full', size1=(5, 10), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1edc1514c0> parameter: {'mode': 'full', 'size1': (5, 10), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_9_{mode='full', size1=(5, 10), size2=None}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1edc203dc0> parameter: {'mode': 'full', 'size1': (5, 10), 'size2': None}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_12_{mode='full', size1=(10, 3), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1ecf88c520> parameter: {'mode': 'full', 'size1': (10, 3), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_14_{mode='full', size1=(10, 3), size2=None}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f211d2d0250> parameter: {'mode': 'full', 'size1': (10, 3), 'size2': None}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_17_{mode='full', size1=(3, 10, 15), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1ed0dc4f40> parameter: {'mode': 'full', 'size1': (3, 10, 15), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_19_{mode='full', size1=(3, 10, 15), size2=None}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1ed0daf1c0> parameter: {'mode': 'full', 'size1': (3, 10, 15), 'size2': None}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_22_{mode='same', size1=(10,), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1edd25e8e0> parameter: {'mode': 'same', 'size1': (10,), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_24_{mode='same', size1=(10,), size2=None}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1eddf14d90> parameter: {'mode': 'same', 'size1': (10,), 'size2': None}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_27_{mode='same', size1=(5, 10), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1eddbd4370> parameter: {'mode': 'same', 'size1': (5, 10), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_29_{mode='same', size1=(5, 10), size2=None}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f211d0cea90> parameter: {'mode': 'same', 'size1': (5, 10), 'size2': None}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_32_{mode='same', size1=(10, 3), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1ededabb50> parameter: {'mode': 'same', 'size1': (10, 3), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_34_{mode='same', size1=(10, 3), size2=None}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f2112adb040> parameter: {'mode': 'same', 'size1': (10, 3), 'size2': None}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_37_{mode='same', size1=(3, 10, 15), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1edf00e7f0> parameter: {'mode': 'same', 'size1': (3, 10, 15), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_39_{mode='same', size1=(3, 10, 15), size2=None}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1ee23e6280> parameter: {'mode': 'same', 'size1': (3, 10, 15), 'size2': None}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_42_{mode='valid', size1=(10,), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1eddbd9520> parameter: {'mode': 'valid', 'size1': (10,), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_44_{mode='valid', size1=(10,), size2=None}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1ee15a7b50> parameter: {'mode': 'valid', 'size1': (10,), 'size2': None}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_47_{mode='valid', size1=(5, 10), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1edf0f3be0> parameter: {'mode': 'valid', 'size1': (5, 10), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_49_{mode='valid', size1=(5, 10), size2=None}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1ee12ab0d0> parameter: {'mode': 'valid', 'size1': (5, 10), 'size2': None}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_52_{mode='valid', size1=(10, 3), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f2112a68ac0> parameter: {'mode': 'valid', 'size1': (10, 3), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_54_{mode='valid', size1=(10, 3), size2=None}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1edd8722e0> parameter: {'mode': 'valid', 'size1': (10, 3), 'size2': None}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_57_{mode='valid', size1=(3, 10, 15), size2=5}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1edf5e9bb0> parameter: {'mode': 'valid', 'size1': (3, 10, 15), 'size2': 5}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_59_{mode='valid', size1=(3, 10, 15), size2=None}] | 0.00 | |
|
self = <<test_signaltools.TestOAConvolve object at 0x7f1edd87e940> parameter: {'mode': 'valid', 'size1': (3, 10, 15), 'size2': None}> xp = <module 'cupy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupy/__init__.py'> scp = <module 'cupyx.scipy' from '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/cupyx/scipy/__init__.py'> dtype = <class 'numpy.float64'> @testing.for_all_dtypes() @testing.numpy_cupy_allclose(atol=tols, rtol=tols, scipy_name='scp', accept_error=ValueError) def test_oaconvolve(self, xp, scp, dtype): if runtime.is_hip and self.size2 in [5, None]: > pytest.xfail('ROCm/HIP may have a bug') E _pytest.outcomes.XFailed: ROCm/HIP may have a bug tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py:162: XFailed | |||
| XFailed | tests/install_tests/test_build.py::TestCheckVersion::test_check_cudnn_version | 0.08 | |
|
self = <install_tests.test_build.TestCheckVersion testMethod=test_check_cudnn_version> @pytest.mark.gpu @pytest.mark.cudnn @pytest.mark.xfail(build.use_hip, reason='ROCm/HIP DNN support is not ready') def test_check_cudnn_version(self): with self.assertRaises(RuntimeError): build.get_cudnn_version() > assert build.check_cudnn_version( self.compiler, self.settings) E AssertionError: assert False E + where False = <function check_cudnn_version at 0x7f21126b8ca0>(<distutils.unixccompiler.UnixCCompiler object at 0x7f1ec9f3d370>, {'define_macros': [], 'extra_compile_args': [], 'include_dirs': ['/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnI..., '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/install/../cupy/_core/include'], 'language': 'c++', ...}) E + where <function check_cudnn_version at 0x7f21126b8ca0> = build.check_cudnn_version E + and <distutils.unixccompiler.UnixCCompiler object at 0x7f1ec9f3d370> = <install_tests.test_build.TestCheckVersion testMethod=test_check_cudnn_version>.compiler E + and {'define_macros': [], 'extra_compile_args': [], 'include_dirs': ['/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnI..., '/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/install/../cupy/_core/include'], 'language': 'c++', ...} = <install_tests.test_build.TestCheckVersion testMethod=test_check_cudnn_version>.settings tests/install_tests/test_build.py:47: AssertionError ------------------------------Captured stdout call------------------------------ ************************************************** *** WARNING: Cannot check cuDNN version command 'gcc' failed with exit status 1 ************************************************** ------------------------------Captured stderr call------------------------------ /tmp/tmpiui2pue9/a.cpp:2:18: fatal error: cudnn.h: No such file or directory #include <cudnn.h> ^~~~~~~~~ compilation terminated. | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnActivation::test_activation_forward[_cupy_testing_param0] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 52, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnActivation::test_activation_backward[_cupy_testing_param0] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 55, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnActivationCoef::test_activation_forward[_cupy_testing_param0] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 73, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnActivationCoef::test_activation_backward[_cupy_testing_param0] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 76, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_0_{dtype=float32, ratio=0.0, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_1_{dtype=float32, ratio=0.0, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_2_{dtype=float32, ratio=0.1, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_3_{dtype=float32, ratio=0.1, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_4_{dtype=float32, ratio=0.2, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_5_{dtype=float32, ratio=0.2, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_6_{dtype=float32, ratio=0.5, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_7_{dtype=float32, ratio=0.5, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_8_{dtype=float64, ratio=0.0, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_9_{dtype=float64, ratio=0.0, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_10_{dtype=float64, ratio=0.1, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_11_{dtype=float64, ratio=0.1, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_12_{dtype=float64, ratio=0.2, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_13_{dtype=float64, ratio=0.2, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_14_{dtype=float64, ratio=0.5, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_forward[_param_15_{dtype=float64, ratio=0.5, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 95, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_0_{dtype=float32, ratio=0.0, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_1_{dtype=float32, ratio=0.0, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_2_{dtype=float32, ratio=0.1, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_3_{dtype=float32, ratio=0.1, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_4_{dtype=float32, ratio=0.2, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_5_{dtype=float32, ratio=0.2, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_6_{dtype=float32, ratio=0.5, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_7_{dtype=float32, ratio=0.5, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_8_{dtype=float64, ratio=0.0, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_9_{dtype=float64, ratio=0.0, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_10_{dtype=float64, ratio=0.1, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_11_{dtype=float64, ratio=0.1, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_12_{dtype=float64, ratio=0.2, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_13_{dtype=float64, ratio=0.2, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_14_{dtype=float64, ratio=0.5, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_backward[_param_15_{dtype=float64, ratio=0.5, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 102, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_0_{dtype=float32, ratio=0.0, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_1_{dtype=float32, ratio=0.0, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_2_{dtype=float32, ratio=0.1, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_3_{dtype=float32, ratio=0.1, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_4_{dtype=float32, ratio=0.2, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_5_{dtype=float32, ratio=0.2, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_6_{dtype=float32, ratio=0.5, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_7_{dtype=float32, ratio=0.5, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_8_{dtype=float64, ratio=0.0, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_9_{dtype=float64, ratio=0.0, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_10_{dtype=float64, ratio=0.1, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_11_{dtype=float64, ratio=0.1, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_12_{dtype=float64, ratio=0.2, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_13_{dtype=float64, ratio=0.2, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_14_{dtype=float64, ratio=0.5, seed=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestCudnnDropout::test_dropout_seed[_param_15_{dtype=float64, ratio=0.5, seed=100}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 113, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionForward::test_call[_cupy_testing_param0] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 200, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_0_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_1_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_2_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_3_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_4_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_5_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_6_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_7_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_8_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_9_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_10_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_11_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_12_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_13_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_14_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_15_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_16_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_17_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_18_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_19_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_20_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_21_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_22_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_23_{auto_tune=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_24_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_25_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_26_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_27_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_28_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_29_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_30_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_31_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_32_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_33_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_34_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_35_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_36_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_37_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_38_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_39_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_40_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_41_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_42_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_43_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_44_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_45_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_46_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_47_{auto_tune=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_48_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_49_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_50_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_51_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_52_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_53_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_54_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_55_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_56_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_57_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_58_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_59_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_60_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_61_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_62_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_63_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_64_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_65_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_66_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_67_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_68_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_69_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_70_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_71_{auto_tune=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_72_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_73_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_74_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_75_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_76_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_77_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_78_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_79_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_80_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_81_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_82_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_83_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_84_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_85_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_86_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_87_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_88_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_89_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_90_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_91_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_92_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_93_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_94_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_95_{auto_tune=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_96_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_97_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_98_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_99_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_100_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_101_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_102_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_103_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_104_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_105_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_106_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_107_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_108_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_109_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_110_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_111_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_112_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_113_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_114_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_115_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_116_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_117_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_118_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_119_{auto_tune=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_120_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_121_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_122_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_123_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_124_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_125_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_126_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_127_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_128_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_129_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_130_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_131_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_132_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_133_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_134_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_135_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_136_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_137_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_138_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_139_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_140_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_141_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_142_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_143_{auto_tune=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_144_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_145_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_146_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_147_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_148_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_149_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_150_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_151_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_152_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_153_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_154_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_155_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_156_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_157_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_158_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_159_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_160_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_161_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_162_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_163_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_164_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_165_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_166_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_167_{auto_tune=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_168_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_169_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_170_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_171_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_172_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_173_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_174_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_175_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_176_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_177_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_178_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_179_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_180_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_181_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_182_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_183_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_184_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_185_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_186_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_187_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_188_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_189_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_190_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_191_{auto_tune=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_192_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_193_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_194_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_195_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_196_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_197_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_198_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_199_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_200_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_201_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_202_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_203_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_204_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_205_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_206_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_207_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_208_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_209_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_210_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_211_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_212_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_213_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_214_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_215_{auto_tune=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_216_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_217_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_218_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_219_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_220_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_221_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_222_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_223_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_224_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_225_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_226_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_227_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_228_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_229_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_230_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_231_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_232_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_233_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_234_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_235_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_236_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_237_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_238_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_239_{auto_tune=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_240_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_241_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_242_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_243_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_244_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_245_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_246_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_247_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_248_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_249_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_250_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_251_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_252_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_253_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_254_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_255_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_256_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_257_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_258_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_259_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_260_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_261_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_262_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_263_{auto_tune=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_264_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_265_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_266_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_267_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_268_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_269_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_270_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_271_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_272_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_273_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_274_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_275_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_276_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_277_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_278_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_279_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_280_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_281_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_282_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_283_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_284_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_285_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_286_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_287_{auto_tune=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_288_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_289_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_290_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_291_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_292_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_293_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_294_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_295_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_296_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_297_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_298_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_299_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_300_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_301_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_302_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_303_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_304_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_305_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_306_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_307_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_308_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_309_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_310_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_311_{auto_tune=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_312_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_313_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_314_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_315_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_316_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_317_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_318_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_319_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_320_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_321_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_322_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_323_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_324_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_325_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_326_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_327_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_328_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_329_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_330_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_331_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_332_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_333_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_334_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_335_{auto_tune=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_336_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_337_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_338_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_339_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_340_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_341_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_342_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_343_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_344_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_345_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_346_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_347_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_348_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_349_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_350_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_351_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_352_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_353_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_354_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_355_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_356_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_357_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_358_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_359_{auto_tune=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_360_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_361_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_362_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_363_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_364_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_365_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_366_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_367_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_368_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_369_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_370_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_371_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_372_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_373_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_374_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_375_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_376_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_377_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_378_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_379_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_380_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_381_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_382_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_383_{auto_tune=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_384_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_385_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_386_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_387_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_388_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_389_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_390_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_391_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_392_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_393_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_394_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_395_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_396_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_397_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_398_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_399_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_400_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_401_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_402_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_403_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_404_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_405_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_406_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_407_{auto_tune=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_408_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_409_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_410_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_411_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_412_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_413_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_414_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_415_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_416_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_417_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_418_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_419_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_420_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_421_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_422_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_423_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_424_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_425_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_426_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_427_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_428_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_429_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_430_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_431_{auto_tune=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_432_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_433_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_434_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_435_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_436_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_437_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_438_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_439_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_440_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_441_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_442_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_443_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_444_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_445_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_446_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_447_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_448_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_449_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_450_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_451_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_452_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_453_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_454_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_455_{auto_tune=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_456_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_457_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_458_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_459_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_460_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_461_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_462_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_463_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_464_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_465_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_466_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_467_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_468_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_469_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_470_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_471_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_472_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_473_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_474_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_475_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_476_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_477_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_478_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_479_{auto_tune=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_480_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_481_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_482_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_483_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_484_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_485_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_486_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_487_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_488_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_489_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_490_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_491_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_492_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_493_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_494_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_495_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_496_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_497_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_498_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_499_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_500_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_501_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_502_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_503_{auto_tune=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_504_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_505_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_506_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_507_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_508_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_509_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_510_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_511_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_512_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_513_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_514_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_515_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_516_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_517_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_518_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_519_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_520_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_521_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_522_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_523_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_524_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_525_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_526_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_527_{auto_tune=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_528_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_529_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_530_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_531_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_532_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_533_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_534_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_535_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_536_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_537_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_538_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_539_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_540_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_541_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_542_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_543_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_544_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_545_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_546_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_547_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_548_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_549_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_550_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_551_{auto_tune=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_552_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_553_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_554_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_555_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_556_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_557_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_558_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_559_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_560_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_561_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_562_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_563_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_564_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_565_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_566_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_567_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_568_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_569_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_570_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_571_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_572_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_573_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_574_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardFilter::test_call[_param_575_{auto_tune=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 283, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_0_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_2_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_3_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_4_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_5_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_6_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_7_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_8_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_9_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_10_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_11_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_12_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_13_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_14_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_15_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_16_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_17_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_18_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_19_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_20_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_21_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_22_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_23_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_24_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_25_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_26_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_27_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_28_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_29_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_30_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_31_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_32_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_33_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_34_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_35_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_36_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_37_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_38_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_39_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_40_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_41_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_42_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_43_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_44_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_45_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_46_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_47_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_48_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_49_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_50_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_51_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_52_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_53_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_54_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_55_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_56_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_57_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_58_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_59_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_60_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_61_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_62_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_63_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_64_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_65_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_66_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_67_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_68_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_69_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_70_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_71_{auto_tune=True, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_72_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_73_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_74_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_75_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_76_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_77_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_78_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_79_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_80_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_81_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_82_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_83_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_84_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_85_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_86_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_87_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_88_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_89_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_90_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_91_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_92_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_93_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_94_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_95_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_96_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_97_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_98_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_99_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_100_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_101_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_102_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_103_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_104_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_105_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_106_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_107_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_108_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_109_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_110_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_111_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_112_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_113_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_114_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_115_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_116_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_117_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_118_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_119_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_120_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_121_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_122_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_123_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_124_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_125_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_126_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_127_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_128_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_129_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_130_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_131_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_132_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_133_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_134_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_135_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_136_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_137_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_138_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_139_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_140_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_141_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_142_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_143_{auto_tune=True, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_144_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_145_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_146_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_147_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_148_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_149_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_150_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_151_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_152_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_153_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_154_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_155_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_156_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_157_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_158_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_159_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_160_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_161_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_162_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_163_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_164_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_165_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_166_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_167_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_168_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_169_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_170_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_171_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_172_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_173_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_174_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_175_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_176_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_177_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_178_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_179_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_180_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_181_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_182_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_183_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_184_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_185_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_186_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_187_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_188_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_189_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_190_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_191_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_192_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_193_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_194_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_195_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_196_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_197_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_198_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_199_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_200_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_201_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_202_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_203_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_204_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_205_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_206_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_207_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_208_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_209_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_210_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_211_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_212_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_213_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_214_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_215_{auto_tune=True, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_216_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_217_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_218_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_219_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_220_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_221_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_222_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_223_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_224_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_225_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_226_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_227_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_228_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_229_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_230_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_231_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_232_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_233_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_234_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_235_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_236_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_237_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_238_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_239_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_240_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_241_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_242_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_243_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_244_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_245_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_246_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_247_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_248_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_249_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_250_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_251_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_252_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_253_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_254_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_255_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_256_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_257_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_258_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_259_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_260_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_261_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_262_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_263_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_264_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_265_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_266_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_267_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_268_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_269_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_270_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_271_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_272_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_273_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_274_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_275_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_276_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_277_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_278_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_279_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_280_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_281_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_282_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_283_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_284_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_285_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_286_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_287_{auto_tune=True, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_288_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_289_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_290_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_291_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_292_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_293_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_294_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_295_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_296_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_297_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_298_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_299_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_300_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_301_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_302_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_303_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_304_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_305_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_306_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_307_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_308_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_309_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_310_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_311_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_312_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_313_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_314_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_315_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_316_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_317_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_318_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_319_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_320_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_321_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_322_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_323_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_324_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_325_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_326_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_327_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_328_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_329_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_330_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_331_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_332_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_333_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_334_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_335_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_336_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_337_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_338_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_339_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_340_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_341_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_342_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_343_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_344_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_345_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_346_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_347_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_348_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_349_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_350_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_351_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_352_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_353_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_354_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_355_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_356_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_357_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_358_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_359_{auto_tune=True, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_360_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_361_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_362_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_363_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_364_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_365_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_366_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_367_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_368_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_369_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_370_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_371_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_372_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_373_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_374_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_375_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_376_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_377_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_378_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_379_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_380_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_381_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_382_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_383_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_384_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_385_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_386_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_387_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_388_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_389_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_390_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_391_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_392_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_393_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_394_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_395_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_396_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_397_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_398_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_399_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_400_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_401_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_402_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_403_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_404_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_405_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_406_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_407_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_408_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_409_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_410_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_411_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_412_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_413_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_414_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_415_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_416_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_417_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_418_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_419_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_420_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_421_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_422_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_423_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_424_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_425_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_426_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_427_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_428_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_429_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_430_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_431_{auto_tune=True, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_432_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_433_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_434_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_435_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_436_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_437_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_438_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_439_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_440_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_441_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_442_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_443_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_444_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_445_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_446_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_447_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_448_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_449_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_450_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_451_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_452_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_453_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_454_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_455_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_456_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_457_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_458_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_459_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_460_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_461_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_462_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_463_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_464_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_465_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_466_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_467_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_468_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_469_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_470_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_471_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_472_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_473_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_474_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_475_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_476_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_477_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_478_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_479_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_480_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_481_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_482_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_483_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_484_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_485_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_486_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_487_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_488_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_489_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_490_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_491_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_492_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_493_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_494_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_495_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_496_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_497_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_498_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_499_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_500_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_501_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_502_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_503_{auto_tune=True, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_504_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_505_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_506_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_507_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_508_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_509_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_510_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_511_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_512_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_513_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_514_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_515_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_516_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_517_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_518_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_519_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_520_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_521_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_522_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_523_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_524_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_525_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_526_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_527_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_528_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_529_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_530_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_531_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_532_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_533_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_534_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_535_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_536_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_537_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_538_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_539_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_540_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_541_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_542_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_543_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_544_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_545_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_546_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_547_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_548_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_549_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_550_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_551_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_552_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_553_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_554_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_555_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_556_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_557_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_558_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_559_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_560_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_561_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_562_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_563_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_564_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_565_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_566_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_567_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_568_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_569_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_570_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_571_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_572_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_573_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_574_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_575_{auto_tune=True, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_576_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_577_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_578_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_579_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_580_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_581_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_582_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_583_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_584_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_585_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_586_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_587_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_588_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_589_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_590_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_591_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_592_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_593_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_594_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_595_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_596_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_597_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_598_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_599_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_600_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_601_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_602_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_603_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_604_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_605_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_606_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_607_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_608_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_609_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_610_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_611_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_612_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_613_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_614_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_615_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_616_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_617_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_618_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_619_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_620_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_621_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_622_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_623_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_624_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_625_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_626_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_627_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_628_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_629_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_630_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_631_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_632_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_633_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_634_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_635_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_636_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_637_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_638_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_639_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_640_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_641_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_642_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_643_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_644_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_645_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_646_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_647_{auto_tune=False, bias=True, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_648_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_649_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_650_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_651_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_652_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_653_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_654_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_655_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_656_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_657_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_658_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_659_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_660_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_661_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_662_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_663_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_664_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_665_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_666_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_667_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_668_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_669_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_670_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_671_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_672_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_673_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_674_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_675_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_676_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_677_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_678_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_679_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_680_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_681_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_682_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_683_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_684_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_685_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_686_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_687_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_688_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_689_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_690_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_691_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_692_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_693_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_694_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_695_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_696_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_697_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_698_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_699_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_700_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_701_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_702_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_703_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_704_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_705_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_706_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_707_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_708_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_709_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_710_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_711_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_712_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_713_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_714_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_715_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_716_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_717_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_718_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_719_{auto_tune=False, bias=True, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_720_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_721_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_722_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_723_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_724_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_725_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_726_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_727_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_728_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_729_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_730_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_731_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_732_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_733_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_734_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_735_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_736_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_737_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_738_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_739_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_740_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_741_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_742_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_743_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_744_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_745_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_746_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_747_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_748_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_749_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_750_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_751_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_752_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_753_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_754_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_755_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_756_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_757_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_758_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_759_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_760_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_761_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_762_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_763_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_764_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_765_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_766_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_767_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_768_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_769_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_770_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_771_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_772_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_773_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_774_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_775_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_776_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_777_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_778_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_779_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_780_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_781_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_782_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_783_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_784_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_785_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_786_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_787_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_788_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_789_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_790_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_791_{auto_tune=False, bias=True, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_792_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_793_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_794_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_795_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_796_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_797_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_798_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_799_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_800_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_801_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_802_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_803_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_804_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_805_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_806_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_807_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_808_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_809_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_810_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_811_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_812_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_813_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_814_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_815_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_816_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_817_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_818_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_819_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_820_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_821_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_822_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_823_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_824_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_825_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_826_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_827_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_828_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_829_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_830_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_831_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_832_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_833_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_834_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_835_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_836_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_837_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_838_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_839_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_840_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_841_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_842_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_843_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_844_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_845_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_846_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_847_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_848_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_849_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_850_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_851_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_852_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_853_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_854_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_855_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_856_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_857_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_858_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_859_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_860_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_861_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_862_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_863_{auto_tune=False, bias=True, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_864_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_865_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_866_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_867_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_868_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_869_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_870_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_871_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_872_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_873_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_874_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_875_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_876_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_877_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_878_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_879_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_880_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_881_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_882_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_883_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_884_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_885_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_886_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_887_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_888_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_889_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_890_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_891_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_892_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_893_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_894_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_895_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_896_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_897_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_898_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_899_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_900_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_901_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_902_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_903_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_904_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_905_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_906_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_907_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_908_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_909_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_910_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_911_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_912_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_913_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_914_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_915_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_916_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_917_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_918_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_919_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_920_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_921_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_922_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_923_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_924_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_925_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_926_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_927_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_928_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_929_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_930_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_931_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_932_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_933_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_934_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_935_{auto_tune=False, bias=False, deterministic=True, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_936_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_937_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_938_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_939_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_940_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_941_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_942_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_943_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_944_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_945_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_946_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_947_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_948_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_949_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_950_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_951_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_952_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_953_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_954_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_955_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_956_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_957_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_958_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_959_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_960_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_961_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_962_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_963_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_964_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_965_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_966_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_967_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_968_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_969_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_970_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_971_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_972_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_973_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_974_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_975_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_976_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_977_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_978_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_979_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_980_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_981_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_982_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_983_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_984_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_985_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_986_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_987_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_988_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_989_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_990_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_991_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_992_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_993_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_994_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_995_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_996_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_997_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_998_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_999_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1000_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1001_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1002_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1003_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1004_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1005_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1006_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1007_{auto_tune=False, bias=False, deterministic=True, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1008_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1009_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1010_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1011_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1012_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1013_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1014_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1015_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1016_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1017_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1018_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1019_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1020_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1021_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1022_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1023_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1024_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1025_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1026_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1027_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1028_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1029_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1030_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1031_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1032_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1033_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1034_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1035_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1036_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1037_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1038_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1039_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1040_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1041_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1042_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1043_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1044_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1045_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1046_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1047_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1048_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1049_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1050_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1051_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1052_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1053_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1054_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1055_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1056_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1057_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1058_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1059_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1060_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1061_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1062_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1063_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1064_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1065_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1066_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1067_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1068_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1069_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1070_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1071_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1072_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1073_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1074_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1075_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1076_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1077_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1078_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1079_{auto_tune=False, bias=False, deterministic=False, dilate=1, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1080_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1081_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1082_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1083_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1084_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1085_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1086_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1087_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1088_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1089_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1090_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1091_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1092_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1093_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1094_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1095_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1096_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1097_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1098_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1099_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1100_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1101_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1102_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1103_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float16, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1104_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1105_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1106_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1107_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1108_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1109_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1110_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1111_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1112_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1113_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1114_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1115_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1116_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1117_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1118_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1119_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1120_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1121_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1122_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1123_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1124_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1125_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1126_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1127_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float32, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1128_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1129_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1130_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1131_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1132_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1133_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1134_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1135_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1136_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1137_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1138_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1139_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=1, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1140_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1141_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1142_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1143_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1144_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1145_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=0, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1146_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1147_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1148_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=2, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1149_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='always'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1150_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='auto'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionBackwardData::test_call[_param_1151_{auto_tune=False, bias=False, deterministic=False, dilate=2, dtype=float64, groups=2, max_workspace_size=4194304, ndim=3, tensor_core='never'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 370, 'Skipped: cuDNN is not available') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_0_{auto_tune=True, dtype=float32, ksize=1, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_1_{auto_tune=True, dtype=float32, ksize=1, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_2_{auto_tune=True, dtype=float32, ksize=3, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_3_{auto_tune=True, dtype=float32, ksize=3, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_4_{auto_tune=True, dtype=float32, ksize=5, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_5_{auto_tune=True, dtype=float32, ksize=5, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_6_{auto_tune=True, dtype=float64, ksize=1, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_7_{auto_tune=True, dtype=float64, ksize=1, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_8_{auto_tune=True, dtype=float64, ksize=3, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_9_{auto_tune=True, dtype=float64, ksize=3, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_10_{auto_tune=True, dtype=float64, ksize=5, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_11_{auto_tune=True, dtype=float64, ksize=5, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_12_{auto_tune=False, dtype=float32, ksize=1, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_13_{auto_tune=False, dtype=float32, ksize=1, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_14_{auto_tune=False, dtype=float32, ksize=3, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_15_{auto_tune=False, dtype=float32, ksize=3, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_16_{auto_tune=False, dtype=float32, ksize=5, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_17_{auto_tune=False, dtype=float32, ksize=5, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_18_{auto_tune=False, dtype=float64, ksize=1, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_19_{auto_tune=False, dtype=float64, ksize=1, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_20_{auto_tune=False, dtype=float64, ksize=3, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_21_{auto_tune=False, dtype=float64, ksize=3, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_22_{auto_tune=False, dtype=float64, ksize=5, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_filter[_param_23_{auto_tune=False, dtype=float64, ksize=5, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 430, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_0_{auto_tune=True, dtype=float32, ksize=1, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_1_{auto_tune=True, dtype=float32, ksize=1, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_2_{auto_tune=True, dtype=float32, ksize=3, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_3_{auto_tune=True, dtype=float32, ksize=3, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_4_{auto_tune=True, dtype=float32, ksize=5, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_5_{auto_tune=True, dtype=float32, ksize=5, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_6_{auto_tune=True, dtype=float64, ksize=1, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_7_{auto_tune=True, dtype=float64, ksize=1, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_8_{auto_tune=True, dtype=float64, ksize=3, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_9_{auto_tune=True, dtype=float64, ksize=3, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_10_{auto_tune=True, dtype=float64, ksize=5, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_11_{auto_tune=True, dtype=float64, ksize=5, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_12_{auto_tune=False, dtype=float32, ksize=1, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_13_{auto_tune=False, dtype=float32, ksize=1, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_14_{auto_tune=False, dtype=float32, ksize=3, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_15_{auto_tune=False, dtype=float32, ksize=3, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_16_{auto_tune=False, dtype=float32, ksize=5, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_17_{auto_tune=False, dtype=float32, ksize=5, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_18_{auto_tune=False, dtype=float64, ksize=1, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_19_{auto_tune=False, dtype=float64, ksize=1, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_20_{auto_tune=False, dtype=float64, ksize=3, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_21_{auto_tune=False, dtype=float64, ksize=3, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_22_{auto_tune=False, dtype=float64, ksize=5, stride=2}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cudnn.py::TestConvolutionNoAvailableAlgorithm::test_backward_data[_param_23_{auto_tune=False, dtype=float64, ksize=5, stride=4}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cudnn.py', 442, 'Skipped: cuDNN 7.x (x >= 5) is required') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_0_{dtype=float32, full_matrices=True, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_1_{dtype=float32, full_matrices=True, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_2_{dtype=float32, full_matrices=True, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_3_{dtype=float32, full_matrices=True, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_4_{dtype=float32, full_matrices=True, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_5_{dtype=float32, full_matrices=True, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_6_{dtype=float32, full_matrices=True, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_7_{dtype=float32, full_matrices=True, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_8_{dtype=float32, full_matrices=True, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_9_{dtype=float32, full_matrices=True, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_10_{dtype=float32, full_matrices=True, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_11_{dtype=float32, full_matrices=True, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_12_{dtype=float32, full_matrices=True, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_13_{dtype=float32, full_matrices=True, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_14_{dtype=float32, full_matrices=True, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_15_{dtype=float32, full_matrices=True, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_16_{dtype=float32, full_matrices=True, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_17_{dtype=float32, full_matrices=True, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_18_{dtype=float32, full_matrices=True, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_19_{dtype=float32, full_matrices=True, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_20_{dtype=float32, full_matrices=True, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_21_{dtype=float32, full_matrices=True, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_22_{dtype=float32, full_matrices=True, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_23_{dtype=float32, full_matrices=True, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_24_{dtype=float32, full_matrices=False, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_25_{dtype=float32, full_matrices=False, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_26_{dtype=float32, full_matrices=False, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_27_{dtype=float32, full_matrices=False, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_28_{dtype=float32, full_matrices=False, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_29_{dtype=float32, full_matrices=False, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_30_{dtype=float32, full_matrices=False, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_31_{dtype=float32, full_matrices=False, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_32_{dtype=float32, full_matrices=False, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_33_{dtype=float32, full_matrices=False, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_34_{dtype=float32, full_matrices=False, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_35_{dtype=float32, full_matrices=False, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_36_{dtype=float32, full_matrices=False, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_37_{dtype=float32, full_matrices=False, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_38_{dtype=float32, full_matrices=False, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_39_{dtype=float32, full_matrices=False, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_40_{dtype=float32, full_matrices=False, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_41_{dtype=float32, full_matrices=False, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_42_{dtype=float32, full_matrices=False, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_43_{dtype=float32, full_matrices=False, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_44_{dtype=float32, full_matrices=False, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_45_{dtype=float32, full_matrices=False, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_46_{dtype=float32, full_matrices=False, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_47_{dtype=float32, full_matrices=False, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_48_{dtype=float64, full_matrices=True, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_49_{dtype=float64, full_matrices=True, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_50_{dtype=float64, full_matrices=True, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_51_{dtype=float64, full_matrices=True, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_52_{dtype=float64, full_matrices=True, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_53_{dtype=float64, full_matrices=True, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_54_{dtype=float64, full_matrices=True, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_55_{dtype=float64, full_matrices=True, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_56_{dtype=float64, full_matrices=True, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_57_{dtype=float64, full_matrices=True, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_58_{dtype=float64, full_matrices=True, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_59_{dtype=float64, full_matrices=True, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_60_{dtype=float64, full_matrices=True, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_61_{dtype=float64, full_matrices=True, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_62_{dtype=float64, full_matrices=True, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_63_{dtype=float64, full_matrices=True, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_64_{dtype=float64, full_matrices=True, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_65_{dtype=float64, full_matrices=True, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_66_{dtype=float64, full_matrices=True, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_67_{dtype=float64, full_matrices=True, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_68_{dtype=float64, full_matrices=True, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_69_{dtype=float64, full_matrices=True, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_70_{dtype=float64, full_matrices=True, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_71_{dtype=float64, full_matrices=True, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_72_{dtype=float64, full_matrices=False, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_73_{dtype=float64, full_matrices=False, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_74_{dtype=float64, full_matrices=False, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_75_{dtype=float64, full_matrices=False, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_76_{dtype=float64, full_matrices=False, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_77_{dtype=float64, full_matrices=False, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_78_{dtype=float64, full_matrices=False, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_79_{dtype=float64, full_matrices=False, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_80_{dtype=float64, full_matrices=False, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_81_{dtype=float64, full_matrices=False, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_82_{dtype=float64, full_matrices=False, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_83_{dtype=float64, full_matrices=False, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_84_{dtype=float64, full_matrices=False, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_85_{dtype=float64, full_matrices=False, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_86_{dtype=float64, full_matrices=False, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_87_{dtype=float64, full_matrices=False, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_88_{dtype=float64, full_matrices=False, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_89_{dtype=float64, full_matrices=False, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_90_{dtype=float64, full_matrices=False, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_91_{dtype=float64, full_matrices=False, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_92_{dtype=float64, full_matrices=False, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_93_{dtype=float64, full_matrices=False, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_94_{dtype=float64, full_matrices=False, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_95_{dtype=float64, full_matrices=False, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_96_{dtype=complex64, full_matrices=True, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_97_{dtype=complex64, full_matrices=True, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_98_{dtype=complex64, full_matrices=True, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_99_{dtype=complex64, full_matrices=True, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_100_{dtype=complex64, full_matrices=True, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_101_{dtype=complex64, full_matrices=True, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_102_{dtype=complex64, full_matrices=True, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_103_{dtype=complex64, full_matrices=True, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_104_{dtype=complex64, full_matrices=True, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_105_{dtype=complex64, full_matrices=True, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_106_{dtype=complex64, full_matrices=True, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_107_{dtype=complex64, full_matrices=True, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_108_{dtype=complex64, full_matrices=True, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_109_{dtype=complex64, full_matrices=True, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_110_{dtype=complex64, full_matrices=True, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_111_{dtype=complex64, full_matrices=True, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_112_{dtype=complex64, full_matrices=True, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_113_{dtype=complex64, full_matrices=True, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_114_{dtype=complex64, full_matrices=True, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_115_{dtype=complex64, full_matrices=True, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_116_{dtype=complex64, full_matrices=True, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_117_{dtype=complex64, full_matrices=True, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_118_{dtype=complex64, full_matrices=True, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_119_{dtype=complex64, full_matrices=True, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_120_{dtype=complex64, full_matrices=False, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_121_{dtype=complex64, full_matrices=False, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_122_{dtype=complex64, full_matrices=False, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_123_{dtype=complex64, full_matrices=False, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_124_{dtype=complex64, full_matrices=False, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_125_{dtype=complex64, full_matrices=False, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_126_{dtype=complex64, full_matrices=False, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_127_{dtype=complex64, full_matrices=False, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_128_{dtype=complex64, full_matrices=False, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_129_{dtype=complex64, full_matrices=False, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_130_{dtype=complex64, full_matrices=False, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_131_{dtype=complex64, full_matrices=False, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_132_{dtype=complex64, full_matrices=False, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_133_{dtype=complex64, full_matrices=False, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_134_{dtype=complex64, full_matrices=False, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_135_{dtype=complex64, full_matrices=False, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_136_{dtype=complex64, full_matrices=False, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_137_{dtype=complex64, full_matrices=False, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_138_{dtype=complex64, full_matrices=False, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_139_{dtype=complex64, full_matrices=False, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_140_{dtype=complex64, full_matrices=False, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_141_{dtype=complex64, full_matrices=False, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_142_{dtype=complex64, full_matrices=False, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_143_{dtype=complex64, full_matrices=False, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_144_{dtype=complex128, full_matrices=True, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_145_{dtype=complex128, full_matrices=True, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_146_{dtype=complex128, full_matrices=True, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_147_{dtype=complex128, full_matrices=True, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_148_{dtype=complex128, full_matrices=True, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_149_{dtype=complex128, full_matrices=True, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_150_{dtype=complex128, full_matrices=True, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_151_{dtype=complex128, full_matrices=True, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_152_{dtype=complex128, full_matrices=True, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_153_{dtype=complex128, full_matrices=True, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_154_{dtype=complex128, full_matrices=True, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_155_{dtype=complex128, full_matrices=True, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_156_{dtype=complex128, full_matrices=True, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_157_{dtype=complex128, full_matrices=True, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_158_{dtype=complex128, full_matrices=True, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_159_{dtype=complex128, full_matrices=True, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_160_{dtype=complex128, full_matrices=True, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_161_{dtype=complex128, full_matrices=True, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_162_{dtype=complex128, full_matrices=True, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_163_{dtype=complex128, full_matrices=True, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_164_{dtype=complex128, full_matrices=True, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_165_{dtype=complex128, full_matrices=True, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_166_{dtype=complex128, full_matrices=True, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_167_{dtype=complex128, full_matrices=True, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_168_{dtype=complex128, full_matrices=False, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_169_{dtype=complex128, full_matrices=False, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_170_{dtype=complex128, full_matrices=False, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_171_{dtype=complex128, full_matrices=False, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_172_{dtype=complex128, full_matrices=False, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_173_{dtype=complex128, full_matrices=False, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_174_{dtype=complex128, full_matrices=False, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_175_{dtype=complex128, full_matrices=False, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_176_{dtype=complex128, full_matrices=False, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_177_{dtype=complex128, full_matrices=False, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_178_{dtype=complex128, full_matrices=False, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_179_{dtype=complex128, full_matrices=False, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_180_{dtype=complex128, full_matrices=False, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_181_{dtype=complex128, full_matrices=False, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_182_{dtype=complex128, full_matrices=False, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_183_{dtype=complex128, full_matrices=False, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_184_{dtype=complex128, full_matrices=False, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_185_{dtype=complex128, full_matrices=False, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_186_{dtype=complex128, full_matrices=False, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_187_{dtype=complex128, full_matrices=False, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_188_{dtype=complex128, full_matrices=False, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_189_{dtype=complex128, full_matrices=False, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_190_{dtype=complex128, full_matrices=False, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj[_param_191_{dtype=complex128, full_matrices=False, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_0_{dtype=float32, full_matrices=True, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_1_{dtype=float32, full_matrices=True, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_2_{dtype=float32, full_matrices=True, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_3_{dtype=float32, full_matrices=True, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_4_{dtype=float32, full_matrices=True, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_5_{dtype=float32, full_matrices=True, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_6_{dtype=float32, full_matrices=True, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_7_{dtype=float32, full_matrices=True, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_8_{dtype=float32, full_matrices=True, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_9_{dtype=float32, full_matrices=True, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_10_{dtype=float32, full_matrices=True, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_11_{dtype=float32, full_matrices=True, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_12_{dtype=float32, full_matrices=True, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_13_{dtype=float32, full_matrices=True, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_14_{dtype=float32, full_matrices=True, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_15_{dtype=float32, full_matrices=True, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_16_{dtype=float32, full_matrices=True, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_17_{dtype=float32, full_matrices=True, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_18_{dtype=float32, full_matrices=True, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_19_{dtype=float32, full_matrices=True, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_20_{dtype=float32, full_matrices=True, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_21_{dtype=float32, full_matrices=True, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_22_{dtype=float32, full_matrices=True, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_23_{dtype=float32, full_matrices=True, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_24_{dtype=float32, full_matrices=False, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_25_{dtype=float32, full_matrices=False, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_26_{dtype=float32, full_matrices=False, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_27_{dtype=float32, full_matrices=False, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_28_{dtype=float32, full_matrices=False, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_29_{dtype=float32, full_matrices=False, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_30_{dtype=float32, full_matrices=False, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_31_{dtype=float32, full_matrices=False, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_32_{dtype=float32, full_matrices=False, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_33_{dtype=float32, full_matrices=False, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_34_{dtype=float32, full_matrices=False, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_35_{dtype=float32, full_matrices=False, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_36_{dtype=float32, full_matrices=False, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_37_{dtype=float32, full_matrices=False, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_38_{dtype=float32, full_matrices=False, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_39_{dtype=float32, full_matrices=False, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_40_{dtype=float32, full_matrices=False, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_41_{dtype=float32, full_matrices=False, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_42_{dtype=float32, full_matrices=False, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_43_{dtype=float32, full_matrices=False, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_44_{dtype=float32, full_matrices=False, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_45_{dtype=float32, full_matrices=False, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_46_{dtype=float32, full_matrices=False, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_47_{dtype=float32, full_matrices=False, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_48_{dtype=float64, full_matrices=True, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_49_{dtype=float64, full_matrices=True, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_50_{dtype=float64, full_matrices=True, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_51_{dtype=float64, full_matrices=True, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_52_{dtype=float64, full_matrices=True, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_53_{dtype=float64, full_matrices=True, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_54_{dtype=float64, full_matrices=True, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_55_{dtype=float64, full_matrices=True, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_56_{dtype=float64, full_matrices=True, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_57_{dtype=float64, full_matrices=True, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_58_{dtype=float64, full_matrices=True, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_59_{dtype=float64, full_matrices=True, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_60_{dtype=float64, full_matrices=True, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_61_{dtype=float64, full_matrices=True, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_62_{dtype=float64, full_matrices=True, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_63_{dtype=float64, full_matrices=True, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_64_{dtype=float64, full_matrices=True, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_65_{dtype=float64, full_matrices=True, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_66_{dtype=float64, full_matrices=True, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_67_{dtype=float64, full_matrices=True, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_68_{dtype=float64, full_matrices=True, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_69_{dtype=float64, full_matrices=True, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_70_{dtype=float64, full_matrices=True, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_71_{dtype=float64, full_matrices=True, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_72_{dtype=float64, full_matrices=False, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_73_{dtype=float64, full_matrices=False, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_74_{dtype=float64, full_matrices=False, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_75_{dtype=float64, full_matrices=False, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_76_{dtype=float64, full_matrices=False, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_77_{dtype=float64, full_matrices=False, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_78_{dtype=float64, full_matrices=False, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_79_{dtype=float64, full_matrices=False, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_80_{dtype=float64, full_matrices=False, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_81_{dtype=float64, full_matrices=False, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_82_{dtype=float64, full_matrices=False, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_83_{dtype=float64, full_matrices=False, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_84_{dtype=float64, full_matrices=False, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_85_{dtype=float64, full_matrices=False, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_86_{dtype=float64, full_matrices=False, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_87_{dtype=float64, full_matrices=False, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_88_{dtype=float64, full_matrices=False, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_89_{dtype=float64, full_matrices=False, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_90_{dtype=float64, full_matrices=False, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_91_{dtype=float64, full_matrices=False, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_92_{dtype=float64, full_matrices=False, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_93_{dtype=float64, full_matrices=False, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_94_{dtype=float64, full_matrices=False, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_95_{dtype=float64, full_matrices=False, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_96_{dtype=complex64, full_matrices=True, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_97_{dtype=complex64, full_matrices=True, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_98_{dtype=complex64, full_matrices=True, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_99_{dtype=complex64, full_matrices=True, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_100_{dtype=complex64, full_matrices=True, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_101_{dtype=complex64, full_matrices=True, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_102_{dtype=complex64, full_matrices=True, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_103_{dtype=complex64, full_matrices=True, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_104_{dtype=complex64, full_matrices=True, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_105_{dtype=complex64, full_matrices=True, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_106_{dtype=complex64, full_matrices=True, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_107_{dtype=complex64, full_matrices=True, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_108_{dtype=complex64, full_matrices=True, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_109_{dtype=complex64, full_matrices=True, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_110_{dtype=complex64, full_matrices=True, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_111_{dtype=complex64, full_matrices=True, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_112_{dtype=complex64, full_matrices=True, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_113_{dtype=complex64, full_matrices=True, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_114_{dtype=complex64, full_matrices=True, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_115_{dtype=complex64, full_matrices=True, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_116_{dtype=complex64, full_matrices=True, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_117_{dtype=complex64, full_matrices=True, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_118_{dtype=complex64, full_matrices=True, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_119_{dtype=complex64, full_matrices=True, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_120_{dtype=complex64, full_matrices=False, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_121_{dtype=complex64, full_matrices=False, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_122_{dtype=complex64, full_matrices=False, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_123_{dtype=complex64, full_matrices=False, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_124_{dtype=complex64, full_matrices=False, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_125_{dtype=complex64, full_matrices=False, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_126_{dtype=complex64, full_matrices=False, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_127_{dtype=complex64, full_matrices=False, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_128_{dtype=complex64, full_matrices=False, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_129_{dtype=complex64, full_matrices=False, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_130_{dtype=complex64, full_matrices=False, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_131_{dtype=complex64, full_matrices=False, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_132_{dtype=complex64, full_matrices=False, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_133_{dtype=complex64, full_matrices=False, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_134_{dtype=complex64, full_matrices=False, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_135_{dtype=complex64, full_matrices=False, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_136_{dtype=complex64, full_matrices=False, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_137_{dtype=complex64, full_matrices=False, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_138_{dtype=complex64, full_matrices=False, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_139_{dtype=complex64, full_matrices=False, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_140_{dtype=complex64, full_matrices=False, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_141_{dtype=complex64, full_matrices=False, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_142_{dtype=complex64, full_matrices=False, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_143_{dtype=complex64, full_matrices=False, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_144_{dtype=complex128, full_matrices=True, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_145_{dtype=complex128, full_matrices=True, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_146_{dtype=complex128, full_matrices=True, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_147_{dtype=complex128, full_matrices=True, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_148_{dtype=complex128, full_matrices=True, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_149_{dtype=complex128, full_matrices=True, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_150_{dtype=complex128, full_matrices=True, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_151_{dtype=complex128, full_matrices=True, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_152_{dtype=complex128, full_matrices=True, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_153_{dtype=complex128, full_matrices=True, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_154_{dtype=complex128, full_matrices=True, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_155_{dtype=complex128, full_matrices=True, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_156_{dtype=complex128, full_matrices=True, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_157_{dtype=complex128, full_matrices=True, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_158_{dtype=complex128, full_matrices=True, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_159_{dtype=complex128, full_matrices=True, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_160_{dtype=complex128, full_matrices=True, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_161_{dtype=complex128, full_matrices=True, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_162_{dtype=complex128, full_matrices=True, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_163_{dtype=complex128, full_matrices=True, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_164_{dtype=complex128, full_matrices=True, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_165_{dtype=complex128, full_matrices=True, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_166_{dtype=complex128, full_matrices=True, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_167_{dtype=complex128, full_matrices=True, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_168_{dtype=complex128, full_matrices=False, order='C', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_169_{dtype=complex128, full_matrices=False, order='C', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_170_{dtype=complex128, full_matrices=False, order='C', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_171_{dtype=complex128, full_matrices=False, order='C', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_172_{dtype=complex128, full_matrices=False, order='C', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_173_{dtype=complex128, full_matrices=False, order='C', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_174_{dtype=complex128, full_matrices=False, order='C', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_175_{dtype=complex128, full_matrices=False, order='C', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_176_{dtype=complex128, full_matrices=False, order='C', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_177_{dtype=complex128, full_matrices=False, order='C', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_178_{dtype=complex128, full_matrices=False, order='C', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_179_{dtype=complex128, full_matrices=False, order='C', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_180_{dtype=complex128, full_matrices=False, order='F', overwrite_a=True, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_181_{dtype=complex128, full_matrices=False, order='F', overwrite_a=True, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_182_{dtype=complex128, full_matrices=False, order='F', overwrite_a=True, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_183_{dtype=complex128, full_matrices=False, order='F', overwrite_a=True, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_184_{dtype=complex128, full_matrices=False, order='F', overwrite_a=True, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_185_{dtype=complex128, full_matrices=False, order='F', overwrite_a=True, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_186_{dtype=complex128, full_matrices=False, order='F', overwrite_a=False, shape=(5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_187_{dtype=complex128, full_matrices=False, order='F', overwrite_a=False, shape=(4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_188_{dtype=complex128, full_matrices=False, order='F', overwrite_a=False, shape=(3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_189_{dtype=complex128, full_matrices=False, order='F', overwrite_a=False, shape=(2, 5, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_190_{dtype=complex128, full_matrices=False, order='F', overwrite_a=False, shape=(2, 4, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvdj::test_gesvdj_no_uv[_param_191_{dtype=complex128, full_matrices=False, order='F', overwrite_a=False, shape=(2, 3, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 30, 'Skipped: gesvdj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda[_param_0_{dtype=float32, shape=(5, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda[_param_1_{dtype=float32, shape=(1, 4, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda[_param_2_{dtype=float32, shape=(4, 3, 2)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda[_param_3_{dtype=float64, shape=(5, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda[_param_4_{dtype=float64, shape=(1, 4, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda[_param_5_{dtype=float64, shape=(4, 3, 2)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda[_param_6_{dtype=complex64, shape=(5, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda[_param_7_{dtype=complex64, shape=(1, 4, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda[_param_8_{dtype=complex64, shape=(4, 3, 2)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda[_param_9_{dtype=complex128, shape=(5, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda[_param_10_{dtype=complex128, shape=(1, 4, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda[_param_11_{dtype=complex128, shape=(4, 3, 2)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda_no_uv[_param_0_{dtype=float32, shape=(5, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda_no_uv[_param_1_{dtype=float32, shape=(1, 4, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda_no_uv[_param_2_{dtype=float32, shape=(4, 3, 2)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda_no_uv[_param_3_{dtype=float64, shape=(5, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda_no_uv[_param_4_{dtype=float64, shape=(1, 4, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda_no_uv[_param_5_{dtype=float64, shape=(4, 3, 2)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda_no_uv[_param_6_{dtype=complex64, shape=(5, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda_no_uv[_param_7_{dtype=complex64, shape=(1, 4, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda_no_uv[_param_8_{dtype=complex64, shape=(4, 3, 2)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda_no_uv[_param_9_{dtype=complex128, shape=(5, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda_no_uv[_param_10_{dtype=complex128, shape=(1, 4, 3)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesvda::test_gesvda_no_uv[_param_11_{dtype=complex128, shape=(4, 3, 2)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 90, 'Skipped: gesvda is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_0_{UPLO='L', dtype=float32, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_1_{UPLO='L', dtype=float32, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_2_{UPLO='L', dtype=float64, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_3_{UPLO='L', dtype=float64, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_4_{UPLO='L', dtype=complex64, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_5_{UPLO='L', dtype=complex64, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_6_{UPLO='L', dtype=complex128, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_7_{UPLO='L', dtype=complex128, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_8_{UPLO='U', dtype=float32, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_9_{UPLO='U', dtype=float32, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_10_{UPLO='U', dtype=float64, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_11_{UPLO='U', dtype=float64, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_12_{UPLO='U', dtype=complex64, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_13_{UPLO='U', dtype=complex64, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_14_{UPLO='U', dtype=complex128, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevj[_param_15_{UPLO='U', dtype=complex128, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_0_{UPLO='L', dtype=float32, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_1_{UPLO='L', dtype=float32, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_2_{UPLO='L', dtype=float64, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_3_{UPLO='L', dtype=float64, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_4_{UPLO='L', dtype=complex64, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_5_{UPLO='L', dtype=complex64, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_6_{UPLO='L', dtype=complex128, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_7_{UPLO='L', dtype=complex128, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_8_{UPLO='U', dtype=float32, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_9_{UPLO='U', dtype=float32, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_10_{UPLO='U', dtype=float64, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_11_{UPLO='U', dtype=float64, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_12_{UPLO='U', dtype=complex64, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_13_{UPLO='U', dtype=complex64, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_14_{UPLO='U', dtype=complex128, order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestSyevj::test_syevjBatched[_param_15_{UPLO='U', dtype=complex128, order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 145, 'Skipped: syevj is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_0_{compute_type=None, dtype=float32, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_1_{compute_type=None, dtype=float32, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_2_{compute_type=None, dtype=float32, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_3_{compute_type=None, dtype=float32, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_4_{compute_type=None, dtype=float32, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_5_{compute_type=None, dtype=float32, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_6_{compute_type=None, dtype=float64, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_7_{compute_type=None, dtype=float64, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_8_{compute_type=None, dtype=float64, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_9_{compute_type=None, dtype=float64, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_10_{compute_type=None, dtype=float64, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_11_{compute_type=None, dtype=float64, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_12_{compute_type=None, dtype=complex64, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_13_{compute_type=None, dtype=complex64, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_14_{compute_type=None, dtype=complex64, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_15_{compute_type=None, dtype=complex64, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_16_{compute_type=None, dtype=complex64, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_17_{compute_type=None, dtype=complex64, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_18_{compute_type=None, dtype=complex128, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_19_{compute_type=None, dtype=complex128, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_20_{compute_type=None, dtype=complex128, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_21_{compute_type=None, dtype=complex128, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_22_{compute_type=None, dtype=complex128, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_23_{compute_type=None, dtype=complex128, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_24_{compute_type=3, dtype=float32, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_25_{compute_type=3, dtype=float32, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_26_{compute_type=3, dtype=float32, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_27_{compute_type=3, dtype=float32, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_28_{compute_type=3, dtype=float32, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_29_{compute_type=3, dtype=float32, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_30_{compute_type=3, dtype=float64, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_31_{compute_type=3, dtype=float64, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_32_{compute_type=3, dtype=float64, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_33_{compute_type=3, dtype=float64, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_34_{compute_type=3, dtype=float64, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_35_{compute_type=3, dtype=float64, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_36_{compute_type=3, dtype=complex64, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_37_{compute_type=3, dtype=complex64, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_38_{compute_type=3, dtype=complex64, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_39_{compute_type=3, dtype=complex64, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_40_{compute_type=3, dtype=complex64, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_41_{compute_type=3, dtype=complex64, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_42_{compute_type=3, dtype=complex128, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_43_{compute_type=3, dtype=complex128, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_44_{compute_type=3, dtype=complex128, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_45_{compute_type=3, dtype=complex128, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_46_{compute_type=3, dtype=complex128, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_47_{compute_type=3, dtype=complex128, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_48_{compute_type=7, dtype=float32, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_49_{compute_type=7, dtype=float32, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_50_{compute_type=7, dtype=float32, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_51_{compute_type=7, dtype=float32, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_52_{compute_type=7, dtype=float32, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_53_{compute_type=7, dtype=float32, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_54_{compute_type=7, dtype=float64, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_55_{compute_type=7, dtype=float64, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_56_{compute_type=7, dtype=float64, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_57_{compute_type=7, dtype=float64, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_58_{compute_type=7, dtype=float64, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_59_{compute_type=7, dtype=float64, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_60_{compute_type=7, dtype=complex64, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_61_{compute_type=7, dtype=complex64, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_62_{compute_type=7, dtype=complex64, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_63_{compute_type=7, dtype=complex64, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_64_{compute_type=7, dtype=complex64, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_65_{compute_type=7, dtype=complex64, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_66_{compute_type=7, dtype=complex128, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_67_{compute_type=7, dtype=complex128, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_68_{compute_type=7, dtype=complex128, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_69_{compute_type=7, dtype=complex128, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_70_{compute_type=7, dtype=complex128, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_71_{compute_type=7, dtype=complex128, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_72_{compute_type=4, dtype=float32, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_73_{compute_type=4, dtype=float32, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_74_{compute_type=4, dtype=float32, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_75_{compute_type=4, dtype=float32, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_76_{compute_type=4, dtype=float32, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_77_{compute_type=4, dtype=float32, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_78_{compute_type=4, dtype=float64, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_79_{compute_type=4, dtype=float64, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_80_{compute_type=4, dtype=float64, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_81_{compute_type=4, dtype=float64, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_82_{compute_type=4, dtype=float64, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_83_{compute_type=4, dtype=float64, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_84_{compute_type=4, dtype=complex64, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_85_{compute_type=4, dtype=complex64, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_86_{compute_type=4, dtype=complex64, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_87_{compute_type=4, dtype=complex64, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_88_{compute_type=4, dtype=complex64, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_89_{compute_type=4, dtype=complex64, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_90_{compute_type=4, dtype=complex128, n=10, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_91_{compute_type=4, dtype=complex128, n=10, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_92_{compute_type=4, dtype=complex128, n=10, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_93_{compute_type=4, dtype=complex128, n=100, nrhs=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_94_{compute_type=4, dtype=complex128, n=100, nrhs=1}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGesv::test_gesv[_param_95_{compute_type=4, dtype=complex128, n=100, nrhs=10}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 216, 'Skipped: gesv is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_0_{compute_type=None, dtype=float32, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_1_{compute_type=None, dtype=float32, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_2_{compute_type=None, dtype=float32, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_3_{compute_type=None, dtype=float32, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_4_{compute_type=None, dtype=float32, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_5_{compute_type=None, dtype=float32, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_6_{compute_type=None, dtype=float64, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_7_{compute_type=None, dtype=float64, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_8_{compute_type=None, dtype=float64, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_9_{compute_type=None, dtype=float64, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_10_{compute_type=None, dtype=float64, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_11_{compute_type=None, dtype=float64, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_12_{compute_type=None, dtype=complex64, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_13_{compute_type=None, dtype=complex64, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_14_{compute_type=None, dtype=complex64, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_15_{compute_type=None, dtype=complex64, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_16_{compute_type=None, dtype=complex64, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_17_{compute_type=None, dtype=complex64, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_18_{compute_type=None, dtype=complex128, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_19_{compute_type=None, dtype=complex128, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_20_{compute_type=None, dtype=complex128, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_21_{compute_type=None, dtype=complex128, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_22_{compute_type=None, dtype=complex128, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_23_{compute_type=None, dtype=complex128, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_24_{compute_type=3, dtype=float32, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_25_{compute_type=3, dtype=float32, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_26_{compute_type=3, dtype=float32, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_27_{compute_type=3, dtype=float32, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_28_{compute_type=3, dtype=float32, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_29_{compute_type=3, dtype=float32, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_30_{compute_type=3, dtype=float64, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_31_{compute_type=3, dtype=float64, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_32_{compute_type=3, dtype=float64, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_33_{compute_type=3, dtype=float64, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_34_{compute_type=3, dtype=float64, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_35_{compute_type=3, dtype=float64, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_36_{compute_type=3, dtype=complex64, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_37_{compute_type=3, dtype=complex64, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_38_{compute_type=3, dtype=complex64, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_39_{compute_type=3, dtype=complex64, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_40_{compute_type=3, dtype=complex64, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_41_{compute_type=3, dtype=complex64, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_42_{compute_type=3, dtype=complex128, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_43_{compute_type=3, dtype=complex128, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_44_{compute_type=3, dtype=complex128, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_45_{compute_type=3, dtype=complex128, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_46_{compute_type=3, dtype=complex128, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_47_{compute_type=3, dtype=complex128, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_48_{compute_type=7, dtype=float32, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_49_{compute_type=7, dtype=float32, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_50_{compute_type=7, dtype=float32, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_51_{compute_type=7, dtype=float32, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_52_{compute_type=7, dtype=float32, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_53_{compute_type=7, dtype=float32, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_54_{compute_type=7, dtype=float64, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_55_{compute_type=7, dtype=float64, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_56_{compute_type=7, dtype=float64, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_57_{compute_type=7, dtype=float64, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_58_{compute_type=7, dtype=float64, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_59_{compute_type=7, dtype=float64, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_60_{compute_type=7, dtype=complex64, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_61_{compute_type=7, dtype=complex64, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_62_{compute_type=7, dtype=complex64, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_63_{compute_type=7, dtype=complex64, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_64_{compute_type=7, dtype=complex64, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_65_{compute_type=7, dtype=complex64, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_66_{compute_type=7, dtype=complex128, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_67_{compute_type=7, dtype=complex128, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_68_{compute_type=7, dtype=complex128, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_69_{compute_type=7, dtype=complex128, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_70_{compute_type=7, dtype=complex128, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_71_{compute_type=7, dtype=complex128, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_72_{compute_type=4, dtype=float32, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_73_{compute_type=4, dtype=float32, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_74_{compute_type=4, dtype=float32, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_75_{compute_type=4, dtype=float32, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_76_{compute_type=4, dtype=float32, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_77_{compute_type=4, dtype=float32, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_78_{compute_type=4, dtype=float64, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_79_{compute_type=4, dtype=float64, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_80_{compute_type=4, dtype=float64, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_81_{compute_type=4, dtype=float64, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_82_{compute_type=4, dtype=float64, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_83_{compute_type=4, dtype=float64, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_84_{compute_type=4, dtype=complex64, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_85_{compute_type=4, dtype=complex64, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_86_{compute_type=4, dtype=complex64, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_87_{compute_type=4, dtype=complex64, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_88_{compute_type=4, dtype=complex64, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_89_{compute_type=4, dtype=complex64, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_90_{compute_type=4, dtype=complex128, nrhs=None, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_91_{compute_type=4, dtype=complex128, nrhs=None, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_92_{compute_type=4, dtype=complex128, nrhs=1, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_93_{compute_type=4, dtype=complex128, nrhs=1, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_94_{compute_type=4, dtype=complex128, nrhs=4, shape=(32, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestGels::test_gels[_param_95_{compute_type=4, dtype=complex128, nrhs=4, shape=(37, 32)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 259, 'Skipped: gels is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_0_{b_contiguous=True, reorder=0, tol=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_1_{b_contiguous=True, reorder=0, tol=1e-05}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_2_{b_contiguous=True, reorder=1, tol=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_3_{b_contiguous=True, reorder=1, tol=1e-05}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_4_{b_contiguous=True, reorder=2, tol=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_5_{b_contiguous=True, reorder=2, tol=1e-05}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_6_{b_contiguous=True, reorder=3, tol=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_7_{b_contiguous=True, reorder=3, tol=1e-05}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_8_{b_contiguous=False, reorder=0, tol=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_9_{b_contiguous=False, reorder=0, tol=1e-05}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_10_{b_contiguous=False, reorder=1, tol=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_11_{b_contiguous=False, reorder=1, tol=1e-05}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_12_{b_contiguous=False, reorder=2, tol=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_13_{b_contiguous=False, reorder=2, tol=1e-05}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_14_{b_contiguous=False, reorder=3, tol=0}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cusolver.py::TestCsrlsvqr::test_csrlsvqr[_param_15_{b_contiguous=False, reorder=3, tol=1e-05}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cusolver.py', 295, 'Skipped: csrlsvqr is not available') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_trinary[_param_0_{dtype=float16, tol=0.003}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 43, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_trinary[_param_1_{dtype=float32, tol=1e-06}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 43, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_trinary[_param_2_{dtype=float64, tol=1e-12}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 43, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_trinary[_param_3_{dtype=complex64, tol=1e-06}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 43, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_trinary[_param_4_{dtype=complex128, tol=1e-12}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 43, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_trinary_out[_param_0_{dtype=float16, tol=0.003}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 64, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_trinary_out[_param_1_{dtype=float32, tol=1e-06}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 64, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_trinary_out[_param_2_{dtype=float64, tol=1e-12}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 64, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_trinary_out[_param_3_{dtype=complex64, tol=1e-06}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 64, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_trinary_out[_param_4_{dtype=complex128, tol=1e-12}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 64, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_binary[_param_0_{dtype=float16, tol=0.003}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 87, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_binary[_param_1_{dtype=float32, tol=1e-06}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 87, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_binary[_param_2_{dtype=float64, tol=1e-12}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 87, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_binary[_param_3_{dtype=complex64, tol=1e-06}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 87, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_binary[_param_4_{dtype=complex128, tol=1e-12}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 87, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_binary_out[_param_0_{dtype=float16, tol=0.003}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 105, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_binary_out[_param_1_{dtype=float32, tol=1e-06}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 105, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_binary_out[_param_2_{dtype=float64, tol=1e-12}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 105, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_binary_out[_param_3_{dtype=complex64, tol=1e-06}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 105, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_elementwise_binary_out[_param_4_{dtype=complex128, tol=1e-12}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 105, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_contraction[_param_0_{dtype=float16, tol=0.003}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 124, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_contraction[_param_1_{dtype=float32, tol=1e-06}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 124, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_contraction[_param_2_{dtype=float64, tol=1e-12}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 124, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_contraction[_param_3_{dtype=complex64, tol=1e-06}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 124, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_contraction[_param_4_{dtype=complex128, tol=1e-12}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 124, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_reduction[_param_0_{dtype=float16, tol=0.003}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 147, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_reduction[_param_1_{dtype=float32, tol=1e-06}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 147, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_reduction[_param_2_{dtype=float64, tol=1e-12}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 147, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_reduction[_param_3_{dtype=complex64, tol=1e-06}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 147, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensor::test_reduction[_param_4_{dtype=complex128, tol=1e-12}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 147, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorDescriptor::test_elementwise_trinary | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 192, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorDescriptor::test_elementwise_binary | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 212, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorDescriptor::test_reduction | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 229, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_0_{alpha=1.0, beta=0.0, compute_type_hint=None, dtype_combo='eee', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_1_{alpha=1.0, beta=0.0, compute_type_hint=None, dtype_combo='fff', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_2_{alpha=1.0, beta=0.0, compute_type_hint=None, dtype_combo='ddd', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_3_{alpha=1.0, beta=0.0, compute_type_hint=None, dtype_combo='FFF', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_4_{alpha=1.0, beta=0.0, compute_type_hint=None, dtype_combo='DDD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_5_{alpha=1.0, beta=0.0, compute_type_hint=None, dtype_combo='dDD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_6_{alpha=1.0, beta=0.0, compute_type_hint=None, dtype_combo='DdD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_7_{alpha=1.0, beta=0.0, compute_type_hint='down-convert', dtype_combo='eee', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_8_{alpha=1.0, beta=0.0, compute_type_hint='down-convert', dtype_combo='fff', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_9_{alpha=1.0, beta=0.0, compute_type_hint='down-convert', dtype_combo='ddd', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_10_{alpha=1.0, beta=0.0, compute_type_hint='down-convert', dtype_combo='FFF', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_11_{alpha=1.0, beta=0.0, compute_type_hint='down-convert', dtype_combo='DDD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_12_{alpha=1.0, beta=0.0, compute_type_hint='down-convert', dtype_combo='dDD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_13_{alpha=1.0, beta=0.0, compute_type_hint='down-convert', dtype_combo='DdD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_14_{alpha=1.0, beta=0.0, compute_type_hint='TF32', dtype_combo='eee', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_15_{alpha=1.0, beta=0.0, compute_type_hint='TF32', dtype_combo='fff', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_16_{alpha=1.0, beta=0.0, compute_type_hint='TF32', dtype_combo='ddd', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_17_{alpha=1.0, beta=0.0, compute_type_hint='TF32', dtype_combo='FFF', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_18_{alpha=1.0, beta=0.0, compute_type_hint='TF32', dtype_combo='DDD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_19_{alpha=1.0, beta=0.0, compute_type_hint='TF32', dtype_combo='dDD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_20_{alpha=1.0, beta=0.0, compute_type_hint='TF32', dtype_combo='DdD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_21_{alpha=1.0, beta=1.0, compute_type_hint=None, dtype_combo='eee', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_22_{alpha=1.0, beta=1.0, compute_type_hint=None, dtype_combo='fff', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_23_{alpha=1.0, beta=1.0, compute_type_hint=None, dtype_combo='ddd', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_24_{alpha=1.0, beta=1.0, compute_type_hint=None, dtype_combo='FFF', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_25_{alpha=1.0, beta=1.0, compute_type_hint=None, dtype_combo='DDD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_26_{alpha=1.0, beta=1.0, compute_type_hint=None, dtype_combo='dDD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_27_{alpha=1.0, beta=1.0, compute_type_hint=None, dtype_combo='DdD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_28_{alpha=1.0, beta=1.0, compute_type_hint='down-convert', dtype_combo='eee', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_29_{alpha=1.0, beta=1.0, compute_type_hint='down-convert', dtype_combo='fff', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_30_{alpha=1.0, beta=1.0, compute_type_hint='down-convert', dtype_combo='ddd', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_31_{alpha=1.0, beta=1.0, compute_type_hint='down-convert', dtype_combo='FFF', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_32_{alpha=1.0, beta=1.0, compute_type_hint='down-convert', dtype_combo='DDD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_33_{alpha=1.0, beta=1.0, compute_type_hint='down-convert', dtype_combo='dDD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_34_{alpha=1.0, beta=1.0, compute_type_hint='down-convert', dtype_combo='DdD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_35_{alpha=1.0, beta=1.0, compute_type_hint='TF32', dtype_combo='eee', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_36_{alpha=1.0, beta=1.0, compute_type_hint='TF32', dtype_combo='fff', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_37_{alpha=1.0, beta=1.0, compute_type_hint='TF32', dtype_combo='ddd', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_38_{alpha=1.0, beta=1.0, compute_type_hint='TF32', dtype_combo='FFF', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_39_{alpha=1.0, beta=1.0, compute_type_hint='TF32', dtype_combo='DDD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_40_{alpha=1.0, beta=1.0, compute_type_hint='TF32', dtype_combo='dDD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_cutensor.py::TestCuTensorContraction::test_contraction[_param_41_{alpha=1.0, beta=1.0, compute_type_hint='TF32', dtype_combo='DdD', shape=(40, 30, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_cutensor.py', 309, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/test_init.py::TestNotAvailable::test_no_device_1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/test_init.py', 81, 'Skipped: HIP handles empty HIP_VISIBLE_DEVICES differently') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCudaInterfaceStream_param_0_{stream='null', ver=2}::test_cuda_array_interface_stream | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray.py', 323, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCudaInterfaceStream_param_1_{stream='null', ver=3}::test_cuda_array_interface_stream | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray.py', 323, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCudaInterfaceStream_param_2_{stream='new', ver=2}::test_cuda_array_interface_stream | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray.py', 323, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCudaInterfaceStream_param_3_{stream='new', ver=3}::test_cuda_array_interface_stream | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray.py', 323, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCudaInterfaceStream_param_4_{stream='ptds', ver=2}::test_cuda_array_interface_stream | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray.py', 323, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCudaInterfaceStream_param_5_{stream='ptds', ver=3}::test_cuda_array_interface_stream | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray.py', 323, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCudaInterface::test_cuda_array_interface | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray.py', 248, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCudaInterface::test_cuda_array_interface_view | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray.py', 265, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCudaInterface::test_cuda_array_interface_zero_size | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray.py', 283, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_isinstance_numpy_copy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py', 240, 'Skipped: Special copy disabled') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_isinstance_numpy_copy_wrong_dtype | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py', 252, 'Skipped: Special copy disabled') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_isinstance_numpy_copy_wrong_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py', 260, 'Skipped: Special copy disabled') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_isinstance_numpy_copy_not_slice | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py', 269, 'Skipped: Special copy disabled') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_copy_host_to_device_view | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py', 277, 'Skipped: Special copy disabled') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestNumPyArrayCopyView::test_isinstance_numpy_view_copy_f[_param_0_{src_order='C'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py', 292, 'Skipped: Special copy disabled') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestNumPyArrayCopyView::test_isinstance_numpy_view_copy_f[_param_1_{src_order='F'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py', 292, 'Skipped: Special copy disabled') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestArrayUfunc_param_0_{stream='null', ver=2}::test_add_scalar | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 65, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestArrayUfunc_param_0_{stream='null', ver=2}::test_add_scalar_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 68, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestArrayUfunc_param_1_{stream='null', ver=3}::test_add_scalar | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 65, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestArrayUfunc_param_1_{stream='null', ver=3}::test_add_scalar_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 68, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestArrayUfunc_param_2_{stream='new', ver=2}::test_add_scalar | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 65, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestArrayUfunc_param_2_{stream='new', ver=2}::test_add_scalar_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 68, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestArrayUfunc_param_3_{stream='new', ver=3}::test_add_scalar | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 65, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestArrayUfunc_param_3_{stream='new', ver=3}::test_add_scalar_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 68, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestElementwiseKernel_param_0_{stream='null', ver=2}::test_add_scalar | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 103, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestElementwiseKernel_param_0_{stream='null', ver=2}::test_add_scalar_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 106, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestElementwiseKernel_param_1_{stream='null', ver=3}::test_add_scalar | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 103, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestElementwiseKernel_param_1_{stream='null', ver=3}::test_add_scalar_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 106, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestElementwiseKernel_param_2_{stream='new', ver=2}::test_add_scalar | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 103, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestElementwiseKernel_param_2_{stream='new', ver=2}::test_add_scalar_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 106, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestElementwiseKernel_param_3_{stream='new', ver=3}::test_add_scalar | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 103, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestElementwiseKernel_param_3_{stream='new', ver=3}::test_add_scalar_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 106, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSimpleReductionFunction_param_0_{stream='null', ver=2}::test_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 143, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSimpleReductionFunction_param_0_{stream='null', ver=2}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 146, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSimpleReductionFunction_param_1_{stream='null', ver=3}::test_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 143, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSimpleReductionFunction_param_1_{stream='null', ver=3}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 146, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSimpleReductionFunction_param_2_{stream='new', ver=2}::test_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 143, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSimpleReductionFunction_param_2_{stream='new', ver=2}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 146, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSimpleReductionFunction_param_3_{stream='new', ver=3}::test_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 143, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSimpleReductionFunction_param_3_{stream='new', ver=3}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 146, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestReductionKernel_param_0_{stream='null', ver=2}::test_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 183, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestReductionKernel_param_0_{stream='null', ver=2}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 186, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestReductionKernel_param_1_{stream='null', ver=3}::test_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 183, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestReductionKernel_param_1_{stream='null', ver=3}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 186, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestReductionKernel_param_2_{stream='new', ver=2}::test_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 183, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestReductionKernel_param_2_{stream='new', ver=2}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 186, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestReductionKernel_param_3_{stream='new', ver=3}::test_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 183, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestReductionKernel_param_3_{stream='new', ver=3}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 186, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSlicingMemoryPointer_param_0_{shape=(10,), slices=(slice(0, None, None),)}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 204, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSlicingMemoryPointer_param_1_{shape=(10,), slices=(slice(2, None, None),)}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 204, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSlicingMemoryPointer_param_2_{shape=(10, 10), slices=(slice(0, None, None), slice(0, None, None))}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 204, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSlicingMemoryPointer_param_3_{shape=(10, 10), slices=(slice(0, None, None), slice(2, None, None))}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 204, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSlicingMemoryPointer_param_4_{shape=(10, 10), slices=(slice(2, None, None), slice(0, None, None))}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 204, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSlicingMemoryPointer_param_5_{shape=(10, 10), slices=(slice(2, None, None), slice(2, None, None))}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 204, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestSlicingMemoryPointer_param_6_{shape=(10, 10), slices=(slice(2, None, None), slice(4, None, None))}::test_shape_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 204, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_0_{shape=(10,), slices=(slice(0, None, None),), stream='null'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_1_{shape=(10,), slices=(slice(0, None, None),), stream='new'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_2_{shape=(10,), slices=(slice(2, None, None),), stream='null'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_3_{shape=(10,), slices=(slice(2, None, None),), stream='new'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_4_{shape=(10, 10), slices=(slice(0, None, None), slice(0, None, None)), stream='null'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_5_{shape=(10, 10), slices=(slice(0, None, None), slice(0, None, None)), stream='new'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_6_{shape=(10, 10), slices=(slice(0, None, None), slice(2, None, None)), stream='null'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_7_{shape=(10, 10), slices=(slice(0, None, None), slice(2, None, None)), stream='new'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_8_{shape=(10, 10), slices=(slice(2, None, None), slice(0, None, None)), stream='null'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_9_{shape=(10, 10), slices=(slice(2, None, None), slice(0, None, None)), stream='new'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_10_{shape=(10, 10), slices=(slice(2, None, None), slice(2, None, None)), stream='null'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_11_{shape=(10, 10), slices=(slice(2, None, None), slice(2, None, None)), stream='new'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_12_{shape=(10, 10), slices=(slice(2, None, None), slice(4, None, None)), stream='null'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceCompliance_param_13_{shape=(10, 10), slices=(slice(2, None, None), slice(4, None, None)), stream='new'}::test_value_type | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 256, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceStream_param_0_{stream='null'}::test_stream_export | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 305, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceStream_param_1_{stream='new'}::test_stream_export | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 305, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py::TestCUDAArrayInterfaceStream_param_2_{stream='ptds'}::test_stream_export | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py', 305, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundMinMax_param_0_{decimals=-5}::test_round_minmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_math.py', 109, 'Skipped: Known incompatibility: see core.pyx') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundMinMax_param_0_{decimals=-5}::test_round_uint64 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_math.py', 103, 'Skipped: Known incompatibility: see core.pyx') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundMinMax_param_1_{decimals=-4}::test_round_minmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_math.py', 109, 'Skipped: Known incompatibility: see core.pyx') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundMinMax_param_1_{decimals=-4}::test_round_uint64 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_math.py', 103, 'Skipped: Known incompatibility: see core.pyx') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundMinMax_param_2_{decimals=-3}::test_round_minmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_math.py', 109, 'Skipped: Known incompatibility: see core.pyx') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundMinMax_param_2_{decimals=-3}::test_round_uint64 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_math.py', 103, 'Skipped: Known incompatibility: see core.pyx') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundMinMax_param_3_{decimals=-2}::test_round_minmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_math.py', 109, 'Skipped: Known incompatibility: see core.pyx') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundMinMax_param_3_{decimals=-2}::test_round_uint64 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_math.py', 103, 'Skipped: Known incompatibility: see core.pyx') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundMinMax_param_4_{decimals=-1}::test_round_minmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_math.py', 109, 'Skipped: Known incompatibility: see core.pyx') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundMinMax_param_4_{decimals=-1}::test_round_uint64 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_math.py', 103, 'Skipped: Known incompatibility: see core.pyx') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundMinMax_param_5_{decimals=0}::test_round_minmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_math.py', 109, 'Skipped: Known incompatibility: see core.pyx') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundMinMax_param_5_{decimals=0}::test_round_uint64 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_math.py', 103, 'Skipped: Known incompatibility: see core.pyx') | |||
| Skipped | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayUnaryOp::test_pos_array_full | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_ndarray_unary_op.py', 67, 'Skipped: requires: numpy<1.16') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_compile_kernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1034, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_compile_module | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1049, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_cuDoubleComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 715, 'Skipped: HIP code should not use cuDoubleComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_cuFloatComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 650, 'Skipped: HIP code should not use cuFloatComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_dynamical_parallelism | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 619, 'Skipped: ROCm/HIP does not support dynamic parallelism') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_invalid_compiler_flag | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 498, 'Skipped: hiprtc does not handle #error macro properly') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_load_cubin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 554, 'Skipped: HIP uses hsaco, not cubin') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_load_ptx | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 565, 'Skipped: HIP uses hsaco, not ptx') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_compile_kernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1034, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_compile_module | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1049, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_cuDoubleComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 715, 'Skipped: HIP code should not use cuDoubleComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_cuFloatComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 650, 'Skipped: HIP code should not use cuFloatComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_dynamical_parallelism | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 619, 'Skipped: ROCm/HIP does not support dynamic parallelism') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_invalid_compiler_flag | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 498, 'Skipped: hiprtc does not handle #error macro properly') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_load_cubin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 554, 'Skipped: HIP uses hsaco, not cubin') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_load_ptx | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 565, 'Skipped: HIP uses hsaco, not ptx') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_compile_kernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1034, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_compile_module | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1049, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_cuDoubleComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 715, 'Skipped: HIP code should not use cuDoubleComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_cuFloatComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 650, 'Skipped: HIP code should not use cuFloatComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_dynamical_parallelism | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 619, 'Skipped: ROCm/HIP does not support dynamic parallelism') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_invalid_compiler_flag | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 498, 'Skipped: hiprtc does not handle #error macro properly') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_load_cubin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 554, 'Skipped: HIP uses hsaco, not cubin') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_load_ptx | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 565, 'Skipped: HIP uses hsaco, not ptx') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_template_specialization | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 798, 'Skipped: skip a potential hiprtc bug') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_basic | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 453, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_compile_kernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1034, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_compile_module | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1049, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_compiler_flag | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 487, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_const_memory | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 785, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_context_switch_RawKernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 892, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_context_switch_RawModule1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 903, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_context_switch_RawModule2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 916, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_context_switch_RawModule3 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 928, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_context_switch_RawModule4 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 949, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_context_switch_RawModule5 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 969, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_context_switch_RawModule6 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1003, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_cuDoubleComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 715, 'Skipped: HIP code should not use cuDoubleComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_cuFloatComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 650, 'Skipped: HIP code should not use cuFloatComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_dynamical_parallelism | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 619, 'Skipped: ROCm/HIP does not support dynamic parallelism') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_dynamical_parallelism_compile_failure | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 630, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_get_function_failure | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 610, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_invalid_compiler_flag | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 498, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_kernel_attributes | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 457, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_load_cubin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 554, 'Skipped: HIP uses hsaco, not cubin') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_load_hsaco | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 576, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_load_ptx | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 565, 'Skipped: HIP uses hsaco, not ptx') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_module | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 476, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_module_both_code_and_path | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 604, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_module_load_failure | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 588, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_module_neither_code_nor_path | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 600, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_raw_pointer | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 877, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_template_failure | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 837, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_3_{backend='nvrtc', in_memory=False, jitify=True}::test_template_specialization | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 798, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_basic | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 453, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_compile_kernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1034, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_compile_module | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1049, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_compiler_flag | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 487, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_const_memory | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 785, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_context_switch_RawKernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 892, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_context_switch_RawModule1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 903, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_context_switch_RawModule2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 916, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_context_switch_RawModule3 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 928, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_context_switch_RawModule4 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 949, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_context_switch_RawModule5 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 969, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_context_switch_RawModule6 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1003, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_cuDoubleComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 715, 'Skipped: HIP code should not use cuDoubleComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_cuFloatComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 650, 'Skipped: HIP code should not use cuFloatComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_dynamical_parallelism | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 619, 'Skipped: ROCm/HIP does not support dynamic parallelism') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_dynamical_parallelism_compile_failure | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 630, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_get_function_failure | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 610, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_invalid_compiler_flag | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 498, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_kernel_attributes | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 457, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_load_cubin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 554, 'Skipped: HIP uses hsaco, not cubin') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_load_hsaco | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 576, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_load_ptx | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 565, 'Skipped: HIP uses hsaco, not ptx') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_module | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 476, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_module_both_code_and_path | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 604, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_module_load_failure | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 588, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_module_neither_code_nor_path | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 600, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_raw_pointer | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 877, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_template_failure | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 837, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_4_{backend='nvrtc', in_memory=True, jitify=True}::test_template_specialization | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 798, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_basic | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 453, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_compile_kernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1034, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_compile_module | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1049, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_compiler_flag | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 487, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_const_memory | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 785, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_context_switch_RawKernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 892, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_context_switch_RawModule1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 903, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_context_switch_RawModule2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 916, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_context_switch_RawModule3 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 928, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_context_switch_RawModule4 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 949, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_context_switch_RawModule5 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 969, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_context_switch_RawModule6 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1003, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_cuDoubleComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 715, 'Skipped: HIP code should not use cuDoubleComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_cuFloatComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 650, 'Skipped: HIP code should not use cuFloatComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_dynamical_parallelism | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 619, 'Skipped: ROCm/HIP does not support dynamic parallelism') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_dynamical_parallelism_compile_failure | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 630, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_get_function_failure | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 610, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_invalid_compiler_flag | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 498, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_kernel_attributes | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 457, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_load_cubin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 554, 'Skipped: HIP uses hsaco, not cubin') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_load_hsaco | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 576, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_load_ptx | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 565, 'Skipped: HIP uses hsaco, not ptx') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_module | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 476, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_module_both_code_and_path | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 604, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_module_load_failure | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 588, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_module_neither_code_nor_path | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 600, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_raw_pointer | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 877, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_template_failure | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 837, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_5_{backend='nvrtc', clean_up=True, in_memory=True, jitify=True}::test_template_specialization | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 798, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_compile_kernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1034, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_compile_module | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1049, 'Skipped: only CUDA raises warning') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_context_switch_RawModule5 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 969, 'Skipped: nvcc does not support template specialization') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_context_switch_RawModule6 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1003, 'Skipped: nvcc does not support template specialization') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_cuDoubleComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 715, 'Skipped: HIP code should not use cuDoubleComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_cuFloatComplex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 650, 'Skipped: HIP code should not use cuFloatComplex') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_dynamical_parallelism | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 619, 'Skipped: ROCm/HIP does not support dynamic parallelism') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_load_cubin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 554, 'Skipped: HIP uses hsaco, not cubin') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_load_ptx | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 565, 'Skipped: HIP uses hsaco, not ptx') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_template_specialization | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 798, 'Skipped: nvcc does not support template specialization') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawGridSync_param_0_{block=64, n=10}::test_grid_sync_rawkernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1099, 'Skipped: Skip on HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawGridSync_param_0_{block=64, n=10}::test_grid_sync_rawmodule | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1113, 'Skipped: Skip on HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawGridSync_param_1_{block=64, n=100}::test_grid_sync_rawkernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1099, 'Skipped: Skip on HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawGridSync_param_1_{block=64, n=100}::test_grid_sync_rawmodule | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1113, 'Skipped: Skip on HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawGridSync_param_2_{block=64, n=1000}::test_grid_sync_rawkernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1099, 'Skipped: Skip on HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawGridSync_param_2_{block=64, n=1000}::test_grid_sync_rawmodule | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1113, 'Skipped: Skip on HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawGridSync_param_3_{block=256, n=10}::test_grid_sync_rawkernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1099, 'Skipped: Skip on HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawGridSync_param_3_{block=256, n=10}::test_grid_sync_rawmodule | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1113, 'Skipped: Skip on HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawGridSync_param_4_{block=256, n=100}::test_grid_sync_rawkernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1099, 'Skipped: Skip on HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawGridSync_param_4_{block=256, n=100}::test_grid_sync_rawmodule | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1113, 'Skipped: Skip on HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawGridSync_param_5_{block=256, n=1000}::test_grid_sync_rawkernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1099, 'Skipped: Skip on HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawGridSync_param_5_{block=256, n=1000}::test_grid_sync_rawmodule | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1113, 'Skipped: Skip on HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawPicklable_param_0_{compile=False, raw='ker'}::test_raw_picklable | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1195, 'Skipped: HIP does not support enable_cooperative_groups') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawPicklable_param_1_{compile=False, raw='mod'}::test_raw_picklable | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1195, 'Skipped: HIP does not support enable_cooperative_groups') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawPicklable_param_2_{compile=False, raw='mod_ker'}::test_raw_picklable | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1195, 'Skipped: HIP does not support enable_cooperative_groups') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawPicklable_param_3_{compile=True, raw='ker'}::test_raw_picklable | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1195, 'Skipped: HIP does not support enable_cooperative_groups') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawPicklable_param_4_{compile=True, raw='mod'}::test_raw_picklable | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1195, 'Skipped: HIP does not support enable_cooperative_groups') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawPicklable_param_5_{compile=True, raw='mod_ker'}::test_raw_picklable | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1195, 'Skipped: HIP does not support enable_cooperative_groups') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawJitify_param_0_{jitify=False}::test_jitify1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1280, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawJitify_param_0_{jitify=False}::test_jitify2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1295, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawJitify_param_0_{jitify=False}::test_jitify3 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1305, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawJitify_param_0_{jitify=False}::test_jitify4 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1318, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawJitify_param_0_{jitify=False}::test_jitify5 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1335, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawJitify_param_1_{jitify=True}::test_jitify1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1280, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawJitify_param_1_{jitify=True}::test_jitify2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1295, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawJitify_param_1_{jitify=True}::test_jitify3 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1305, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawJitify_param_1_{jitify=True}::test_jitify4 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1318, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_raw.py::TestRawJitify_param_1_{jitify=True}::test_jitify5 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_raw.py', 1335, 'Skipped: Jitify does not support ROCm/HIP') | |||
| Skipped | tests/cupy_tests/core_tests/test_userkernel.py::TestElementwiseKernelTexture_param_0_{dimensions=(64, 0, 0)}::test_texture_input | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_userkernel.py', 319, 'Skipped: texture support on HIP is not yet implemented') | |||
| Skipped | tests/cupy_tests/core_tests/test_userkernel.py::TestElementwiseKernelTexture_param_1_{dimensions=(64, 32, 0)}::test_texture_input | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_userkernel.py', 319, 'Skipped: texture support on HIP is not yet implemented') | |||
| Skipped | tests/cupy_tests/core_tests/test_userkernel.py::TestElementwiseKernelTexture_param_2_{dimensions=(64, 32, 19)}::test_texture_input | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/test_userkernel.py', 319, 'Skipped: texture support on HIP is not yet implemented') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexingCombination::test_indexing_twice_3 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionTuple::test_various_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_0_{axis=None}::test_postmap_inplace | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_0_{axis=None}::test_postmap_two_arrays | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_0_{axis=None}::test_premap_postmap | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_1_{axis=0}::test_postmap_inplace | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_1_{axis=0}::test_postmap_two_arrays | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_1_{axis=0}::test_premap_postmap | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_2_{axis=1}::test_postmap_inplace | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_2_{axis=1}::test_postmap_two_arrays | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_2_{axis=1}::test_premap_postmap | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_0_{axis1=None, axis2=None}::test_two_distinct_reductions | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_0_{axis1=None, axis2=None}::test_two_reductions_and_elementwise | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_1_{axis1=None, axis2=0}::test_two_distinct_reductions | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_1_{axis1=None, axis2=0}::test_two_reductions_and_elementwise | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_2_{axis1=None, axis2=1}::test_two_distinct_reductions | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_2_{axis1=None, axis2=1}::test_two_reductions_and_elementwise | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_3_{axis1=0, axis2=None}::test_two_distinct_reductions | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_3_{axis1=0, axis2=None}::test_two_reductions_and_elementwise | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_4_{axis1=0, axis2=0}::test_two_distinct_reductions | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_4_{axis1=0, axis2=0}::test_two_reductions_and_elementwise | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_5_{axis1=0, axis2=1}::test_two_distinct_reductions | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_5_{axis1=0, axis2=1}::test_two_reductions_and_elementwise | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_6_{axis1=1, axis2=None}::test_two_distinct_reductions | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_6_{axis1=1, axis2=None}::test_two_reductions_and_elementwise | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_7_{axis1=1, axis2=0}::test_two_distinct_reductions | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_7_{axis1=1, axis2=0}::test_two_reductions_and_elementwise | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_8_{axis1=1, axis2=1}::test_two_distinct_reductions | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultipleReductions_param_8_{axis1=1, axis2=1}::test_two_reductions_and_elementwise | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultistageReductions::test_multistage_reductions | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultistageReductions::test_multistage_reductions_and_elementwise | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionMultistageReductionsMultiAxis::test_multistage_reductions | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py', 93, 'Skipped: Requires CUDA grid synchronization') | |||
| Skipped | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_empty_scalar_none | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_basic.py', 46, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_zeros_scalar_none | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_basic.py', 198, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_0_{strides=False, ver=0}::test_asnumpy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 514, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_0_{strides=False, ver=0}::test_base | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 472, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_0_{strides=False, ver=0}::test_not_copied | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 479, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_0_{strides=False, ver=0}::test_order | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 487, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_0_{strides=False, ver=0}::test_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 496, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_0_{strides=False, ver=0}::test_with_zero_size_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 504, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_1_{strides=False, ver=1}::test_asnumpy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 514, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_1_{strides=False, ver=1}::test_base | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 472, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_1_{strides=False, ver=1}::test_not_copied | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 479, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_1_{strides=False, ver=1}::test_order | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 487, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_1_{strides=False, ver=1}::test_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 496, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_1_{strides=False, ver=1}::test_with_zero_size_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 504, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_2_{strides=False, ver=2}::test_asnumpy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 514, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_2_{strides=False, ver=2}::test_base | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 472, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_2_{strides=False, ver=2}::test_not_copied | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 479, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_2_{strides=False, ver=2}::test_order | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 487, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_2_{strides=False, ver=2}::test_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 496, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_2_{strides=False, ver=2}::test_with_zero_size_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 504, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_3_{strides=False, ver=3}::test_asnumpy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 514, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_3_{strides=False, ver=3}::test_base | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 472, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_3_{strides=False, ver=3}::test_not_copied | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 479, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_3_{strides=False, ver=3}::test_order | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 487, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_3_{strides=False, ver=3}::test_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 496, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_3_{strides=False, ver=3}::test_with_zero_size_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 504, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_4_{strides=None, ver=0}::test_asnumpy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 514, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_4_{strides=None, ver=0}::test_base | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 472, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_4_{strides=None, ver=0}::test_not_copied | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 479, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_4_{strides=None, ver=0}::test_order | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 487, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_4_{strides=None, ver=0}::test_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 496, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_4_{strides=None, ver=0}::test_with_zero_size_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 504, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_5_{strides=None, ver=1}::test_asnumpy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 514, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_5_{strides=None, ver=1}::test_base | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 472, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_5_{strides=None, ver=1}::test_not_copied | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 479, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_5_{strides=None, ver=1}::test_order | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 487, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_5_{strides=None, ver=1}::test_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 496, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_5_{strides=None, ver=1}::test_with_zero_size_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 504, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_6_{strides=None, ver=2}::test_asnumpy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 514, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_6_{strides=None, ver=2}::test_base | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 472, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_6_{strides=None, ver=2}::test_not_copied | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 479, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_6_{strides=None, ver=2}::test_order | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 487, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_6_{strides=None, ver=2}::test_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 496, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_6_{strides=None, ver=2}::test_with_zero_size_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 504, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_7_{strides=None, ver=3}::test_asnumpy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 514, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_7_{strides=None, ver=3}::test_base | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 472, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_7_{strides=None, ver=3}::test_not_copied | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 479, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_7_{strides=None, ver=3}::test_order | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 487, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_7_{strides=None, ver=3}::test_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 496, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_7_{strides=None, ver=3}::test_with_zero_size_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 504, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_8_{strides=True, ver=0}::test_asnumpy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 514, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_8_{strides=True, ver=0}::test_base | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 472, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_8_{strides=True, ver=0}::test_not_copied | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 479, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_8_{strides=True, ver=0}::test_order | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 487, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_8_{strides=True, ver=0}::test_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 496, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_8_{strides=True, ver=0}::test_with_zero_size_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 504, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_9_{strides=True, ver=1}::test_asnumpy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 514, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_9_{strides=True, ver=1}::test_base | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 472, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_9_{strides=True, ver=1}::test_not_copied | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 479, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_9_{strides=True, ver=1}::test_order | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 487, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_9_{strides=True, ver=1}::test_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 496, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_9_{strides=True, ver=1}::test_with_zero_size_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 504, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_10_{strides=True, ver=2}::test_asnumpy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 514, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_10_{strides=True, ver=2}::test_base | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 472, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_10_{strides=True, ver=2}::test_not_copied | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 479, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_10_{strides=True, ver=2}::test_order | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 487, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_10_{strides=True, ver=2}::test_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 496, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_10_{strides=True, ver=2}::test_with_zero_size_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 504, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_11_{strides=True, ver=3}::test_asnumpy | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 514, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_11_{strides=True, ver=3}::test_base | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 472, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_11_{strides=True, ver=3}::test_not_copied | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 479, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_11_{strides=True, ver=3}::test_order | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 487, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_11_{strides=True, ver=3}::test_with_strides | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 496, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterface_param_11_{strides=True, ver=3}::test_with_zero_size_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 504, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterfaceMaskedArray_param_0_{strides=False, ver=1}::test_masked_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 532, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterfaceMaskedArray_param_1_{strides=False, ver=2}::test_masked_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 532, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterfaceMaskedArray_param_2_{strides=False, ver=3}::test_masked_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 532, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterfaceMaskedArray_param_3_{strides=None, ver=1}::test_masked_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 532, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterfaceMaskedArray_param_4_{strides=None, ver=2}::test_masked_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 532, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterfaceMaskedArray_param_5_{strides=None, ver=3}::test_masked_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 532, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterfaceMaskedArray_param_6_{strides=True, ver=1}::test_masked_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 532, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterfaceMaskedArray_param_7_{strides=True, ver=2}::test_masked_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 532, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/creation_tests/test_from_data.py::TestCudaArrayInterfaceMaskedArray_param_8_{strides=True, ver=3}::test_masked_array | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/creation_tests/test_from_data.py', 532, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_compiler.py::TestNvrtcArch::test_compile_cuda101 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_compiler.py', 56, 'Skipped: CUDA specific tests') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_compiler.py::TestNvrtcArch::test_compile_cuda11 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_compiler.py', 69, 'Skipped: CUDA specific tests') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_compiler.py::TestNvrtcArch::test_compile_cuda9 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_compiler.py', 44, 'Skipped: CUDA specific tests') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_compiler.py::TestNvrtcArch::test_get_arch_cuda101 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_compiler.py', 31, 'Skipped: CUDA specific tests') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_compiler.py::TestNvrtcArch::test_get_arch_cuda11 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_compiler.py', 36, 'Skipped: CUDA specific tests') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_compiler.py::TestNvrtcArch::test_get_arch_cuda9 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_compiler.py', 25, 'Skipped: CUDA specific tests') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_compiler.py::TestNvrtcStderr::test1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_compiler.py', 85, 'Skipped: HIPRTC has different error message') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cudnn.py::TestExceptionPicklable::test | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cudnn.py', 13, 'Skipped: cuDNN is unavailable') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestMultiGpuPlan1dNumPy_param_0_{shape=(64,)}::test_fft | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 36, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestMultiGpuPlan1dNumPy_param_0_{shape=(64,)}::test_ifft | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 68, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestMultiGpuPlan1dNumPy_param_1_{shape=(4, 16)}::test_fft | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 36, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestMultiGpuPlan1dNumPy_param_1_{shape=(4, 16)}::test_ifft | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 68, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestMultiGpuPlan1dNumPy_param_2_{shape=(128,)}::test_fft | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 36, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestMultiGpuPlan1dNumPy_param_2_{shape=(128,)}::test_ifft | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 68, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestMultiGpuPlan1dNumPy_param_3_{shape=(8, 32)}::test_fft | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 36, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestMultiGpuPlan1dNumPy_param_3_{shape=(8, 32)}::test_ifft | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 68, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestXtPlanNd_param_0_{shape=(4, 16)}::test_backward_fft | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 141, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestXtPlanNd_param_0_{shape=(4, 16)}::test_backward_fft_complex32 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 199, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestXtPlanNd_param_0_{shape=(4, 16)}::test_forward_fft | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 118, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestXtPlanNd_param_0_{shape=(4, 16)}::test_forward_fft_complex32 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 164, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestXtPlanNd_param_1_{shape=(4, 16, 16)}::test_backward_fft | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 141, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestXtPlanNd_param_1_{shape=(4, 16, 16)}::test_backward_fft_complex32 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 199, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestXtPlanNd_param_1_{shape=(4, 16, 16)}::test_forward_fft | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 118, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cufft.py::TestXtPlanNd_param_1_{shape=(4, 16, 16)}::test_forward_fft_complex32 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cufft.py', 164, 'Skipped: not supported by hipFFT') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_cutensor.py::TestExceptionPicklable::test | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_cutensor.py', 10, 'Skipped: cuTensor is unavailable') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_driver.py::TestDriver::test_ctxGetCurrent | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_driver.py', 11, 'Skipped: Context API is dperecated in HIP') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_driver.py::TestDriver::test_ctxGetCurrent_thread | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_driver.py', 16, 'Skipped: Context API is dperecated in HIP') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemory_param_2_{allocator=malloc_managed, specify_device_id=True}::test_device0 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 85, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemory_param_2_{allocator=malloc_managed, specify_device_id=True}::test_device1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 88, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemory_param_3_{allocator=malloc_managed, specify_device_id=False}::test_device0 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 85, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemory_param_3_{allocator=malloc_managed, specify_device_id=False}::test_device1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 88, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemory_param_4_{allocator=malloc_async, specify_device_id=True}::test_device0 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 85, 'Skipped: HIP does not support async mempool') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemory_param_4_{allocator=malloc_async, specify_device_id=True}::test_device1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 88, 'Skipped: HIP does not support async mempool') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemory_param_5_{allocator=malloc_async, specify_device_id=False}::test_device0 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 85, 'Skipped: HIP does not support async mempool') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemory_param_5_{allocator=malloc_async, specify_device_id=False}::test_device1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 88, 'Skipped: HIP does not support async mempool') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_1_{allocator=malloc_managed}::test_double_free | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 669, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_1_{allocator=malloc_managed}::test_free_all_blocks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 675, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_1_{allocator=malloc_managed}::test_free_all_blocks_without_malloc | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 686, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_1_{allocator=malloc_managed}::test_free_all_free | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 692, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_1_{allocator=malloc_managed}::test_free_all_free_without_malloc | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 704, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_1_{allocator=malloc_managed}::test_free_bytes | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 720, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_1_{allocator=malloc_managed}::test_n_free_blocks_without_malloc | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 711, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_1_{allocator=malloc_managed}::test_total_bytes | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 724, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_1_{allocator=malloc_managed}::test_used_bytes | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 716, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_1_{allocator=malloc_managed}::test_zero_size_alloc | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 663, 'Skipped: HIP does not support managed memory') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocator::test_reuse_between_thread_ptds | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 859, 'Skipped: No PTDS on HIP') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMallocAsync::test | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 982, 'Skipped: HIP does not support async allocator') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMallocAsync::test_stream1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 985, 'Skipped: HIP does not support async allocator') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMallocAsync::test_stream2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 991, 'Skipped: HIP does not support async allocator') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMallocAsync::test_stream3 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 998, 'Skipped: HIP does not support async allocator') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMallocAsync::test_stream4 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 1008, 'Skipped: HIP does not support async allocator') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMallocAsync::test_stream5 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 1015, 'Skipped: HIP does not support async allocator') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryAsyncPool::test_alloc | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 1045, 'Skipped: HIP does not support async allocator') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryAsyncPool::test_free_all_blocks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 1060, 'Skipped: HIP does not support async allocator') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryAsyncPool::test_zero_size_alloc | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_memory.py', 1039, 'Skipped: HIP does not support async allocator') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_0_{stream_name='null'}::test_eq_cuda | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_stream.py', 30, 'Skipped: This test is only for CUDA') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_0_{stream_name='null'}::test_launch_host_func | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_stream.py', 109, 'Skipped: HIP does not support launch_host_func') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_1_{stream_name='ptds'}::test_del | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_stream.py', 73, 'Skipped: HIP does not support PTDS') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_1_{stream_name='ptds'}::test_del_default | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_stream.py', 70, 'Skipped: HIP does not support PTDS') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_1_{stream_name='ptds'}::test_eq_cuda | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_stream.py', 30, 'Skipped: This test is only for CUDA') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_1_{stream_name='ptds'}::test_eq_hip | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_stream.py', 48, 'Skipped: HIP does not support PTDS') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_1_{stream_name='ptds'}::test_get_and_add_callback | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_stream.py', 82, 'Skipped: HIP does not support PTDS') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_1_{stream_name='ptds'}::test_launch_host_func | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_stream.py', 109, 'Skipped: HIP does not support launch_host_func') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_1_{stream_name='ptds'}::test_use | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_stream.py', 139, 'Skipped: HIP does not support PTDS') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_1_{stream_name='ptds'}::test_with_statement | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_stream.py', 128, 'Skipped: HIP does not support PTDS') | |||
| Skipped | tests/cupy_tests/cuda_tests/test_stream.py::TestExternalStream::test_launch_host_func | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/cuda_tests/test_stream.py', 172, 'Skipped: HIP does not support launch_host_func') | |||
| Skipped | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache11 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_cache.py', 391, "Skipped: hipFFT doesn't support multi-GPU") | |||
| Skipped | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache12 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_cache.py', 425, "Skipped: hipFFT doesn't support multi-GPU") | |||
| Skipped | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache13 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_cache.py', 450, 'Skipped: rocFFT has different plan sizes') | |||
| Skipped | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache7 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_cache.py', 234, "Skipped: hipFFT doesn't support multi-GPU") | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 143, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 148, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 153, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 158, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_store[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 200, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_store[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 205, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_store[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 210, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_store[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 215, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 272, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 277, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 282, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 287, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_aux[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 292, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_fft_load_store_aux[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 391, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_ifft_load_store_aux[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 396, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_rfft_load_store_aux[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 401, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_0_{n=None, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_1_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_2_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_3_{n=None, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_6_{n=5, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_7_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_8_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_9_{n=5, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_10_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_11_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_12_{n=10, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_13_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_14_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_15_{n=10, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_16_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_17_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_18_{n=15, norm=None, shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_19_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_20_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_21_{n=15, norm='ortho', shape=(10, 7)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_22_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::Test1dCallbacks::test_irfft_load_store_aux[_param_23_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 406, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 462, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 462, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 462, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 462, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 462, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 462, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 462, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 462, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 462, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 462, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 462, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 468, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 468, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 468, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 468, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 468, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 468, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 468, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 468, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 468, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 468, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 468, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 474, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 474, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 474, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 474, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 474, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 474, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 474, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 474, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 474, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 474, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 474, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 480, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 480, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 480, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 480, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 480, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 480, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 480, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 480, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 480, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 480, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 480, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_store[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 523, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_store[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 523, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_store[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 523, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_store[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 523, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_store[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 523, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_store[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 523, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_store[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 523, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_store[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 523, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_store[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 523, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_store[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 523, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_store[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 523, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_store[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 529, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_store[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 529, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_store[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 529, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_store[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 529, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_store[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 529, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_store[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 529, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_store[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 529, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_store[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 529, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_store[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 529, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_store[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 529, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_store[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 529, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_store[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 535, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_store[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 535, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_store[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 535, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_store[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 535, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_store[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 535, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_store[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 535, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_store[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 535, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_store[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 535, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_store[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 535, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_store[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 535, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_store[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 535, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_store[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 541, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_store[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 541, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_store[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 541, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_store[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 541, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_store[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 541, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_store[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 541, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_store[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 541, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_store[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 541, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_store[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 541, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_store[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 541, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_store[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 541, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 599, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 599, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 599, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 599, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 599, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 599, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 599, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 599, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 599, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 599, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 599, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 605, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 605, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 605, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 605, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 605, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 605, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 605, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 605, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 605, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 605, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 605, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 611, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 611, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 611, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 611, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 611, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 611, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 611, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 611, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 611, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 611, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 611, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 617, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 617, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 617, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 617, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 617, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 617, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 617, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 617, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 617, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 617, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 617, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store_aux[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 688, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store_aux[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 688, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store_aux[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 688, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store_aux[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 688, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store_aux[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 688, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store_aux[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 688, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store_aux[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 688, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store_aux[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 688, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store_aux[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 688, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store_aux[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 688, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_fftn_load_store_aux[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 688, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store_aux[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 694, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store_aux[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 694, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store_aux[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 694, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store_aux[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 694, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store_aux[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 694, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store_aux[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 694, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store_aux[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 694, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store_aux[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 694, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store_aux[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 694, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store_aux[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 694, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_ifftn_load_store_aux[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 694, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store_aux[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 700, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store_aux[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 700, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store_aux[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 700, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store_aux[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 700, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store_aux[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 700, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store_aux[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 700, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store_aux[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 700, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store_aux[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 700, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store_aux[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 700, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store_aux[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 700, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_rfftn_load_store_aux[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 700, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store_aux[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 706, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store_aux[_param_1_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 706, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store_aux[_param_2_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 706, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store_aux[_param_3_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 706, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store_aux[_param_4_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 706, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store_aux[_param_5_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 706, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store_aux[_param_6_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 706, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store_aux[_param_7_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 706, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store_aux[_param_8_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 706, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store_aux[_param_9_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 706, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_callback.py::TestNdCallbacks::test_irfftn_load_store_aux[_param_10_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_callback.py', 706, 'Skipped: hipFFT does not support callbacks') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_4_{n=None, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_5_{n=None, norm='backward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_6_{n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_7_{n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_12_{n=None, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_13_{n=None, norm='forward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_14_{n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_15_{n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_24_{n=0, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_25_{n=0, norm='backward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_26_{n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_27_{n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_32_{n=0, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_33_{n=0, norm='forward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_34_{n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_35_{n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_44_{n=5, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_45_{n=5, norm='backward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_46_{n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_47_{n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_52_{n=5, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_53_{n=5, norm='forward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_54_{n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_55_{n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_64_{n=10, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_65_{n=10, norm='backward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_66_{n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_67_{n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_72_{n=10, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_73_{n=10, norm='forward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_74_{n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_75_{n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_84_{n=15, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_85_{n=15, norm='backward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_86_{n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_87_{n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_92_{n=15, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_93_{n=15, norm='forward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_94_{n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_95_{n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_4_{n=None, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_5_{n=None, norm='backward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_6_{n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_7_{n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_12_{n=None, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_13_{n=None, norm='forward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_14_{n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_15_{n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_24_{n=0, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_25_{n=0, norm='backward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_26_{n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_27_{n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_32_{n=0, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_33_{n=0, norm='forward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_34_{n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_35_{n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_44_{n=5, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_45_{n=5, norm='backward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_46_{n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_47_{n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_52_{n=5, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_53_{n=5, norm='forward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_54_{n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_55_{n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_64_{n=10, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_65_{n=10, norm='backward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_66_{n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_67_{n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_72_{n=10, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_73_{n=10, norm='forward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_74_{n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_75_{n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_84_{n=15, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_85_{n=15, norm='backward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_86_{n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_87_{n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_92_{n=15, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_93_{n=15, norm='forward', shape=(10, 0)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_94_{n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_95_{n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_0_{n=None, norm=None, shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_1_{n=None, norm=None, shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_2_{n=None, norm=None, shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_3_{n=None, norm=None, shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_4_{n=None, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_5_{n=None, norm='backward', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_6_{n=None, norm='backward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_7_{n=None, norm='backward', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_8_{n=None, norm='ortho', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_9_{n=None, norm='ortho', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_10_{n=None, norm='ortho', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_11_{n=None, norm='ortho', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_12_{n=None, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_13_{n=None, norm='forward', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_14_{n=None, norm='forward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_15_{n=None, norm='forward', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_16_{n=None, norm='', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_17_{n=None, norm='', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_18_{n=None, norm='', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_19_{n=None, norm='', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_20_{n=0, norm=None, shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_21_{n=0, norm=None, shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_22_{n=0, norm=None, shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_23_{n=0, norm=None, shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_24_{n=0, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_25_{n=0, norm='backward', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_26_{n=0, norm='backward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_27_{n=0, norm='backward', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_28_{n=0, norm='ortho', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_29_{n=0, norm='ortho', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_30_{n=0, norm='ortho', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_31_{n=0, norm='ortho', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_32_{n=0, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_33_{n=0, norm='forward', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_34_{n=0, norm='forward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_35_{n=0, norm='forward', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_36_{n=0, norm='', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_37_{n=0, norm='', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_38_{n=0, norm='', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_39_{n=0, norm='', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_40_{n=64, norm=None, shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_41_{n=64, norm=None, shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_42_{n=64, norm=None, shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_43_{n=64, norm=None, shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_44_{n=64, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_45_{n=64, norm='backward', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_46_{n=64, norm='backward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_47_{n=64, norm='backward', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_48_{n=64, norm='ortho', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_49_{n=64, norm='ortho', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_50_{n=64, norm='ortho', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_51_{n=64, norm='ortho', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_52_{n=64, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_53_{n=64, norm='forward', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_54_{n=64, norm='forward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_55_{n=64, norm='forward', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_56_{n=64, norm='', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_57_{n=64, norm='', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_58_{n=64, norm='', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_fft[_param_59_{n=64, norm='', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 197, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_0_{n=None, norm=None, shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_1_{n=None, norm=None, shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_2_{n=None, norm=None, shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_3_{n=None, norm=None, shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_4_{n=None, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_5_{n=None, norm='backward', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_6_{n=None, norm='backward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_7_{n=None, norm='backward', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_8_{n=None, norm='ortho', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_9_{n=None, norm='ortho', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_10_{n=None, norm='ortho', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_11_{n=None, norm='ortho', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_12_{n=None, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_13_{n=None, norm='forward', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_14_{n=None, norm='forward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_15_{n=None, norm='forward', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_16_{n=None, norm='', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_17_{n=None, norm='', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_18_{n=None, norm='', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_19_{n=None, norm='', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_20_{n=0, norm=None, shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_21_{n=0, norm=None, shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_22_{n=0, norm=None, shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_23_{n=0, norm=None, shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_24_{n=0, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_25_{n=0, norm='backward', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_26_{n=0, norm='backward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_27_{n=0, norm='backward', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_28_{n=0, norm='ortho', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_29_{n=0, norm='ortho', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_30_{n=0, norm='ortho', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_31_{n=0, norm='ortho', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_32_{n=0, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_33_{n=0, norm='forward', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_34_{n=0, norm='forward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_35_{n=0, norm='forward', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_36_{n=0, norm='', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_37_{n=0, norm='', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_38_{n=0, norm='', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_39_{n=0, norm='', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_40_{n=64, norm=None, shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_41_{n=64, norm=None, shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_42_{n=64, norm=None, shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_43_{n=64, norm=None, shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_44_{n=64, norm='backward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_45_{n=64, norm='backward', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_46_{n=64, norm='backward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_47_{n=64, norm='backward', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_48_{n=64, norm='ortho', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_49_{n=64, norm='ortho', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_50_{n=64, norm='ortho', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_51_{n=64, norm='ortho', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_52_{n=64, norm='forward', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_53_{n=64, norm='forward', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_54_{n=64, norm='forward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_55_{n=64, norm='forward', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_56_{n=64, norm='', shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_57_{n=64, norm='', shape=(0, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_58_{n=64, norm='', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFft::test_ifft[_param_59_{n=64, norm='', shape=(4, 64)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 213, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_fft[_param_0_{axis=0, data_order='F', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 245, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_fft[_param_1_{axis=0, data_order='F', shape=(10, 5, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 245, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_fft[_param_2_{axis=0, data_order='C', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 245, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_fft[_param_3_{axis=0, data_order='C', shape=(10, 5, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 245, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_fft[_param_4_{axis=1, data_order='F', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 245, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_fft[_param_5_{axis=1, data_order='F', shape=(10, 5, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 245, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_fft[_param_6_{axis=1, data_order='C', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 245, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_fft[_param_7_{axis=1, data_order='C', shape=(10, 5, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 245, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_fft[_param_8_{axis=-1, data_order='F', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 245, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_fft[_param_9_{axis=-1, data_order='F', shape=(10, 5, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 245, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_fft[_param_10_{axis=-1, data_order='C', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 245, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_fft[_param_11_{axis=-1, data_order='C', shape=(10, 5, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 245, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_ifft[_param_0_{axis=0, data_order='F', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 263, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_ifft[_param_1_{axis=0, data_order='F', shape=(10, 5, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 263, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_ifft[_param_2_{axis=0, data_order='C', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 263, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_ifft[_param_3_{axis=0, data_order='C', shape=(10, 5, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 263, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_ifft[_param_4_{axis=1, data_order='F', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 263, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_ifft[_param_5_{axis=1, data_order='F', shape=(10, 5, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 263, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_ifft[_param_6_{axis=1, data_order='C', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 263, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_ifft[_param_7_{axis=1, data_order='C', shape=(10, 5, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 263, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_ifft[_param_8_{axis=-1, data_order='F', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 263, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_ifft[_param_9_{axis=-1, data_order='F', shape=(10, 5, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 263, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_ifft[_param_10_{axis=-1, data_order='C', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 263, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuFftOrder::test_ifft[_param_11_{axis=-1, data_order='C', shape=(10, 5, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 263, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_6_{axes=None, norm='backward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_8_{axes=None, norm='forward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_11_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_13_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_16_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_18_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_26_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_28_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_31_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_33_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_36_{axes=(), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_38_{axes=(), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_46_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_48_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_56_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_58_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_61_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_63_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_66_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_68_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_71_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_73_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_76_{axes=(), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_78_{axes=(), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_81_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_83_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_86_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_88_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_91_{axes=None, norm='backward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_93_{axes=None, norm='forward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_96_{axes=None, norm='backward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_98_{axes=None, norm='forward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_101_{axes=None, norm='backward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_103_{axes=None, norm='forward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_106_{axes=None, norm='backward', s=(0, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_108_{axes=None, norm='forward', s=(0, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_111_{axes=None, norm='backward', s=(1, 0), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_113_{axes=None, norm='forward', s=(1, 0), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_6_{axes=None, norm='backward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_8_{axes=None, norm='forward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_11_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_13_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_16_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_18_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_26_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_28_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_31_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_33_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_36_{axes=(), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_38_{axes=(), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_46_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_48_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_56_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_58_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_61_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_63_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_66_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_68_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_71_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_73_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_76_{axes=(), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_78_{axes=(), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_81_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_83_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_86_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_88_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_91_{axes=None, norm='backward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_93_{axes=None, norm='forward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_96_{axes=None, norm='backward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_98_{axes=None, norm='forward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_101_{axes=None, norm='backward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_103_{axes=None, norm='forward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_106_{axes=None, norm='backward', s=(0, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_108_{axes=None, norm='forward', s=(0, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_111_{axes=None, norm='backward', s=(1, 0), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_113_{axes=None, norm='forward', s=(1, 0), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_6_{axes=None, norm='backward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_8_{axes=None, norm='forward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_11_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_13_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_16_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_18_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_26_{axes=[-1, -2], norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_28_{axes=[-1, -2], norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_36_{axes=(), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_38_{axes=(), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_41_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_43_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_46_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_48_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_51_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_53_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_56_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_58_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_61_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_63_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_66_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_68_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_71_{axes=(-1, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_73_{axes=(-1, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_76_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_78_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_81_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_83_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_86_{axes=(), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_88_{axes=(), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_91_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_93_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_96_{axes=(2, 0, 1), norm='backward', s=(4, 3, 2), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_98_{axes=(2, 0, 1), norm='forward', s=(4, 3, 2), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_106_{axes=None, norm='backward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_108_{axes=None, norm='forward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_111_{axes=None, norm='backward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_113_{axes=None, norm='forward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_116_{axes=None, norm='backward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_118_{axes=None, norm='forward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_6_{axes=None, norm='backward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_8_{axes=None, norm='forward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_11_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_13_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_16_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_18_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_26_{axes=[-1, -2], norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_28_{axes=[-1, -2], norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_36_{axes=(), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_38_{axes=(), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_41_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_43_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_46_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_48_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_51_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_53_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_56_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_58_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_61_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_63_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_66_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_68_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_71_{axes=(-1, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_73_{axes=(-1, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_76_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_78_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_81_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_83_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_86_{axes=(), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_88_{axes=(), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_91_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_93_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_96_{axes=(2, 0, 1), norm='backward', s=(4, 3, 2), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_98_{axes=(2, 0, 1), norm='forward', s=(4, 3, 2), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_106_{axes=None, norm='backward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_108_{axes=None, norm='forward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_111_{axes=None, norm='backward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_113_{axes=None, norm='forward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_116_{axes=None, norm='backward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_118_{axes=None, norm='forward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_5_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_7_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_9_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_11_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_13_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_15_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_17_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_19_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_21_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_23_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_25_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_27_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_29_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_31_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_33_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_35_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_37_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_39_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_40_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 556, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_41_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 556, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_42_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 556, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_43_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 556, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_45_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_47_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_49_{axes=None, norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_51_{axes=None, norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_53_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_55_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_57_{axes=None, norm='backward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_59_{axes=None, norm='forward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_61_{axes=None, norm='backward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_63_{axes=None, norm='forward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_65_{axes=None, norm='backward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_67_{axes=None, norm='forward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_5_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_7_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_9_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_11_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_13_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_15_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_17_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_19_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_21_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_23_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_25_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_27_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_29_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_31_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_33_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_35_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_37_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_39_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_40_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 556, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_41_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 556, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_42_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 556, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_43_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 556, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_45_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_47_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_49_{axes=None, norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_51_{axes=None, norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_53_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_55_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_57_{axes=None, norm='backward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_59_{axes=None, norm='forward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_61_{axes=None, norm='backward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_63_{axes=None, norm='forward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_65_{axes=None, norm='backward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_67_{axes=None, norm='forward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_5_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_7_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_9_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_11_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_13_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_15_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_17_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_19_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_21_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_23_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_25_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_27_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_29_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_31_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_33_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_35_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_37_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_39_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_40_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 556, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_41_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 556, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_42_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 556, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_43_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 556, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_45_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_47_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_49_{axes=None, norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_51_{axes=None, norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_53_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_55_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_57_{axes=None, norm='backward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_59_{axes=None, norm='forward', s=None, shape=(0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_61_{axes=None, norm='backward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_63_{axes=None, norm='forward', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_65_{axes=None, norm='backward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_67_{axes=None, norm='forward', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_1_{n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_3_{n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_5_{n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_7_{n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_9_{n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_11_{n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_13_{n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_15_{n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_1_{n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_3_{n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_5_{n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_7_{n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_9_{n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_11_{n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_13_{n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_15_{n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_1_{n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_3_{n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_5_{n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_7_{n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_9_{n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_11_{n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_13_{n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_15_{n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_0_{n=None, norm=None, shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_1_{n=None, norm=None, shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_2_{n=None, norm='backward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_3_{n=None, norm='backward', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_4_{n=None, norm='ortho', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_5_{n=None, norm='ortho', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_6_{n=None, norm='forward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_7_{n=None, norm='forward', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_8_{n=None, norm='', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_9_{n=None, norm='', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_10_{n=64, norm=None, shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_11_{n=64, norm=None, shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_12_{n=64, norm='backward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_13_{n=64, norm='backward', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_14_{n=64, norm='ortho', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_15_{n=64, norm='ortho', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_16_{n=64, norm='forward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_17_{n=64, norm='forward', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_18_{n=64, norm='', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft[_param_19_{n=64, norm='', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 717, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_0_{n=None, norm=None, shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_1_{n=None, norm=None, shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_2_{n=None, norm='backward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_3_{n=None, norm='backward', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_4_{n=None, norm='ortho', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_5_{n=None, norm='ortho', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_6_{n=None, norm='forward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_7_{n=None, norm='forward', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_8_{n=None, norm='', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_9_{n=None, norm='', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_10_{n=64, norm=None, shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_11_{n=64, norm=None, shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_12_{n=64, norm='backward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_13_{n=64, norm='backward', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_14_{n=64, norm='ortho', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_15_{n=64, norm='ortho', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_16_{n=64, norm='forward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_17_{n=64, norm='forward', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_18_{n=64, norm='', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_ifft[_param_19_{n=64, norm='', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 741, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_0_{n=None, norm=None, shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_1_{n=None, norm=None, shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_2_{n=None, norm='backward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_3_{n=None, norm='backward', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_4_{n=None, norm='ortho', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_5_{n=None, norm='ortho', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_6_{n=None, norm='forward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_7_{n=None, norm='forward', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_8_{n=None, norm='', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_9_{n=None, norm='', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_10_{n=64, norm=None, shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_11_{n=64, norm=None, shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_12_{n=64, norm='backward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_13_{n=64, norm='backward', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_14_{n=64, norm='ortho', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_15_{n=64, norm='ortho', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_16_{n=64, norm='forward', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_17_{n=64, norm='forward', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_18_{n=64, norm='', shape=(64,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestMultiGpuPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_19_{n=64, norm='', shape=(128,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 764, 'Skipped: hipFFT does not support multi-GPU FFT') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_6_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_8_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_11_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_13_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_16_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_18_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_21_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_23_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_26_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_28_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_31_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_33_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_36_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_38_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_41_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_43_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_46_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_48_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_51_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_53_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_56_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_58_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_6_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_8_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_11_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_13_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_16_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_18_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_21_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_23_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_26_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_28_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_31_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_33_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_36_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_38_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_41_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_43_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_46_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_48_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_51_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_53_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_56_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_58_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_2_{n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_3_{n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_6_{n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_7_{n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_12_{n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_13_{n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_16_{n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_17_{n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_22_{n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_23_{n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_26_{n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_27_{n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_32_{n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_33_{n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_36_{n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_37_{n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_2_{n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_3_{n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_6_{n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_7_{n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_12_{n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_13_{n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_16_{n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_17_{n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_22_{n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_23_{n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_26_{n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_27_{n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_32_{n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_33_{n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_36_{n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_37_{n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_1_{n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_3_{n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_5_{n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_7_{n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_9_{n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_11_{n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_13_{n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_15_{n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_1_{n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_3_{n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_5_{n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_7_{n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_9_{n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_11_{n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_13_{n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_15_{n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_1_{n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_3_{n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_5_{n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_7_{n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_9_{n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_11_{n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_13_{n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_15_{n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_6_{axes=None, norm='backward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_8_{axes=None, norm='forward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_11_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_13_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_16_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_18_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_26_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_28_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_31_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_33_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_36_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_38_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_41_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_43_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_46_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_48_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_51_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_53_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_56_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_58_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_61_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_63_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_71_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_73_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_76_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_78_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_6_{axes=None, norm='backward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_8_{axes=None, norm='forward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_11_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_13_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_16_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_18_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_26_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_28_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_31_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_33_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_36_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_38_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_41_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_43_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_46_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_48_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_51_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_53_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_56_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_58_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_61_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_63_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_71_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_73_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_76_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_78_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_6_{axes=None, norm='backward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_8_{axes=None, norm='forward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_11_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_13_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_16_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_18_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_26_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_28_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_31_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_33_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_36_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_38_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_41_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_43_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_46_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_48_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_51_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_53_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_56_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_58_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_61_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_63_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_71_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_73_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_76_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_78_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_6_{axes=None, norm='backward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_8_{axes=None, norm='forward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_11_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_13_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_16_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_18_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_26_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_28_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_31_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_33_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_36_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_38_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_41_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_43_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_46_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_48_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_51_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_53_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_56_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_58_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_61_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_63_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_71_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_73_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_76_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_78_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_6_{axes=None, norm='backward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_8_{axes=None, norm='forward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_11_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_13_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_16_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_18_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_36_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_38_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_41_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_43_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_46_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_48_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1135, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1135, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1135, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1135, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1135, "Skipped: hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_5_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_6_{axes=None, norm='backward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_7_{axes=None, norm='ortho', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_8_{axes=None, norm='forward', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_9_{axes=None, norm='', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_10_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_11_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_12_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_13_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_14_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_15_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_16_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_17_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_18_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_19_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_35_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_36_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_37_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_38_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_39_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_40_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_41_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_42_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_43_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_44_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_45_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_46_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_47_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_48_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_49_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_irfftn[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 1159, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_6_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_8_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_11_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_13_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_16_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_18_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_21_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_23_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_26_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_28_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_31_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_33_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_61_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_63_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_6_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_8_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_11_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_13_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_16_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_18_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_21_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_23_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_26_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_28_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_31_{axes=None, norm='backward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_33_{axes=None, norm='forward', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_61_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_63_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_2_{n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_3_{n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_6_{n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_7_{n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_12_{n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_13_{n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_16_{n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_17_{n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_22_{n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_23_{n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_26_{n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_27_{n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_32_{n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_33_{n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_36_{n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_37_{n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_2_{n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_3_{n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_6_{n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_7_{n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_12_{n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_13_{n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_16_{n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_17_{n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_22_{n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_23_{n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_26_{n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_27_{n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_32_{n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_33_{n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_36_{n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_37_{n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/fft_tests/test_fft.py', 18, 'Skipped: forward/backward is supported by NumPy 1.20+') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_zero_dim[_param_0_{variable=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 80, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_zero_dim[_param_1_{variable='y'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 80, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_zero_size[_param_0_{variable=None}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 90, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_zero_size[_param_1_{variable='y'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 90, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_0_{exp=0, shape=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_1_{exp=0, shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_2_{exp=0, shape=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_3_{exp=4, shape=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_4_{exp=4, shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_5_{exp=4, shape=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_6_{exp=5, shape=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_7_{exp=5, shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_8_{exp=5, shape=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_9_{exp=5, shape=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_10_{exp=5, shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_11_{exp=5, shape=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_12_{exp=5, shape=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_13_{exp=5, shape=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPow::test_poly1d_pow_scalar[_param_14_{exp=5, shape=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 244, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_0_{func=<lambda>, type_l='poly1d', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_1_{func=<lambda>, type_l='poly1d', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_2_{func=<lambda>, type_l='poly1d', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_3_{func=<lambda>, type_l='poly1d', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_4_{func=<lambda>, type_l='python_scalar', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_5_{func=<lambda>, type_l='python_scalar', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_6_{func=<lambda>, type_l='python_scalar', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_7_{func=<lambda>, type_l='python_scalar', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_8_{func=<lambda>, type_l='ndarray', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_9_{func=<lambda>, type_l='ndarray', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_10_{func=<lambda>, type_l='ndarray', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_11_{func=<lambda>, type_l='ndarray', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_12_{func=<lambda>, type_l='poly1d', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_13_{func=<lambda>, type_l='poly1d', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_14_{func=<lambda>, type_l='poly1d', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_15_{func=<lambda>, type_l='poly1d', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_16_{func=<lambda>, type_l='python_scalar', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_17_{func=<lambda>, type_l='python_scalar', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_18_{func=<lambda>, type_l='python_scalar', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_19_{func=<lambda>, type_l='python_scalar', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_20_{func=<lambda>, type_l='ndarray', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_21_{func=<lambda>, type_l='ndarray', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_22_{func=<lambda>, type_l='ndarray', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_23_{func=<lambda>, type_l='ndarray', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_24_{func=<lambda>, type_l='poly1d', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_25_{func=<lambda>, type_l='poly1d', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_26_{func=<lambda>, type_l='poly1d', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_27_{func=<lambda>, type_l='poly1d', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_28_{func=<lambda>, type_l='python_scalar', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_29_{func=<lambda>, type_l='python_scalar', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_30_{func=<lambda>, type_l='python_scalar', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_31_{func=<lambda>, type_l='python_scalar', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_32_{func=<lambda>, type_l='ndarray', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_33_{func=<lambda>, type_l='ndarray', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_34_{func=<lambda>, type_l='ndarray', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPolynomialArithmetic::test_poly1d_arithmetic[_param_35_{func=<lambda>, type_l='ndarray', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 307, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_0_{fname='polyadd', type_l='poly1d', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_1_{fname='polyadd', type_l='poly1d', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_2_{fname='polyadd', type_l='poly1d', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_3_{fname='polyadd', type_l='poly1d', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_4_{fname='polyadd', type_l='ndarray', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_5_{fname='polyadd', type_l='ndarray', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_6_{fname='polyadd', type_l='ndarray', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_7_{fname='polyadd', type_l='ndarray', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_8_{fname='polyadd', type_l='python_scalar', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_9_{fname='polyadd', type_l='python_scalar', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_10_{fname='polyadd', type_l='python_scalar', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_11_{fname='polyadd', type_l='python_scalar', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_12_{fname='polyadd', type_l='numpy_scalar', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_13_{fname='polyadd', type_l='numpy_scalar', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_14_{fname='polyadd', type_l='numpy_scalar', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_15_{fname='polyadd', type_l='numpy_scalar', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_16_{fname='polysub', type_l='poly1d', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_17_{fname='polysub', type_l='poly1d', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_18_{fname='polysub', type_l='poly1d', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_19_{fname='polysub', type_l='poly1d', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_20_{fname='polysub', type_l='ndarray', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_21_{fname='polysub', type_l='ndarray', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_22_{fname='polysub', type_l='ndarray', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_23_{fname='polysub', type_l='ndarray', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_24_{fname='polysub', type_l='python_scalar', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_25_{fname='polysub', type_l='python_scalar', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_26_{fname='polysub', type_l='python_scalar', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_27_{fname='polysub', type_l='python_scalar', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_28_{fname='polysub', type_l='numpy_scalar', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_29_{fname='polysub', type_l='numpy_scalar', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_30_{fname='polysub', type_l='numpy_scalar', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_31_{fname='polysub', type_l='numpy_scalar', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_32_{fname='polymul', type_l='poly1d', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_33_{fname='polymul', type_l='poly1d', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_34_{fname='polymul', type_l='poly1d', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_35_{fname='polymul', type_l='poly1d', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_36_{fname='polymul', type_l='ndarray', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_37_{fname='polymul', type_l='ndarray', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_38_{fname='polymul', type_l='ndarray', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_39_{fname='polymul', type_l='ndarray', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_40_{fname='polymul', type_l='python_scalar', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_41_{fname='polymul', type_l='python_scalar', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_42_{fname='polymul', type_l='python_scalar', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_43_{fname='polymul', type_l='python_scalar', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_44_{fname='polymul', type_l='numpy_scalar', type_r='poly1d'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_45_{fname='polymul', type_l='numpy_scalar', type_r='ndarray'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_46_{fname='polymul', type_l='numpy_scalar', type_r='python_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dRoutines::test_poly1d_routine[_param_47_{fname='polymul', type_l='numpy_scalar', type_r='numpy_scalar'}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 369, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_0_{fname='polyadd', shape1=(), shape2=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_1_{fname='polyadd', shape1=(), shape2=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_2_{fname='polyadd', shape1=(), shape2=(3,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_3_{fname='polyadd', shape1=(), shape2=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_4_{fname='polyadd', shape1=(0,), shape2=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_5_{fname='polyadd', shape1=(0,), shape2=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_6_{fname='polyadd', shape1=(0,), shape2=(3,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_7_{fname='polyadd', shape1=(0,), shape2=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_8_{fname='polyadd', shape1=(3,), shape2=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_9_{fname='polyadd', shape1=(3,), shape2=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_10_{fname='polyadd', shape1=(3,), shape2=(3,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_11_{fname='polyadd', shape1=(3,), shape2=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_12_{fname='polyadd', shape1=(5,), shape2=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_13_{fname='polyadd', shape1=(5,), shape2=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_14_{fname='polyadd', shape1=(5,), shape2=(3,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_15_{fname='polyadd', shape1=(5,), shape2=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_16_{fname='polysub', shape1=(), shape2=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_17_{fname='polysub', shape1=(), shape2=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_18_{fname='polysub', shape1=(), shape2=(3,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_19_{fname='polysub', shape1=(), shape2=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_20_{fname='polysub', shape1=(0,), shape2=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_21_{fname='polysub', shape1=(0,), shape2=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_22_{fname='polysub', shape1=(0,), shape2=(3,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_23_{fname='polysub', shape1=(0,), shape2=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_24_{fname='polysub', shape1=(3,), shape2=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_25_{fname='polysub', shape1=(3,), shape2=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_26_{fname='polysub', shape1=(3,), shape2=(3,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_27_{fname='polysub', shape1=(3,), shape2=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_28_{fname='polysub', shape1=(5,), shape2=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_29_{fname='polysub', shape1=(5,), shape2=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_30_{fname='polysub', shape1=(5,), shape2=(3,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_31_{fname='polysub', shape1=(5,), shape2=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_32_{fname='polymul', shape1=(), shape2=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_33_{fname='polymul', shape1=(), shape2=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_34_{fname='polymul', shape1=(), shape2=(3,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_35_{fname='polymul', shape1=(), shape2=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_36_{fname='polymul', shape1=(0,), shape2=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_37_{fname='polymul', shape1=(0,), shape2=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_38_{fname='polymul', shape1=(0,), shape2=(3,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_39_{fname='polymul', shape1=(0,), shape2=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_40_{fname='polymul', shape1=(3,), shape2=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_41_{fname='polymul', shape1=(3,), shape2=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_42_{fname='polymul', shape1=(3,), shape2=(3,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_43_{fname='polymul', shape1=(3,), shape2=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_44_{fname='polymul', shape1=(5,), shape2=()}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_45_{fname='polymul', shape1=(5,), shape2=(0,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_46_{fname='polymul', shape1=(5,), shape2=(3,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticShapeCombination::test_polyroutine[_param_47_{fname='polymul', shape1=(5,), shape2=(5,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/lib_tests/test_polynomial.py', 429, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_0_{UPLO='U'}::test_eigh | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 32, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_0_{UPLO='U'}::test_eigh_batched | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 41, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_0_{UPLO='U'}::test_eigh_complex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 73, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_0_{UPLO='U'}::test_eigh_complex_batched | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 85, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_0_{UPLO='U'}::test_eigh_float16 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 59, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_0_{UPLO='U'}::test_eigvalsh | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 103, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_0_{UPLO='U'}::test_eigvalsh_batched | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 112, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_0_{UPLO='U'}::test_eigvalsh_complex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 122, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_0_{UPLO='U'}::test_eigvalsh_complex_batched | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 131, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_1_{UPLO='L'}::test_eigh | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 32, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_1_{UPLO='L'}::test_eigh_batched | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 41, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_1_{UPLO='L'}::test_eigh_complex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 73, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_1_{UPLO='L'}::test_eigh_complex_batched | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 85, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_1_{UPLO='L'}::test_eigh_float16 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 59, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_1_{UPLO='L'}::test_eigvalsh | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 103, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_1_{UPLO='L'}::test_eigvalsh_batched | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 112, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_1_{UPLO='L'}::test_eigvalsh_complex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 122, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/linalg_tests/test_eigenvalue.py::TestEigenvalue_param_1_{UPLO='L'}::test_eigvalsh_complex_batched | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/linalg_tests/test_eigenvalue.py', 131, 'Skipped: eigensolver not added until ROCm 4.2.0') | |||
| Skipped | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_out[no] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py', 370, 'Skipped: flaky xfail') | |||
| Skipped | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_out[equiv] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py', 370, 'Skipped: flaky xfail') | |||
| Skipped | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype[no] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py', 393, 'Skipped: flaky xfail') | |||
| Skipped | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype[equiv] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py', 393, 'Skipped: flaky xfail') | |||
| Skipped | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype[safe] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py', 393, 'Skipped: flaky xfail') | |||
| Skipped | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype[same_kind] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py', 393, 'Skipped: flaky xfail') | |||
| Skipped | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype[unsafe] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_arithmetic.py', 393, 'Skipped: flaky xfail') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum[_param_0_{order='C', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 403, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum[_param_1_{order='C', shape=(10, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 403, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum[_param_2_{order='C', shape=(10, 20, 30)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 403, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum[_param_3_{order='C', shape=(10, 20, 30, 40)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 403, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum[_param_4_{order='F', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 403, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum[_param_5_{order='F', shape=(10, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 403, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum[_param_6_{order='F', shape=(10, 20, 30)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 403, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum[_param_7_{order='F', shape=(10, 20, 30, 40)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 403, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum_empty_axis[_param_0_{order='C', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 426, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum_empty_axis[_param_1_{order='C', shape=(10, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 426, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum_empty_axis[_param_2_{order='C', shape=(10, 20, 30)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 426, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum_empty_axis[_param_3_{order='C', shape=(10, 20, 30, 40)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 426, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum_empty_axis[_param_4_{order='F', shape=(10,)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 426, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum_empty_axis[_param_5_{order='F', shape=(10, 20)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 426, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum_empty_axis[_param_6_{order='F', shape=(10, 20, 30)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 426, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/math_tests/test_sumprod.py::TestCuTensorReduction::test_cutensor_sum_empty_axis[_param_7_{order='F', shape=(10, 20, 30, 40)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/math_tests/test_sumprod.py', 426, 'Skipped: The cuTENSOR routine is not enabled') | |||
| Skipped | tests/cupy_tests/random_tests/test_bit_generator.py::TestBitGeneratorXORWOW::test_array_seed | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_bit_generator.py', 44, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_bit_generator.py::TestBitGeneratorXORWOW::test_seed_invalid_type_complex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_bit_generator.py', 34, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_bit_generator.py::TestBitGeneratorXORWOW::test_seed_invalid_type_float | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_bit_generator.py', 39, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_bit_generator.py::TestBitGeneratorXORWOW::test_seed_not_none | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_bit_generator.py', 30, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_bit_generator.py::TestBitGeneratorMRG32k3a::test_array_seed | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_bit_generator.py', 44, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_bit_generator.py::TestBitGeneratorMRG32k3a::test_seed_invalid_type_complex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_bit_generator.py', 34, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_bit_generator.py::TestBitGeneratorMRG32k3a::test_seed_invalid_type_float | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_bit_generator.py', 39, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_bit_generator.py::TestBitGeneratorMRG32k3a::test_seed_not_none | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_bit_generator.py', 30, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_bit_generator.py::TestBitGeneratorPhilox4x3210::test_array_seed | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_bit_generator.py', 44, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_bit_generator.py::TestBitGeneratorPhilox4x3210::test_seed_invalid_type_complex | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_bit_generator.py', 34, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_bit_generator.py::TestBitGeneratorPhilox4x3210::test_seed_invalid_type_float | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_bit_generator.py', 39, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_bit_generator.py::TestBitGeneratorPhilox4x3210::test_seed_not_none | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_bit_generator.py', 30, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_6_{a=0, p=None, size=0}::test_bound | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator.py', 874, 'Skipped: no bound check for empty `random.choice`') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_7_{a=array([], dtype=float64), p=None, size=0}::test_bound | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator.py', 874, 'Skipped: no bound check for empty `random.choice`') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestExponential_param_0_{scale=0.5}::test_exponential | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 218, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestExponential_param_0_{scale=0.5}::test_exponential_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 221, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestExponential_param_1_{scale=1}::test_exponential | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 218, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestExponential_param_1_{scale=1}::test_exponential_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 221, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestExponential_param_2_{scale=10}::test_exponential | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 218, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestExponential_param_2_{scale=10}::test_exponential_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 221, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestPoisson_param_0_{lam=1.0}::test_poisson | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 237, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestPoisson_param_0_{lam=1.0}::test_poisson_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 240, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestPoisson_param_0_{lam=1.0}::test_poisson_large | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 245, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestPoisson_param_1_{lam=3.0}::test_poisson | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 237, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestPoisson_param_1_{lam=3.0}::test_poisson_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 240, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestPoisson_param_1_{lam=3.0}::test_poisson_large | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 245, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestPoisson_param_2_{lam=10.0}::test_poisson | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 237, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestPoisson_param_2_{lam=10.0}::test_poisson_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 240, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestPoisson_param_2_{lam=10.0}::test_poisson_large | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 245, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestBeta_param_0_{a=1.0, b=3.0}::test_beta | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 140, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestBeta_param_0_{a=1.0, b=3.0}::test_beta_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 143, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestBeta_param_1_{a=3.0, b=3.0}::test_beta | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 140, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestBeta_param_1_{a=3.0, b=3.0}::test_beta_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 143, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestBeta_param_2_{a=3.0, b=1.0}::test_beta | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 140, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestBeta_param_2_{a=3.0, b=1.0}::test_beta_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 143, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_0_{scale=0.5, shape=0.5}::test_gamma_1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 265, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_0_{scale=0.5, shape=0.5}::test_gamma_2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 268, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_0_{scale=0.5, shape=0.5}::test_gamma_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 271, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_1_{scale=0.5, shape=1.0}::test_gamma_1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 265, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_1_{scale=0.5, shape=1.0}::test_gamma_2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 268, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_1_{scale=0.5, shape=1.0}::test_gamma_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 271, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_2_{scale=0.5, shape=3.0}::test_gamma_1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 265, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_2_{scale=0.5, shape=3.0}::test_gamma_2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 268, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_2_{scale=0.5, shape=3.0}::test_gamma_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 271, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_3_{scale=1.0, shape=0.5}::test_gamma_1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 265, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_3_{scale=1.0, shape=0.5}::test_gamma_2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 268, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_3_{scale=1.0, shape=0.5}::test_gamma_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 271, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_4_{scale=1.0, shape=1.0}::test_gamma_1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 265, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_4_{scale=1.0, shape=1.0}::test_gamma_2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 268, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_4_{scale=1.0, shape=1.0}::test_gamma_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 271, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_5_{scale=1.0, shape=3.0}::test_gamma_1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 265, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_5_{scale=1.0, shape=3.0}::test_gamma_2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 268, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_5_{scale=1.0, shape=3.0}::test_gamma_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 271, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_6_{scale=3.0, shape=0.5}::test_gamma_1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 265, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_6_{scale=3.0, shape=0.5}::test_gamma_2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 268, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_6_{scale=3.0, shape=0.5}::test_gamma_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 271, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_7_{scale=3.0, shape=1.0}::test_gamma_1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 265, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_7_{scale=3.0, shape=1.0}::test_gamma_2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 268, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_7_{scale=3.0, shape=1.0}::test_gamma_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 271, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_8_{scale=3.0, shape=3.0}::test_gamma_1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 265, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_8_{scale=3.0, shape=3.0}::test_gamma_2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 268, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestGamma_param_8_{scale=3.0, shape=3.0}::test_gamma_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 271, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGamma_param_0_{shape=0.5}::test_standard_gamma | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 179, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGamma_param_0_{shape=0.5}::test_standard_gamma_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 182, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGamma_param_1_{shape=1.0}::test_standard_gamma | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 179, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGamma_param_1_{shape=1.0}::test_standard_gamma_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 182, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGamma_param_2_{shape=3.0}::test_standard_gamma | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 179, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGamma_param_2_{shape=3.0}::test_standard_gamma_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 182, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardNormal_param_0_{size=None}::test_normal_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 202, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardNormal_param_1_{size=(1, 2, 3)}::test_normal_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 202, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardNormal_param_2_{size=3}::test_normal_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 202, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardNormal_param_3_{size=(1000, 1000)}::test_normal_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 202, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardNormal_param_4_{size=(3, 3)}::test_normal_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 202, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardNormal_param_5_{size=()}::test_normal_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 202, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardExponential::test_invalid_contiguity | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 52, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardExponential::test_invalid_dtype_out | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 49, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardExponential::test_invalid_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 55, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardExponential::test_standard_exponential | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 154, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardExponential::test_standard_exponential_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/common_distributions.py', 163, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGammaInvalid::test_invalid_contiguity | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 132, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGammaInvalid::test_invalid_dtype_out | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 129, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGammaInvalid::test_invalid_dtypes | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 142, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGammaInvalid::test_invalid_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 139, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGammaEmpty::test_empty_out | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 162, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGammaEmpty::test_empty_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 154, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardGammaEmpty::test_empty_size | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 158, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardNormalInvalid::test_invalid_contiguity | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 52, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardNormalInvalid::test_invalid_dtype_out | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 49, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardNormalInvalid::test_invalid_dtypes | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 187, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestStandardNormalInvalid::test_invalid_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 55, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestIntegers::test_integers_1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 199, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestIntegers::test_integers_2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 202, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestIntegers::test_integers_empty1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 205, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestIntegers::test_integers_empty2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 208, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestIntegers::test_integers_float1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 214, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestIntegers::test_integers_float2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 217, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestIntegers::test_integers_int64_1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 220, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestIntegers::test_integers_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 223, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestIntegers::test_integers_ks_large | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 233, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestIntegers::test_integers_ks_large2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 238, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestIntegers::test_integers_ks_low | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 228, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestIntegers::test_integers_overflow | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 211, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestRandom::test_invalid_contiguity | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 52, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestRandom::test_invalid_dtype_out | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 49, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestRandom::test_invalid_shape | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 55, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestRandom::test_random | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 254, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestRandom::test_random_ks | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 257, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/random_tests/test_generator_api.py::TestRandomStateThreadSafe::test_default_rng_thread_safe | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/random_tests/test_generator_api.py', 269, 'Skipped: HIP does not support this') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_0_{backend='device', order_and_axis=('C', -1), shape=(10,)}::test_cub_argmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 234, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_0_{backend='device', order_and_axis=('C', -1), shape=(10,)}::test_cub_argmin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 199, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_1_{backend='device', order_and_axis=('C', -1), shape=(10, 20)}::test_cub_argmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 234, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_1_{backend='device', order_and_axis=('C', -1), shape=(10, 20)}::test_cub_argmin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 199, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_2_{backend='device', order_and_axis=('C', -1), shape=(10, 20, 30)}::test_cub_argmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 234, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_2_{backend='device', order_and_axis=('C', -1), shape=(10, 20, 30)}::test_cub_argmin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 199, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_3_{backend='device', order_and_axis=('C', -1), shape=(10, 20, 30, 40)}::test_cub_argmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 234, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_3_{backend='device', order_and_axis=('C', -1), shape=(10, 20, 30, 40)}::test_cub_argmin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 199, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_8_{backend='device', order_and_axis=('F', 0), shape=(10,)}::test_cub_argmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 234, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_8_{backend='device', order_and_axis=('F', 0), shape=(10,)}::test_cub_argmin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 199, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_9_{backend='device', order_and_axis=('F', 0), shape=(10, 20)}::test_cub_argmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 234, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_9_{backend='device', order_and_axis=('F', 0), shape=(10, 20)}::test_cub_argmin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 199, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_10_{backend='device', order_and_axis=('F', 0), shape=(10, 20, 30)}::test_cub_argmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 234, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_10_{backend='device', order_and_axis=('F', 0), shape=(10, 20, 30)}::test_cub_argmin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 199, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_11_{backend='device', order_and_axis=('F', 0), shape=(10, 20, 30, 40)}::test_cub_argmax | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 234, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_11_{backend='device', order_and_axis=('F', 0), shape=(10, 20, 30, 40)}::test_cub_argmin | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/sorting_tests/test_search.py', 199, 'Skipped: does not support') | |||
| Skipped | tests/cupy_tests/statistics_tests/test_order.py::TestPercentileMonotonic_param_0_{magic_value=-29}::test_percentile_monotonic | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/statistics_tests/test_order.py', 397, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/statistics_tests/test_order.py::TestPercentileMonotonic_param_1_{magic_value=-53}::test_percentile_monotonic | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/statistics_tests/test_order.py', 397, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/statistics_tests/test_order.py::TestPercentileMonotonic_param_2_{magic_value=-207}::test_percentile_monotonic | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/statistics_tests/test_order.py', 397, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/statistics_tests/test_order.py::TestPercentileMonotonic_param_3_{magic_value=-16373}::test_percentile_monotonic | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/statistics_tests/test_order.py', 397, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/statistics_tests/test_order.py::TestPercentileMonotonic_param_4_{magic_value=-99999}::test_percentile_monotonic | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/statistics_tests/test_order.py', 397, 'Skipped: requires: numpy>=1.20') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_0_{framework='unittest'}::test_allclose | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 572, 'Skipped: Test for skip with @numpy_cupy_allclose') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_0_{framework='unittest'}::test_array_almost_equal | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 577, 'Skipped: Test for skip with @numpy_cupy_array_almost_equal') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_0_{framework='unittest'}::test_array_almost_equal_nulp | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 582, 'Skipped: Test for skip with @numpy_cupy_array_almost_equal_nulp') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_0_{framework='unittest'}::test_array_equal | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 593, 'Skipped: Test for skip with @numpy_cupy_array_equal') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_0_{framework='unittest'}::test_array_max_ulp | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 588, 'Skipped: Test for skip with @numpy_cupy_array_max_ulp') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_0_{framework='unittest'}::test_equal | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 603, 'Skipped: Test for skip with @numpy_cupy_equal') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_0_{framework='unittest'}::test_less | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 598, 'Skipped: Test for skip with @numpy_cupy_array_less') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_1_{framework='pytest'}::test_allclose | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 570, 'Skipped: Test for skip with @numpy_cupy_allclose') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_1_{framework='pytest'}::test_array_almost_equal | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 570, 'Skipped: Test for skip with @numpy_cupy_array_almost_equal') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_1_{framework='pytest'}::test_array_almost_equal_nulp | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 570, 'Skipped: Test for skip with @numpy_cupy_array_almost_equal_nulp') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_1_{framework='pytest'}::test_array_equal | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 570, 'Skipped: Test for skip with @numpy_cupy_array_equal') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_1_{framework='pytest'}::test_array_max_ulp | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 570, 'Skipped: Test for skip with @numpy_cupy_array_max_ulp') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_1_{framework='pytest'}::test_equal | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 570, 'Skipped: Test for skip with @numpy_cupy_equal') | |||
| Skipped | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_1_{framework='pytest'}::test_less | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_helper.py', 570, 'Skipped: Test for skip with @numpy_cupy_array_less') | |||
| Skipped | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterize_param_0_{callable=f}::test_skip | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_parameterized.py', 67, 'Skipped: skip') | |||
| Skipped | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterize_param_1_{callable=<lambda>}::test_skip | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_parameterized.py', 67, 'Skipped: skip') | |||
| Skipped | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterize_param_2_{callable=<cupy_tests.testing_tests.test_parameterized.C object at 0x7f24d265dc40>}::test_skip | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_parameterized.py', 67, 'Skipped: skip') | |||
| Skipped | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterize_param_3_{callable=method}::test_skip | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_parameterized.py', 67, 'Skipped: skip') | |||
| Skipped | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterizePytestImpl::test_skip[_param_0_{callable=f}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_parameterized.py', 86, 'Skipped: skip') | |||
| Skipped | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterizePytestImpl::test_skip[_param_1_{callable=<lambda>}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_parameterized.py', 86, 'Skipped: skip') | |||
| Skipped | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterizePytestImpl::test_skip[_param_2_{callable=<cupy_tests.testing_tests.test_parameterized.C object at 0x7f24d265de50>}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_parameterized.py', 86, 'Skipped: skip') | |||
| Skipped | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterizePytestImpl::test_skip[_param_3_{callable=method}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupy_tests/testing_tests/test_parameterized.py', 86, 'Skipped: skip') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_0_{dtype=float32, n=3, nrhs=None, order='C'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_1_{dtype=float32, n=3, nrhs=None, order='F'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_2_{dtype=float32, n=3, nrhs=1, order='C'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_3_{dtype=float32, n=3, nrhs=1, order='F'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_6_{dtype=float64, n=3, nrhs=None, order='C'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_7_{dtype=float64, n=3, nrhs=None, order='F'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_8_{dtype=float64, n=3, nrhs=1, order='C'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_9_{dtype=float64, n=3, nrhs=1, order='F'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_12_{dtype=complex64, n=3, nrhs=None, order='C'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_13_{dtype=complex64, n=3, nrhs=None, order='F'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_14_{dtype=complex64, n=3, nrhs=1, order='C'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_15_{dtype=complex64, n=3, nrhs=1, order='F'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_18_{dtype=complex128, n=3, nrhs=None, order='C'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_19_{dtype=complex128, n=3, nrhs=None, order='F'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_20_{dtype=complex128, n=3, nrhs=1, order='C'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestGesv_param_21_{dtype=complex128, n=3, nrhs=1, order='F'}::test_invalid_cases | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 63, 'Skipped') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestPosv_param_0_{nrhs=None, shape=(3, 4, 2, 2)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 119, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestPosv_param_1_{nrhs=None, shape=(5, 3, 3)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 119, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestPosv_param_2_{nrhs=None, shape=(7, 7)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 119, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestPosv_param_3_{nrhs=1, shape=(3, 4, 2, 2)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 119, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestPosv_param_4_{nrhs=1, shape=(5, 3, 3)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 119, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestPosv_param_5_{nrhs=1, shape=(7, 7)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 119, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestPosv_param_6_{nrhs=4, shape=(3, 4, 2, 2)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 119, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestPosv_param_7_{nrhs=4, shape=(5, 3, 3)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 119, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestPosv_param_8_{nrhs=4, shape=(7, 7)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 119, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestXFailBatchedPosv_param_0_{dtype=float32, shape=(2, 3, 3)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 157, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestXFailBatchedPosv_param_1_{dtype=float64, shape=(2, 3, 3)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 157, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestXFailBatchedPosv_param_2_{dtype=complex64, shape=(2, 3, 3)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 157, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_lapack.py::TestXFailBatchedPosv_param_3_{dtype=complex128, shape=(2, 3, 3)}::test_posv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_lapack.py', 157, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/test_optimize.py::TestOptimizeBackends_param_0_{backend=[]}::test_optimize1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_optimize.py', 184, 'Skipped: requires: optuna') | |||
| Skipped | tests/cupyx_tests/test_optimize.py::TestOptimizeBackends_param_0_{backend=[]}::test_optimize2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_optimize.py', 200, 'Skipped: requires: optuna') | |||
| Skipped | tests/cupyx_tests/test_optimize.py::TestOptimizeBackends_param_1_{backend=['cub']}::test_optimize1 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_optimize.py', 184, 'Skipped: requires: optuna') | |||
| Skipped | tests/cupyx_tests/test_optimize.py::TestOptimizeBackends_param_1_{backend=['cub']}::test_optimize2 | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_optimize.py', 200, 'Skipped: requires: optuna') | |||
| Skipped | tests/cupyx_tests/test_optimize.py::TestOptimize::test_optimize_autosave | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_optimize.py', 134, 'Skipped: requires: optuna') | |||
| Skipped | tests/cupyx_tests/test_optimize.py::TestOptimize::test_optimize_cache | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_optimize.py', 40, 'Skipped: requires: optuna') | |||
| Skipped | tests/cupyx_tests/test_optimize.py::TestOptimize::test_optimize_cache_multi_gpus | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_optimize.py', 86, 'Skipped: requires: optuna') | |||
| Skipped | tests/cupyx_tests/test_optimize.py::TestOptimize::test_optimize_pickle | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_optimize.py', 110, 'Skipped: requires: optuna') | |||
| Skipped | tests/cupyx_tests/test_optimize.py::TestOptimize::test_optimize_reduction_kernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_optimize.py', 31, 'Skipped: requires: optuna') | |||
| Skipped | tests/cupyx_tests/test_runtime.py::TestRuntime::test_error | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/test_runtime.py', 23, 'Skipped: cuDNN is required') | |||
| Skipped | tests/cupyx_tests/linalg_tests/test_solve.py::TestXFailBatchedInvh_param_0_{dtype=float32, shape=(2, 3, 3)}::test_invh | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py', 75, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/linalg_tests/test_solve.py::TestXFailBatchedInvh_param_1_{dtype=float64, shape=(2, 3, 3)}::test_invh | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py', 75, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/linalg_tests/test_solve.py::TestXFailBatchedInvh_param_2_{dtype=complex64, shape=(2, 3, 3)}::test_invh | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py', 75, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/linalg_tests/test_solve.py::TestXFailBatchedInvh_param_3_{dtype=complex128, shape=(2, 3, 3)}::test_invh | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/linalg_tests/test_solve.py', 75, 'Skipped: potrsBatched is not available') | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1172, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite_plan[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1200, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_plan_manager[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1225, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1433, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite_plan[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1461, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_plan_manager[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py', 1486, "Skipped: hipFFT's PlanNd for C2R is buggy") | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_4_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_5_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_12_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_13_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_14_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_21_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_22_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_23_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_30_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_31_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_32_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_39_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_40_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_41_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_48_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_49_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_50_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_60_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_61_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_62_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_69_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_70_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_71_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_78_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_79_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_80_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_87_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_88_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_89_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_96_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_97_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_98_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_105_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_106_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_107_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_215_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_216_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_217_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_224_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_225_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_226_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_233_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_234_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_235_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_242_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_243_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_244_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_251_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_252_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_253_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_260_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_261_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_262_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_272_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_273_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_274_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_281_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_282_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_283_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_290_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_291_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_292_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_299_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_300_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_301_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_308_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_309_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_310_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_317_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_318_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_319_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_427_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_428_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_429_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_436_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_437_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_438_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_445_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_446_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_447_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_454_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_455_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_456_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_463_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_464_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_465_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_472_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_473_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_474_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_484_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_485_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_486_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_493_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_494_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_495_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_502_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_503_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_504_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_511_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_512_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_513_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_520_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_521_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_522_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_529_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_530_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_531_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_639_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_640_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_641_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_648_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_649_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_650_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_657_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_658_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_659_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_666_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_667_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_668_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_675_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_676_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_677_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_684_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_685_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_686_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_696_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_697_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_698_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_705_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_706_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_707_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_714_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_715_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_716_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_723_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_724_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_725_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_732_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_733_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_734_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_741_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_742_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_743_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_851_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_852_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_853_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_860_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_861_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_862_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_869_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_870_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_871_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_878_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_879_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_880_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_887_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_888_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_889_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_896_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_897_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_898_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_908_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_909_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_910_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_917_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_918_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_919_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_926_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_927_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_928_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_935_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_936_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_937_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_944_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_945_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_946_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_953_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_954_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_955_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1063_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1064_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1065_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1072_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1073_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1074_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1081_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1082_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1083_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1090_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1091_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1092_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1099_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1100_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1101_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1108_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1109_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1110_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1120_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1121_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1122_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1129_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1130_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1131_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1138_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1139_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1140_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1147_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1148_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1149_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1156_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1157_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1158_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1165_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1166_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1167_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1275_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1276_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1277_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1284_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1285_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1286_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1293_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1294_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1295_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1302_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1303_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1304_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1311_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1312_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1313_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1320_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1321_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1322_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1332_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1333_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1334_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1341_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1342_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1343_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1350_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1351_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1352_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1359_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1360_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1361_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1368_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1369_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1370_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1377_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1378_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1379_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1487_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1488_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1489_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1496_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1497_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1498_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1505_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1506_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1507_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1514_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1515_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1516_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1523_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1524_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1525_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1532_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1533_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1534_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1544_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1545_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1546_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1553_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1554_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1555_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1562_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1563_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1564_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1571_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1572_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1573_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1580_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1581_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1582_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1589_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1590_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1591_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1699_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1700_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1701_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1708_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1709_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1710_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1717_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1718_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1719_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1726_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1727_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1728_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1735_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1736_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1737_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1744_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1745_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1746_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1756_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1757_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1758_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1765_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1766_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1767_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1774_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1775_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1776_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1783_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1784_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1785_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1792_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1793_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1794_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1801_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1802_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1803_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1911_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1912_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1913_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1920_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1921_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1922_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1929_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1930_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1931_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1938_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1939_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1940_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1947_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1948_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1949_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1956_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1957_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1958_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1968_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1969_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1970_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1977_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1978_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1979_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1986_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1987_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1988_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1995_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1996_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1997_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2004_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2005_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2006_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2013_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2014_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2015_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2123_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2124_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2125_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2132_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2133_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2134_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2141_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2142_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2143_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2150_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2151_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2152_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2159_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2160_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2161_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2168_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2169_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2170_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2180_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2181_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2182_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2189_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2190_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2191_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2198_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2199_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2200_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2207_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2208_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2209_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2216_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2217_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2218_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2225_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2226_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2227_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2335_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2336_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2337_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2344_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2345_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2346_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2353_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2354_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2355_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2362_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2363_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2364_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2371_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2372_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2373_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2380_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2381_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2382_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2392_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2393_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2394_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2401_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2402_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2403_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2410_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2411_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2412_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2419_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2420_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2421_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2428_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2429_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2430_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2437_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2438_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2439_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2547_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2548_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2549_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2556_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2557_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2558_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2565_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2566_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2567_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2574_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2575_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2576_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2583_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2584_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2585_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2592_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2593_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2594_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2604_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2605_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2606_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2613_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2614_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2615_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2622_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2623_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2624_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2631_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2632_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2633_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2640_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2641_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2642_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2649_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2650_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2651_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2759_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2760_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2761_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2768_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2769_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2770_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2777_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2778_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2779_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2786_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2787_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2788_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2795_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2796_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2797_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2804_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2805_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2806_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2816_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2817_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2818_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2825_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2826_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2827_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2834_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2835_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2836_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2843_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2844_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2845_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2852_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2853_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2854_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2861_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2862_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2863_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2971_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2972_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2973_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2980_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2981_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2982_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2989_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2990_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2991_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2998_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2999_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3000_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3007_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3008_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3009_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3016_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3017_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3018_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3028_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3029_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3030_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3037_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3038_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3039_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3046_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3047_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3048_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3055_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3056_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3057_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3064_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3065_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3066_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3073_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3074_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3075_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 227, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_0_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_2_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_4_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_6_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_8_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_10_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_12_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_14_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_16_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_18_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_20_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_22_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_24_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_26_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_28_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_30_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_32_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_34_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_145_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_147_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_149_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_151_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_153_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_155_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_157_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_159_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_161_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_163_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_165_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_167_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_169_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_171_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_173_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_175_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_177_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_179_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_180_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_182_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_184_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_186_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_188_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_190_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_192_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_194_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_196_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_198_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_200_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_202_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_204_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_206_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_208_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_210_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_212_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_214_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_325_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_327_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_329_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_331_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_333_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_335_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_337_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_339_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_341_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_343_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_345_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_347_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_349_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_351_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_353_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_355_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_357_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_359_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_360_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_362_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_364_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_366_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_368_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_370_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_372_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_374_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_376_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_378_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_380_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_382_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_384_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_386_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_388_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_390_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_392_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_394_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_505_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_507_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_509_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_511_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_513_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_515_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_517_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_519_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_521_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_523_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_525_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_527_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_529_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_531_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_533_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_535_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_537_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_539_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_540_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_542_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_544_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_546_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_548_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_550_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_552_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_554_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_556_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_558_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_560_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_562_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_564_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_566_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_568_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_570_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_572_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_574_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_685_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_687_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_689_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_691_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_693_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_695_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_697_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_699_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_701_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_703_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_705_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_707_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_709_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_711_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_713_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_715_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_717_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_719_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_720_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_722_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_724_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_726_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_728_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_730_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_732_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_734_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_736_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_738_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_740_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_742_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_744_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_746_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_748_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_750_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_752_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_754_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_865_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_867_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_869_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_871_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_873_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_875_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_877_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_879_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_881_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_883_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_885_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_887_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_889_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_891_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_893_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_895_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_897_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_899_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_900_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_902_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_904_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_906_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_908_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_910_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_912_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_914_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_916_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_918_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_920_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_922_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_924_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_926_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_928_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_930_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_932_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_934_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1045_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1047_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1049_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1051_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1053_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1055_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1057_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1059_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1061_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1063_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1065_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1067_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1069_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1071_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1073_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1075_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1077_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1079_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1080_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1082_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1084_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1086_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1088_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1090_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1092_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1094_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1096_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1098_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1100_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1102_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1104_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1106_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1108_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1110_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1112_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1114_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1225_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1227_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1229_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1231_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1233_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1235_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1237_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1239_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1241_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1243_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1245_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1247_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1249_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1251_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1253_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1255_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1257_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1259_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1260_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1262_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1264_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1266_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1268_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1270_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1272_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1274_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1276_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1278_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1280_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1282_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1284_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1286_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1288_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1290_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1292_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1294_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1405_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1407_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1409_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1411_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1413_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1415_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1417_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1419_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1421_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1423_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1425_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1427_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1429_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1431_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1433_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1435_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1437_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1439_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 626, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_0_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_1_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_2_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_5_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_6_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_7_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_10_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_11_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_12_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_25_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_26_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_27_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_30_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_31_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_32_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_35_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_36_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_37_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_50_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_51_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_52_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_55_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_56_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_57_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_60_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_61_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_62_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_75_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_76_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_77_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_80_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_81_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_82_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_85_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_86_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_87_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_0_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_1_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_2_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_5_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_6_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_7_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_10_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_11_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_12_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_25_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_26_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_27_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_30_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_31_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_32_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_35_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_36_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_37_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_50_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_51_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_52_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_55_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_56_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_57_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_60_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_61_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_62_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_75_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_76_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_77_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_80_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_81_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_82_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_85_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_86_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_87_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_0_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_1_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_2_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_5_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_6_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_7_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_10_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_11_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_12_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_25_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_26_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_27_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_30_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_31_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_32_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_35_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_36_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_37_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_50_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_51_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_52_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_55_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_56_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_57_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_60_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_61_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_62_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_75_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_76_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_77_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_80_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_81_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_82_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_85_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_86_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_87_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py', 658, 'Skipped: non-complex') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransformOpenCV::test_affine_transform_opencv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 282, 'Skipped: requires: opencv-python') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotateOpenCV::test_rotate_opencv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 436, 'Skipped: requires: opencv-python') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShiftOpenCV::test_shift_opencv | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 630, 'Skipped: requires: opencv-python') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOpenCV::test_zoom_opencv[_param_0_{zoom=3}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 762, 'Skipped: requires: opencv-python') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOpenCV::test_zoom_opencv[_param_1_{zoom=0.3}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 762, 'Skipped: requires: opencv-python') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_0_{dtype=complex64, mode='mirror', order=2, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_1_{dtype=complex64, mode='mirror', order=2, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_2_{dtype=complex64, mode='mirror', order=3, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_3_{dtype=complex64, mode='mirror', order=3, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_4_{dtype=complex64, mode='mirror', order=4, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_5_{dtype=complex64, mode='mirror', order=4, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_6_{dtype=complex64, mode='mirror', order=5, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_7_{dtype=complex64, mode='mirror', order=5, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_8_{dtype=complex64, mode='wrap', order=2, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_9_{dtype=complex64, mode='wrap', order=2, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_10_{dtype=complex64, mode='wrap', order=3, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_11_{dtype=complex64, mode='wrap', order=3, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_12_{dtype=complex64, mode='wrap', order=4, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_13_{dtype=complex64, mode='wrap', order=4, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_14_{dtype=complex64, mode='wrap', order=5, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_15_{dtype=complex64, mode='wrap', order=5, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_16_{dtype=complex64, mode='reflect', order=2, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_17_{dtype=complex64, mode='reflect', order=2, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_18_{dtype=complex64, mode='reflect', order=3, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_19_{dtype=complex64, mode='reflect', order=3, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_20_{dtype=complex64, mode='reflect', order=4, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_21_{dtype=complex64, mode='reflect', order=4, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_22_{dtype=complex64, mode='reflect', order=5, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_23_{dtype=complex64, mode='reflect', order=5, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_24_{dtype=complex128, mode='mirror', order=2, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_25_{dtype=complex128, mode='mirror', order=2, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_26_{dtype=complex128, mode='mirror', order=3, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_27_{dtype=complex128, mode='mirror', order=3, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_28_{dtype=complex128, mode='mirror', order=4, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_29_{dtype=complex128, mode='mirror', order=4, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_30_{dtype=complex128, mode='mirror', order=5, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_31_{dtype=complex128, mode='mirror', order=5, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_32_{dtype=complex128, mode='wrap', order=2, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_33_{dtype=complex128, mode='wrap', order=2, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_34_{dtype=complex128, mode='wrap', order=3, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_35_{dtype=complex128, mode='wrap', order=3, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_36_{dtype=complex128, mode='wrap', order=4, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_37_{dtype=complex128, mode='wrap', order=4, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_38_{dtype=complex128, mode='wrap', order=5, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_39_{dtype=complex128, mode='wrap', order=5, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_40_{dtype=complex128, mode='reflect', order=2, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_41_{dtype=complex128, mode='reflect', order=2, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_42_{dtype=complex128, mode='reflect', order=3, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_43_{dtype=complex128, mode='reflect', order=3, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_44_{dtype=complex128, mode='reflect', order=4, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_45_{dtype=complex128, mode='reflect', order=4, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_46_{dtype=complex128, mode='reflect', order=5, output=complex64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex2[_param_47_{dtype=complex128, mode='reflect', order=5, output=complex128}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py', 885, 'Skipped: requires: scipy<1.6') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_18_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_23_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_28_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_31_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_36_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_41_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_78_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_83_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_88_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_91_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_96_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_101_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_138_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_143_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_148_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_151_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_156_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_161_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_198_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_203_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_208_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_211_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_216_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_221_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_258_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_263_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_268_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_271_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_276_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_281_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_318_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_323_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_328_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_331_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_336_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_341_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_378_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_383_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_388_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_391_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_396_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_401_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_438_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_443_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_448_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_451_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_456_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_461_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_498_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_503_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_508_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_511_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_516_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_521_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_558_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_563_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_568_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_571_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_576_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_581_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_618_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_623_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_628_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_631_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_636_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_641_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_678_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_683_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_688_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_691_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_696_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_701_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_738_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_743_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_748_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_751_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_756_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_761_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_798_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_803_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_808_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_811_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_816_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_821_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_858_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_863_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_868_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_871_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_876_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_881_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_918_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_923_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_928_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_931_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_936_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_941_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_978_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_983_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_988_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_991_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_996_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1001_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1038_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1043_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1048_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1051_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1056_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1061_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1098_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1103_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1108_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1111_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1116_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1121_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1158_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1163_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1168_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1171_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1176_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1181_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1218_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1223_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1228_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1231_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1236_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1241_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1278_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1283_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1288_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1291_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1296_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1301_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1338_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1343_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1348_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1351_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1356_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1361_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1398_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1403_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1408_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1411_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1416_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1421_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 96, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_7_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_9_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_11_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_25_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_27_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_29_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_43_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_45_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_47_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_61_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_63_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_65_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_79_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_81_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_83_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_97_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_99_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_101_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_115_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_117_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_119_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_133_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_135_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_137_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_151_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_153_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_155_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_169_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_171_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_173_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_187_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_189_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_191_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_205_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_207_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_209_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_223_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_225_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_227_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_241_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_243_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_245_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_259_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_261_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_263_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_277_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_279_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_281_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_295_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_297_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_299_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_313_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_315_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_317_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_331_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_333_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_335_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_349_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_351_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_353_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_367_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_369_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_371_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_385_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_387_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_389_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_403_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_405_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_407_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_421_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_423_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_425_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_439_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_441_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_443_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_457_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_459_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_461_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_475_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_477_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_479_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_493_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_495_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_497_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_511_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_513_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_515_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_529_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_531_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_533_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_547_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_549_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_551_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_565_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_567_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_569_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_583_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_585_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_587_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_601_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_603_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_605_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_619_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_621_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_623_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_637_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_639_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_641_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_655_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_657_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_659_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_673_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_675_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_677_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_691_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_693_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_695_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_709_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_711_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_713_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_727_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_729_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_731_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_745_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_747_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_749_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_763_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_765_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_767_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_781_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_783_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_785_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_799_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_801_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_803_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_817_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_819_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_821_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_835_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_837_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_839_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_853_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_855_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_857_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_871_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_873_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_875_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_889_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_891_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_893_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_907_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_909_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_911_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_925_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_927_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_929_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_943_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_945_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_947_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_961_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_963_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_965_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_979_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_981_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_983_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_997_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_999_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1001_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1015_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1017_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1019_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1033_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1035_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1037_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1051_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1053_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1055_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1069_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1071_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1073_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1087_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1089_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1091_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1105_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1107_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1109_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1123_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1125_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1127_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1141_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1143_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1145_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1159_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1161_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1163_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1177_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1179_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1181_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1195_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1197_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1199_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1213_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1215_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1217_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1231_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1233_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1235_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1249_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1251_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1253_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1267_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1269_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1271_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1285_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1287_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1289_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1303_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1305_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1307_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1321_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1323_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1325_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1339_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1341_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1343_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1357_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1359_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1361_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1375_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1377_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1379_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1393_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1395_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1397_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1411_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1413_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1415_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1429_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1431_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1433_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1447_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1449_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1451_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1465_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1467_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1469_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1483_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1485_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1487_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1501_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1503_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1505_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1519_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1521_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1523_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1537_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1539_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1541_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1555_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1557_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1559_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1573_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1575_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1577_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1591_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1593_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1595_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1609_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1611_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1613_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1627_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1629_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1631_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1645_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1647_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1649_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1663_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1665_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1667_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1681_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1683_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1685_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1699_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1701_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1703_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1717_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1719_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1721_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1735_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1737_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1739_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1753_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1755_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1757_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1771_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1773_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1775_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1789_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1791_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1793_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1807_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1809_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1811_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1825_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1827_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1829_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1843_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1845_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1847_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1861_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1863_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1865_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1879_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1881_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1883_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1897_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1899_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1901_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1915_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1917_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1919_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1933_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1935_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1937_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1951_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1953_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1955_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1969_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1971_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1973_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1987_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1989_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1991_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2005_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2007_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2009_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2023_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2025_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2027_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2041_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2043_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2045_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2059_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2061_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2063_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2077_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2079_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2081_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2095_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2097_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2099_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2113_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2115_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2117_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2131_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2133_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2135_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2149_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2151_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2153_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2167_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2169_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2171_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2185_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2187_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2189_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2203_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2205_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2207_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2221_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2223_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2225_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2239_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2241_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2243_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2257_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2259_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2261_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2275_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2277_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2279_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2293_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2295_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2297_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2311_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2313_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2315_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2329_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2331_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2333_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2347_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2349_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2351_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2365_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2367_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2369_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2383_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2385_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2387_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2401_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2403_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2405_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2419_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2421_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2423_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2437_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2439_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2441_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2455_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2457_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2459_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2473_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2475_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2477_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2491_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2493_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2495_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2509_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2511_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2513_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2527_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2529_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2531_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2545_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2547_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2549_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2563_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2565_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2567_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2581_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2583_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2585_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 355, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_62_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_67_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_72_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_77_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_82_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_87_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_92_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_97_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_102_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_107_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_112_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_117_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_124_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_129_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_134_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_139_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_144_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_149_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_154_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_159_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_164_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_169_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_174_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_179_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_242_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_247_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_252_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_257_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_262_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_267_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_272_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_277_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_282_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_287_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_292_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_297_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_304_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_309_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_314_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_319_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_324_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_329_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_334_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_339_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_344_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_349_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_354_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_359_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_422_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_427_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_432_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_437_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_442_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_447_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_452_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_457_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_462_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_467_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_472_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_477_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_484_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_489_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_494_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_499_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_504_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_509_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_514_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_519_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_524_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_529_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_534_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_539_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_602_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_607_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_612_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_617_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_622_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_627_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_632_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_637_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_642_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_647_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_652_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_657_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_664_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_669_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_674_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_679_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_684_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_689_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_694_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_699_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_704_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_709_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_714_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_719_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_782_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_787_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_792_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_797_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_802_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_807_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_812_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_817_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_822_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_827_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_832_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_837_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_844_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_849_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_854_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_859_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_864_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_869_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_874_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_879_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_884_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_889_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_894_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_899_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_962_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_967_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_972_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_977_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_982_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_987_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_992_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_997_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1002_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1007_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1012_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1017_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1024_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1029_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1034_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1039_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1044_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1049_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1054_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1059_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1064_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1069_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1074_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1079_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1142_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1147_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1152_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1157_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1162_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1167_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1172_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1177_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1182_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1187_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1192_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1197_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1204_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1209_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1214_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1219_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1224_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1229_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1234_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1239_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1244_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1249_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1254_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1259_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1322_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1327_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1332_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1337_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1342_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1347_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1352_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1357_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1362_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1367_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1372_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1377_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1384_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1389_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1394_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1399_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1404_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1409_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1414_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1419_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1424_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1429_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1434_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1439_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1502_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1507_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1512_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1517_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1522_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1527_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1532_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1537_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1542_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1547_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1552_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1557_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1564_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1569_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1574_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1579_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1584_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1589_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1594_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1599_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1604_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1609_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1614_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1619_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1682_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1687_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1692_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1697_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1702_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1707_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1712_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1717_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1722_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1727_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1732_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1737_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1744_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1749_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1754_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1759_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1764_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1769_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1774_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1779_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1784_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1789_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1794_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1799_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1862_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1867_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1872_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1877_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1882_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1887_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1892_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1897_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1902_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1907_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1912_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1917_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1924_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1929_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1934_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1939_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1944_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1949_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1954_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1959_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1964_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1969_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1974_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1979_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2042_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2047_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2052_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2057_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2062_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2067_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2072_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2077_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2082_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2087_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2092_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2097_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2104_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2109_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2114_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2119_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2124_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2129_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2134_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2139_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2144_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2149_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2154_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2159_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 462, 'Skipped: redundant') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2488_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2489_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2490_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2491_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2492_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2493_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2494_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2495_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2560_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2561_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2562_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2563_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2564_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2565_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2566_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2567_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2632_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2633_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2634_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2635_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2636_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2637_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2638_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2639_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2704_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2705_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2706_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2707_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2708_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2709_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2710_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2711_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py', 460, 'Skipped: not testable against scipy') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_0_{connection='weak', directed=True, dtype='float32', m=5, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_1_{connection='weak', directed=True, dtype='float32', m=5, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_2_{connection='weak', directed=True, dtype='float32', m=5, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_3_{connection='weak', directed=True, dtype='float32', m=5, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_4_{connection='weak', directed=True, dtype='float32', m=5, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_5_{connection='weak', directed=True, dtype='float32', m=5, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_6_{connection='weak', directed=True, dtype='float32', m=10, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_7_{connection='weak', directed=True, dtype='float32', m=10, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_8_{connection='weak', directed=True, dtype='float32', m=10, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_9_{connection='weak', directed=True, dtype='float32', m=10, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_10_{connection='weak', directed=True, dtype='float32', m=10, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_11_{connection='weak', directed=True, dtype='float32', m=10, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_12_{connection='weak', directed=True, dtype='float32', m=20, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_13_{connection='weak', directed=True, dtype='float32', m=20, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_14_{connection='weak', directed=True, dtype='float32', m=20, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_15_{connection='weak', directed=True, dtype='float32', m=20, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_16_{connection='weak', directed=True, dtype='float32', m=20, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_17_{connection='weak', directed=True, dtype='float32', m=20, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_18_{connection='weak', directed=True, dtype='float64', m=5, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_19_{connection='weak', directed=True, dtype='float64', m=5, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_20_{connection='weak', directed=True, dtype='float64', m=5, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_21_{connection='weak', directed=True, dtype='float64', m=5, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_22_{connection='weak', directed=True, dtype='float64', m=5, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_23_{connection='weak', directed=True, dtype='float64', m=5, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_24_{connection='weak', directed=True, dtype='float64', m=10, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_25_{connection='weak', directed=True, dtype='float64', m=10, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_26_{connection='weak', directed=True, dtype='float64', m=10, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_27_{connection='weak', directed=True, dtype='float64', m=10, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_28_{connection='weak', directed=True, dtype='float64', m=10, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_29_{connection='weak', directed=True, dtype='float64', m=10, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_30_{connection='weak', directed=True, dtype='float64', m=20, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_31_{connection='weak', directed=True, dtype='float64', m=20, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_32_{connection='weak', directed=True, dtype='float64', m=20, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_33_{connection='weak', directed=True, dtype='float64', m=20, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_34_{connection='weak', directed=True, dtype='float64', m=20, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_35_{connection='weak', directed=True, dtype='float64', m=20, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_36_{connection='weak', directed=False, dtype='float32', m=5, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_37_{connection='weak', directed=False, dtype='float32', m=5, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_38_{connection='weak', directed=False, dtype='float32', m=5, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_39_{connection='weak', directed=False, dtype='float32', m=5, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_40_{connection='weak', directed=False, dtype='float32', m=5, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_41_{connection='weak', directed=False, dtype='float32', m=5, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_42_{connection='weak', directed=False, dtype='float32', m=10, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_43_{connection='weak', directed=False, dtype='float32', m=10, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_44_{connection='weak', directed=False, dtype='float32', m=10, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_45_{connection='weak', directed=False, dtype='float32', m=10, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_46_{connection='weak', directed=False, dtype='float32', m=10, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_47_{connection='weak', directed=False, dtype='float32', m=10, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_48_{connection='weak', directed=False, dtype='float32', m=20, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_49_{connection='weak', directed=False, dtype='float32', m=20, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_50_{connection='weak', directed=False, dtype='float32', m=20, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_51_{connection='weak', directed=False, dtype='float32', m=20, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_52_{connection='weak', directed=False, dtype='float32', m=20, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_53_{connection='weak', directed=False, dtype='float32', m=20, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_54_{connection='weak', directed=False, dtype='float64', m=5, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_55_{connection='weak', directed=False, dtype='float64', m=5, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_56_{connection='weak', directed=False, dtype='float64', m=5, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_57_{connection='weak', directed=False, dtype='float64', m=5, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_58_{connection='weak', directed=False, dtype='float64', m=5, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_59_{connection='weak', directed=False, dtype='float64', m=5, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_60_{connection='weak', directed=False, dtype='float64', m=10, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_61_{connection='weak', directed=False, dtype='float64', m=10, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_62_{connection='weak', directed=False, dtype='float64', m=10, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_63_{connection='weak', directed=False, dtype='float64', m=10, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_64_{connection='weak', directed=False, dtype='float64', m=10, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_65_{connection='weak', directed=False, dtype='float64', m=10, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_66_{connection='weak', directed=False, dtype='float64', m=20, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_67_{connection='weak', directed=False, dtype='float64', m=20, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_68_{connection='weak', directed=False, dtype='float64', m=20, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_69_{connection='weak', directed=False, dtype='float64', m=20, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_70_{connection='weak', directed=False, dtype='float64', m=20, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_71_{connection='weak', directed=False, dtype='float64', m=20, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_72_{connection='strong', directed=True, dtype='float32', m=5, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_73_{connection='strong', directed=True, dtype='float32', m=5, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_74_{connection='strong', directed=True, dtype='float32', m=5, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_75_{connection='strong', directed=True, dtype='float32', m=5, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_76_{connection='strong', directed=True, dtype='float32', m=5, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_77_{connection='strong', directed=True, dtype='float32', m=5, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_78_{connection='strong', directed=True, dtype='float32', m=10, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_79_{connection='strong', directed=True, dtype='float32', m=10, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_80_{connection='strong', directed=True, dtype='float32', m=10, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_81_{connection='strong', directed=True, dtype='float32', m=10, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_82_{connection='strong', directed=True, dtype='float32', m=10, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_83_{connection='strong', directed=True, dtype='float32', m=10, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_84_{connection='strong', directed=True, dtype='float32', m=20, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_85_{connection='strong', directed=True, dtype='float32', m=20, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_86_{connection='strong', directed=True, dtype='float32', m=20, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_87_{connection='strong', directed=True, dtype='float32', m=20, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_88_{connection='strong', directed=True, dtype='float32', m=20, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_89_{connection='strong', directed=True, dtype='float32', m=20, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_90_{connection='strong', directed=True, dtype='float64', m=5, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_91_{connection='strong', directed=True, dtype='float64', m=5, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_92_{connection='strong', directed=True, dtype='float64', m=5, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_93_{connection='strong', directed=True, dtype='float64', m=5, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_94_{connection='strong', directed=True, dtype='float64', m=5, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_95_{connection='strong', directed=True, dtype='float64', m=5, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_96_{connection='strong', directed=True, dtype='float64', m=10, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_97_{connection='strong', directed=True, dtype='float64', m=10, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_98_{connection='strong', directed=True, dtype='float64', m=10, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_99_{connection='strong', directed=True, dtype='float64', m=10, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_100_{connection='strong', directed=True, dtype='float64', m=10, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_101_{connection='strong', directed=True, dtype='float64', m=10, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_102_{connection='strong', directed=True, dtype='float64', m=20, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_103_{connection='strong', directed=True, dtype='float64', m=20, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_104_{connection='strong', directed=True, dtype='float64', m=20, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_105_{connection='strong', directed=True, dtype='float64', m=20, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_106_{connection='strong', directed=True, dtype='float64', m=20, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_107_{connection='strong', directed=True, dtype='float64', m=20, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_108_{connection='strong', directed=False, dtype='float32', m=5, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_109_{connection='strong', directed=False, dtype='float32', m=5, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_110_{connection='strong', directed=False, dtype='float32', m=5, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_111_{connection='strong', directed=False, dtype='float32', m=5, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_112_{connection='strong', directed=False, dtype='float32', m=5, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_113_{connection='strong', directed=False, dtype='float32', m=5, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_114_{connection='strong', directed=False, dtype='float32', m=10, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_115_{connection='strong', directed=False, dtype='float32', m=10, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_116_{connection='strong', directed=False, dtype='float32', m=10, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_117_{connection='strong', directed=False, dtype='float32', m=10, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_118_{connection='strong', directed=False, dtype='float32', m=10, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_119_{connection='strong', directed=False, dtype='float32', m=10, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_120_{connection='strong', directed=False, dtype='float32', m=20, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_121_{connection='strong', directed=False, dtype='float32', m=20, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_122_{connection='strong', directed=False, dtype='float32', m=20, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_123_{connection='strong', directed=False, dtype='float32', m=20, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_124_{connection='strong', directed=False, dtype='float32', m=20, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_125_{connection='strong', directed=False, dtype='float32', m=20, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_126_{connection='strong', directed=False, dtype='float64', m=5, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_127_{connection='strong', directed=False, dtype='float64', m=5, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_128_{connection='strong', directed=False, dtype='float64', m=5, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_129_{connection='strong', directed=False, dtype='float64', m=5, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_130_{connection='strong', directed=False, dtype='float64', m=5, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_131_{connection='strong', directed=False, dtype='float64', m=5, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_132_{connection='strong', directed=False, dtype='float64', m=10, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_133_{connection='strong', directed=False, dtype='float64', m=10, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_134_{connection='strong', directed=False, dtype='float64', m=10, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_135_{connection='strong', directed=False, dtype='float64', m=10, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_136_{connection='strong', directed=False, dtype='float64', m=10, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_137_{connection='strong', directed=False, dtype='float64', m=10, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_138_{connection='strong', directed=False, dtype='float64', m=20, nnz_per_row=1, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_139_{connection='strong', directed=False, dtype='float64', m=20, nnz_per_row=1, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_140_{connection='strong', directed=False, dtype='float64', m=20, nnz_per_row=2, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_141_{connection='strong', directed=False, dtype='float64', m=20, nnz_per_row=2, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_142_{connection='strong', directed=False, dtype='float64', m=20, nnz_per_row=3, return_labels=True}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py::TestConnectedComponents_param_143_{connection='strong', directed=False, dtype='float64', m=20, nnz_per_row=3, return_labels=False}::test_connected_components | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py', 39, 'Skipped: requires scipy and cugraph') | |||
| Skipped | tests/example_tests/test_gmm.py::TestGMM::test_gmm | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/example_tests/test_gmm.py', 19, 'Skipped: requires: matplotlib') | |||
| Skipped | tests/example_tests/test_gmm.py::TestGMM::test_output_image | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/example_tests/test_gmm.py', 29, 'Skipped: requires: matplotlib') | |||
| Skipped | tests/example_tests/test_kmeans.py::TestKmeans::test_custom_kernel | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/example_tests/test_kmeans.py', 26, 'Skipped: requires: matplotlib') | |||
| Skipped | tests/example_tests/test_kmeans.py::TestKmeans::test_default | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/example_tests/test_kmeans.py', 18, 'Skipped: requires: matplotlib') | |||
| Skipped | tests/example_tests/test_kmeans.py::TestKmeans::test_result_image | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/example_tests/test_kmeans.py', 35, 'Skipped: requires: matplotlib') | |||
| Skipped | tests/install_tests/test_build.py::TestCheckVersion::test_check_cuda_version | 0.00 | |
|
('/global/scratch/kmaeh/cupy-rocm-ci-work/tmp.DiZ5IFnIPu/cupy/tests/install_tests/test_build.py', 20, 'Skipped: For CUDA environment') | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_0_{bs=None, dtype='float32', n=10, nrhs=None}] | 14.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_1_{bs=None, dtype='float32', n=10, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_2_{bs=None, dtype='float32', n=10, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_3_{bs=None, dtype='float32', n=33, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_4_{bs=None, dtype='float32', n=33, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_5_{bs=None, dtype='float32', n=33, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_6_{bs=None, dtype='float32', n=100, nrhs=None}] | 0.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_7_{bs=None, dtype='float32', n=100, nrhs=1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_8_{bs=None, dtype='float32', n=100, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_9_{bs=None, dtype='float64', n=10, nrhs=None}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_10_{bs=None, dtype='float64', n=10, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_11_{bs=None, dtype='float64', n=10, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_12_{bs=None, dtype='float64', n=33, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_13_{bs=None, dtype='float64', n=33, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_14_{bs=None, dtype='float64', n=33, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_15_{bs=None, dtype='float64', n=100, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_16_{bs=None, dtype='float64', n=100, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_17_{bs=None, dtype='float64', n=100, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_18_{bs=None, dtype='complex64', n=10, nrhs=None}] | 2.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_19_{bs=None, dtype='complex64', n=10, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_20_{bs=None, dtype='complex64', n=10, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_21_{bs=None, dtype='complex64', n=33, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_22_{bs=None, dtype='complex64', n=33, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_23_{bs=None, dtype='complex64', n=33, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_24_{bs=None, dtype='complex64', n=100, nrhs=None}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_25_{bs=None, dtype='complex64', n=100, nrhs=1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_26_{bs=None, dtype='complex64', n=100, nrhs=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_27_{bs=None, dtype='complex128', n=10, nrhs=None}] | 2.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_28_{bs=None, dtype='complex128', n=10, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_29_{bs=None, dtype='complex128', n=10, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_30_{bs=None, dtype='complex128', n=33, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_31_{bs=None, dtype='complex128', n=33, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_32_{bs=None, dtype='complex128', n=33, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_33_{bs=None, dtype='complex128', n=100, nrhs=None}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_34_{bs=None, dtype='complex128', n=100, nrhs=1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_35_{bs=None, dtype='complex128', n=100, nrhs=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_36_{bs=1, dtype='float32', n=10, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_37_{bs=1, dtype='float32', n=10, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_38_{bs=1, dtype='float32', n=10, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_39_{bs=1, dtype='float32', n=33, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_40_{bs=1, dtype='float32', n=33, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_41_{bs=1, dtype='float32', n=33, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_42_{bs=1, dtype='float32', n=100, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_43_{bs=1, dtype='float32', n=100, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_44_{bs=1, dtype='float32', n=100, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_45_{bs=1, dtype='float64', n=10, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_46_{bs=1, dtype='float64', n=10, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_47_{bs=1, dtype='float64', n=10, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_48_{bs=1, dtype='float64', n=33, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_49_{bs=1, dtype='float64', n=33, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_50_{bs=1, dtype='float64', n=33, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_51_{bs=1, dtype='float64', n=100, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_52_{bs=1, dtype='float64', n=100, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_53_{bs=1, dtype='float64', n=100, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_54_{bs=1, dtype='complex64', n=10, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_55_{bs=1, dtype='complex64', n=10, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_56_{bs=1, dtype='complex64', n=10, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_57_{bs=1, dtype='complex64', n=33, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_58_{bs=1, dtype='complex64', n=33, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_59_{bs=1, dtype='complex64', n=33, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_60_{bs=1, dtype='complex64', n=100, nrhs=None}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_61_{bs=1, dtype='complex64', n=100, nrhs=1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_62_{bs=1, dtype='complex64', n=100, nrhs=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_63_{bs=1, dtype='complex128', n=10, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_64_{bs=1, dtype='complex128', n=10, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_65_{bs=1, dtype='complex128', n=10, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_66_{bs=1, dtype='complex128', n=33, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_67_{bs=1, dtype='complex128', n=33, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_68_{bs=1, dtype='complex128', n=33, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_69_{bs=1, dtype='complex128', n=100, nrhs=None}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_70_{bs=1, dtype='complex128', n=100, nrhs=1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_71_{bs=1, dtype='complex128', n=100, nrhs=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_72_{bs=10, dtype='float32', n=10, nrhs=None}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_73_{bs=10, dtype='float32', n=10, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_74_{bs=10, dtype='float32', n=10, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_75_{bs=10, dtype='float32', n=33, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_76_{bs=10, dtype='float32', n=33, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_77_{bs=10, dtype='float32', n=33, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_78_{bs=10, dtype='float32', n=100, nrhs=None}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_79_{bs=10, dtype='float32', n=100, nrhs=1}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_80_{bs=10, dtype='float32', n=100, nrhs=10}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_81_{bs=10, dtype='float64', n=10, nrhs=None}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_82_{bs=10, dtype='float64', n=10, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_83_{bs=10, dtype='float64', n=10, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_84_{bs=10, dtype='float64', n=33, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_85_{bs=10, dtype='float64', n=33, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_86_{bs=10, dtype='float64', n=33, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_87_{bs=10, dtype='float64', n=100, nrhs=None}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_88_{bs=10, dtype='float64', n=100, nrhs=1}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_89_{bs=10, dtype='float64', n=100, nrhs=10}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_90_{bs=10, dtype='complex64', n=10, nrhs=None}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_91_{bs=10, dtype='complex64', n=10, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_92_{bs=10, dtype='complex64', n=10, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_93_{bs=10, dtype='complex64', n=33, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_94_{bs=10, dtype='complex64', n=33, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_95_{bs=10, dtype='complex64', n=33, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_96_{bs=10, dtype='complex64', n=100, nrhs=None}] | 0.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_97_{bs=10, dtype='complex64', n=100, nrhs=1}] | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_98_{bs=10, dtype='complex64', n=100, nrhs=10}] | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_99_{bs=10, dtype='complex128', n=10, nrhs=None}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_100_{bs=10, dtype='complex128', n=10, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_101_{bs=10, dtype='complex128', n=10, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_102_{bs=10, dtype='complex128', n=33, nrhs=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_103_{bs=10, dtype='complex128', n=33, nrhs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_104_{bs=10, dtype='complex128', n=33, nrhs=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_105_{bs=10, dtype='complex128', n=100, nrhs=None}] | 0.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_106_{bs=10, dtype='complex128', n=100, nrhs=1}] | 0.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestBatchedGesv::test_batched_gesv[_param_107_{bs=10, dtype='complex128', n=100, nrhs=10}] | 0.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_0_{dtype='float32', mode=None, n=10}] | 2.61 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_1_{dtype='float32', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_2_{dtype='float32', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_3_{dtype='float32', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_4_{dtype='float32', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_5_{dtype='float32', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_6_{dtype='float64', mode=None, n=10}] | 1.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_7_{dtype='float64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_8_{dtype='float64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_9_{dtype='float64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_10_{dtype='float64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_11_{dtype='float64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_12_{dtype='complex64', mode=None, n=10}] | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_13_{dtype='complex64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_14_{dtype='complex64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_15_{dtype='complex64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_16_{dtype='complex64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_17_{dtype='complex64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_18_{dtype='complex128', mode=None, n=10}] | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_19_{dtype='complex128', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_20_{dtype='complex128', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_21_{dtype='complex128', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_22_{dtype='complex128', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamax[_param_23_{dtype='complex128', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_0_{dtype='float32', mode=None, n=10}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_1_{dtype='float32', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_2_{dtype='float32', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_3_{dtype='float32', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_4_{dtype='float32', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_5_{dtype='float32', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_6_{dtype='float64', mode=None, n=10}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_7_{dtype='float64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_8_{dtype='float64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_9_{dtype='float64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_10_{dtype='float64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_11_{dtype='float64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_12_{dtype='complex64', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_13_{dtype='complex64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_14_{dtype='complex64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_15_{dtype='complex64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_16_{dtype='complex64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_17_{dtype='complex64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_18_{dtype='complex128', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_19_{dtype='complex128', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_20_{dtype='complex128', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_21_{dtype='complex128', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_22_{dtype='complex128', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_iamin[_param_23_{dtype='complex128', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_0_{dtype='float32', mode=None, n=10}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_1_{dtype='float32', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_2_{dtype='float32', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_3_{dtype='float32', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_4_{dtype='float32', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_5_{dtype='float32', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_6_{dtype='float64', mode=None, n=10}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_7_{dtype='float64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_8_{dtype='float64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_9_{dtype='float64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_10_{dtype='float64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_11_{dtype='float64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_12_{dtype='complex64', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_13_{dtype='complex64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_14_{dtype='complex64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_15_{dtype='complex64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_16_{dtype='complex64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_17_{dtype='complex64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_18_{dtype='complex128', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_19_{dtype='complex128', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_20_{dtype='complex128', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_21_{dtype='complex128', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_22_{dtype='complex128', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_asum[_param_23_{dtype='complex128', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_0_{dtype='float32', mode=None, n=10}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_1_{dtype='float32', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_2_{dtype='float32', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_3_{dtype='float32', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_4_{dtype='float32', mode=cupy, n=10}] | 0.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_5_{dtype='float32', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_6_{dtype='float64', mode=None, n=10}] | 0.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_7_{dtype='float64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_8_{dtype='float64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_9_{dtype='float64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_10_{dtype='float64', mode=cupy, n=10}] | 0.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_11_{dtype='float64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_12_{dtype='complex64', mode=None, n=10}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_13_{dtype='complex64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_14_{dtype='complex64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_15_{dtype='complex64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_16_{dtype='complex64', mode=cupy, n=10}] | 0.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_17_{dtype='complex64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_18_{dtype='complex128', mode=None, n=10}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_19_{dtype='complex128', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_20_{dtype='complex128', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_21_{dtype='complex128', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_22_{dtype='complex128', mode=cupy, n=10}] | 0.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_axpy[_param_23_{dtype='complex128', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_0_{dtype='float32', mode=None, n=10}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_1_{dtype='float32', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_2_{dtype='float32', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_3_{dtype='float32', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_4_{dtype='float32', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_5_{dtype='float32', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_6_{dtype='float64', mode=None, n=10}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_7_{dtype='float64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_8_{dtype='float64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_9_{dtype='float64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_10_{dtype='float64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_11_{dtype='float64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_12_{dtype='complex64', mode=None, n=10}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_13_{dtype='complex64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_14_{dtype='complex64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_15_{dtype='complex64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_16_{dtype='complex64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_17_{dtype='complex64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_18_{dtype='complex128', mode=None, n=10}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_19_{dtype='complex128', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_20_{dtype='complex128', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_21_{dtype='complex128', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_22_{dtype='complex128', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dot[_param_23_{dtype='complex128', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_0_{dtype='float32', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_1_{dtype='float32', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_2_{dtype='float32', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_3_{dtype='float32', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_4_{dtype='float32', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_5_{dtype='float32', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_6_{dtype='float64', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_7_{dtype='float64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_8_{dtype='float64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_9_{dtype='float64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_10_{dtype='float64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_11_{dtype='float64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_12_{dtype='complex64', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_13_{dtype='complex64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_14_{dtype='complex64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_15_{dtype='complex64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_16_{dtype='complex64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_17_{dtype='complex64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_18_{dtype='complex128', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_19_{dtype='complex128', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_20_{dtype='complex128', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_21_{dtype='complex128', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_22_{dtype='complex128', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotu[_param_23_{dtype='complex128', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_0_{dtype='float32', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_1_{dtype='float32', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_2_{dtype='float32', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_3_{dtype='float32', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_4_{dtype='float32', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_5_{dtype='float32', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_6_{dtype='float64', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_7_{dtype='float64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_8_{dtype='float64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_9_{dtype='float64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_10_{dtype='float64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_11_{dtype='float64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_12_{dtype='complex64', mode=None, n=10}] | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_13_{dtype='complex64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_14_{dtype='complex64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_15_{dtype='complex64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_16_{dtype='complex64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_17_{dtype='complex64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_18_{dtype='complex128', mode=None, n=10}] | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_19_{dtype='complex128', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_20_{dtype='complex128', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_21_{dtype='complex128', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_22_{dtype='complex128', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_dotc[_param_23_{dtype='complex128', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_0_{dtype='float32', mode=None, n=10}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_1_{dtype='float32', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_2_{dtype='float32', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_3_{dtype='float32', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_4_{dtype='float32', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_5_{dtype='float32', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_6_{dtype='float64', mode=None, n=10}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_7_{dtype='float64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_8_{dtype='float64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_9_{dtype='float64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_10_{dtype='float64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_11_{dtype='float64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_12_{dtype='complex64', mode=None, n=10}] | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_13_{dtype='complex64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_14_{dtype='complex64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_15_{dtype='complex64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_16_{dtype='complex64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_17_{dtype='complex64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_18_{dtype='complex128', mode=None, n=10}] | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_19_{dtype='complex128', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_20_{dtype='complex128', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_21_{dtype='complex128', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_22_{dtype='complex128', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_nrm2[_param_23_{dtype='complex128', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_0_{dtype='float32', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_1_{dtype='float32', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_2_{dtype='float32', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_3_{dtype='float32', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_4_{dtype='float32', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_5_{dtype='float32', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_6_{dtype='float64', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_7_{dtype='float64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_8_{dtype='float64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_9_{dtype='float64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_10_{dtype='float64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_11_{dtype='float64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_12_{dtype='complex64', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_13_{dtype='complex64', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_14_{dtype='complex64', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_15_{dtype='complex64', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_16_{dtype='complex64', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_17_{dtype='complex64', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_18_{dtype='complex128', mode=None, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_19_{dtype='complex128', mode=None, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_20_{dtype='complex128', mode=numpy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_21_{dtype='complex128', mode=numpy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_22_{dtype='complex128', mode=cupy, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestLevel1Functions::test_scal[_param_23_{dtype='complex128', mode=cupy, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_0_{dtype='float32', mode=None, order='C', shape=(10, 9), trans='N'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_1_{dtype='float32', mode=None, order='C', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_2_{dtype='float32', mode=None, order='C', shape=(10, 9), trans='H'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_3_{dtype='float32', mode=None, order='C', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_4_{dtype='float32', mode=None, order='C', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_5_{dtype='float32', mode=None, order='C', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_6_{dtype='float32', mode=None, order='F', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_7_{dtype='float32', mode=None, order='F', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_8_{dtype='float32', mode=None, order='F', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_9_{dtype='float32', mode=None, order='F', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_10_{dtype='float32', mode=None, order='F', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_11_{dtype='float32', mode=None, order='F', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_12_{dtype='float32', mode=numpy, order='C', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_13_{dtype='float32', mode=numpy, order='C', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_14_{dtype='float32', mode=numpy, order='C', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_15_{dtype='float32', mode=numpy, order='C', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_16_{dtype='float32', mode=numpy, order='C', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_17_{dtype='float32', mode=numpy, order='C', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_18_{dtype='float32', mode=numpy, order='F', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_19_{dtype='float32', mode=numpy, order='F', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_20_{dtype='float32', mode=numpy, order='F', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_21_{dtype='float32', mode=numpy, order='F', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_22_{dtype='float32', mode=numpy, order='F', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_23_{dtype='float32', mode=numpy, order='F', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_24_{dtype='float32', mode=cupy, order='C', shape=(10, 9), trans='N'}] | 0.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_25_{dtype='float32', mode=cupy, order='C', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_26_{dtype='float32', mode=cupy, order='C', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_27_{dtype='float32', mode=cupy, order='C', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_28_{dtype='float32', mode=cupy, order='C', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_29_{dtype='float32', mode=cupy, order='C', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_30_{dtype='float32', mode=cupy, order='F', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_31_{dtype='float32', mode=cupy, order='F', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_32_{dtype='float32', mode=cupy, order='F', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_33_{dtype='float32', mode=cupy, order='F', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_34_{dtype='float32', mode=cupy, order='F', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_35_{dtype='float32', mode=cupy, order='F', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_36_{dtype='float64', mode=None, order='C', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_37_{dtype='float64', mode=None, order='C', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_38_{dtype='float64', mode=None, order='C', shape=(10, 9), trans='H'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_39_{dtype='float64', mode=None, order='C', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_40_{dtype='float64', mode=None, order='C', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_41_{dtype='float64', mode=None, order='C', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_42_{dtype='float64', mode=None, order='F', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_43_{dtype='float64', mode=None, order='F', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_44_{dtype='float64', mode=None, order='F', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_45_{dtype='float64', mode=None, order='F', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_46_{dtype='float64', mode=None, order='F', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_47_{dtype='float64', mode=None, order='F', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_48_{dtype='float64', mode=numpy, order='C', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_49_{dtype='float64', mode=numpy, order='C', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_50_{dtype='float64', mode=numpy, order='C', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_51_{dtype='float64', mode=numpy, order='C', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_52_{dtype='float64', mode=numpy, order='C', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_53_{dtype='float64', mode=numpy, order='C', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_54_{dtype='float64', mode=numpy, order='F', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_55_{dtype='float64', mode=numpy, order='F', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_56_{dtype='float64', mode=numpy, order='F', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_57_{dtype='float64', mode=numpy, order='F', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_58_{dtype='float64', mode=numpy, order='F', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_59_{dtype='float64', mode=numpy, order='F', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_60_{dtype='float64', mode=cupy, order='C', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_61_{dtype='float64', mode=cupy, order='C', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_62_{dtype='float64', mode=cupy, order='C', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_63_{dtype='float64', mode=cupy, order='C', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_64_{dtype='float64', mode=cupy, order='C', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_65_{dtype='float64', mode=cupy, order='C', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_66_{dtype='float64', mode=cupy, order='F', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_67_{dtype='float64', mode=cupy, order='F', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_68_{dtype='float64', mode=cupy, order='F', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_69_{dtype='float64', mode=cupy, order='F', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_70_{dtype='float64', mode=cupy, order='F', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_71_{dtype='float64', mode=cupy, order='F', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_72_{dtype='complex64', mode=None, order='C', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_73_{dtype='complex64', mode=None, order='C', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_74_{dtype='complex64', mode=None, order='C', shape=(10, 9), trans='H'}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_75_{dtype='complex64', mode=None, order='C', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_76_{dtype='complex64', mode=None, order='C', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_77_{dtype='complex64', mode=None, order='C', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_78_{dtype='complex64', mode=None, order='F', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_79_{dtype='complex64', mode=None, order='F', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_80_{dtype='complex64', mode=None, order='F', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_81_{dtype='complex64', mode=None, order='F', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_82_{dtype='complex64', mode=None, order='F', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_83_{dtype='complex64', mode=None, order='F', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_84_{dtype='complex64', mode=numpy, order='C', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_85_{dtype='complex64', mode=numpy, order='C', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_86_{dtype='complex64', mode=numpy, order='C', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_87_{dtype='complex64', mode=numpy, order='C', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_88_{dtype='complex64', mode=numpy, order='C', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_89_{dtype='complex64', mode=numpy, order='C', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_90_{dtype='complex64', mode=numpy, order='F', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_91_{dtype='complex64', mode=numpy, order='F', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_92_{dtype='complex64', mode=numpy, order='F', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_93_{dtype='complex64', mode=numpy, order='F', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_94_{dtype='complex64', mode=numpy, order='F', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_95_{dtype='complex64', mode=numpy, order='F', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_96_{dtype='complex64', mode=cupy, order='C', shape=(10, 9), trans='N'}] | 0.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_97_{dtype='complex64', mode=cupy, order='C', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_98_{dtype='complex64', mode=cupy, order='C', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_99_{dtype='complex64', mode=cupy, order='C', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_100_{dtype='complex64', mode=cupy, order='C', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_101_{dtype='complex64', mode=cupy, order='C', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_102_{dtype='complex64', mode=cupy, order='F', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_103_{dtype='complex64', mode=cupy, order='F', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_104_{dtype='complex64', mode=cupy, order='F', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_105_{dtype='complex64', mode=cupy, order='F', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_106_{dtype='complex64', mode=cupy, order='F', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_107_{dtype='complex64', mode=cupy, order='F', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_108_{dtype='complex128', mode=None, order='C', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_109_{dtype='complex128', mode=None, order='C', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_110_{dtype='complex128', mode=None, order='C', shape=(10, 9), trans='H'}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_111_{dtype='complex128', mode=None, order='C', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_112_{dtype='complex128', mode=None, order='C', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_113_{dtype='complex128', mode=None, order='C', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_114_{dtype='complex128', mode=None, order='F', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_115_{dtype='complex128', mode=None, order='F', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_116_{dtype='complex128', mode=None, order='F', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_117_{dtype='complex128', mode=None, order='F', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_118_{dtype='complex128', mode=None, order='F', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_119_{dtype='complex128', mode=None, order='F', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_120_{dtype='complex128', mode=numpy, order='C', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_121_{dtype='complex128', mode=numpy, order='C', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_122_{dtype='complex128', mode=numpy, order='C', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_123_{dtype='complex128', mode=numpy, order='C', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_124_{dtype='complex128', mode=numpy, order='C', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_125_{dtype='complex128', mode=numpy, order='C', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_126_{dtype='complex128', mode=numpy, order='F', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_127_{dtype='complex128', mode=numpy, order='F', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_128_{dtype='complex128', mode=numpy, order='F', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_129_{dtype='complex128', mode=numpy, order='F', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_130_{dtype='complex128', mode=numpy, order='F', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_131_{dtype='complex128', mode=numpy, order='F', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_132_{dtype='complex128', mode=cupy, order='C', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_133_{dtype='complex128', mode=cupy, order='C', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_134_{dtype='complex128', mode=cupy, order='C', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_135_{dtype='complex128', mode=cupy, order='C', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_136_{dtype='complex128', mode=cupy, order='C', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_137_{dtype='complex128', mode=cupy, order='C', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_138_{dtype='complex128', mode=cupy, order='F', shape=(10, 9), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_139_{dtype='complex128', mode=cupy, order='F', shape=(10, 9), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_140_{dtype='complex128', mode=cupy, order='F', shape=(10, 9), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_141_{dtype='complex128', mode=cupy, order='F', shape=(9, 10), trans='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_142_{dtype='complex128', mode=cupy, order='F', shape=(9, 10), trans='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemv::test_gemv[_param_143_{dtype='complex128', mode=cupy, order='F', shape=(9, 10), trans='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_0_{dtype='float32', mode=None, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_1_{dtype='float32', mode=None, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_2_{dtype='float32', mode=None, order='F', shape=(10, 9)}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_3_{dtype='float32', mode=None, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_4_{dtype='float32', mode=numpy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_5_{dtype='float32', mode=numpy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_6_{dtype='float32', mode=numpy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_7_{dtype='float32', mode=numpy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_8_{dtype='float32', mode=cupy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_9_{dtype='float32', mode=cupy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_10_{dtype='float32', mode=cupy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_11_{dtype='float32', mode=cupy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_12_{dtype='float64', mode=None, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_13_{dtype='float64', mode=None, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_14_{dtype='float64', mode=None, order='F', shape=(10, 9)}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_15_{dtype='float64', mode=None, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_16_{dtype='float64', mode=numpy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_17_{dtype='float64', mode=numpy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_18_{dtype='float64', mode=numpy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_19_{dtype='float64', mode=numpy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_20_{dtype='float64', mode=cupy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_21_{dtype='float64', mode=cupy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_22_{dtype='float64', mode=cupy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_23_{dtype='float64', mode=cupy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_24_{dtype='complex64', mode=None, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_25_{dtype='complex64', mode=None, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_26_{dtype='complex64', mode=None, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_27_{dtype='complex64', mode=None, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_28_{dtype='complex64', mode=numpy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_29_{dtype='complex64', mode=numpy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_30_{dtype='complex64', mode=numpy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_31_{dtype='complex64', mode=numpy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_32_{dtype='complex64', mode=cupy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_33_{dtype='complex64', mode=cupy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_34_{dtype='complex64', mode=cupy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_35_{dtype='complex64', mode=cupy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_36_{dtype='complex128', mode=None, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_37_{dtype='complex128', mode=None, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_38_{dtype='complex128', mode=None, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_39_{dtype='complex128', mode=None, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_40_{dtype='complex128', mode=numpy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_41_{dtype='complex128', mode=numpy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_42_{dtype='complex128', mode=numpy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_43_{dtype='complex128', mode=numpy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_44_{dtype='complex128', mode=cupy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_45_{dtype='complex128', mode=cupy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_46_{dtype='complex128', mode=cupy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_ger[_param_47_{dtype='complex128', mode=cupy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_0_{dtype='float32', mode=None, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_1_{dtype='float32', mode=None, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_2_{dtype='float32', mode=None, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_3_{dtype='float32', mode=None, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_4_{dtype='float32', mode=numpy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_5_{dtype='float32', mode=numpy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_6_{dtype='float32', mode=numpy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_7_{dtype='float32', mode=numpy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_8_{dtype='float32', mode=cupy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_9_{dtype='float32', mode=cupy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_10_{dtype='float32', mode=cupy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_11_{dtype='float32', mode=cupy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_12_{dtype='float64', mode=None, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_13_{dtype='float64', mode=None, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_14_{dtype='float64', mode=None, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_15_{dtype='float64', mode=None, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_16_{dtype='float64', mode=numpy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_17_{dtype='float64', mode=numpy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_18_{dtype='float64', mode=numpy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_19_{dtype='float64', mode=numpy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_20_{dtype='float64', mode=cupy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_21_{dtype='float64', mode=cupy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_22_{dtype='float64', mode=cupy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_23_{dtype='float64', mode=cupy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_24_{dtype='complex64', mode=None, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_25_{dtype='complex64', mode=None, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_26_{dtype='complex64', mode=None, order='F', shape=(10, 9)}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_27_{dtype='complex64', mode=None, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_28_{dtype='complex64', mode=numpy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_29_{dtype='complex64', mode=numpy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_30_{dtype='complex64', mode=numpy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_31_{dtype='complex64', mode=numpy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_32_{dtype='complex64', mode=cupy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_33_{dtype='complex64', mode=cupy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_34_{dtype='complex64', mode=cupy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_35_{dtype='complex64', mode=cupy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_36_{dtype='complex128', mode=None, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_37_{dtype='complex128', mode=None, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_38_{dtype='complex128', mode=None, order='F', shape=(10, 9)}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_39_{dtype='complex128', mode=None, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_40_{dtype='complex128', mode=numpy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_41_{dtype='complex128', mode=numpy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_42_{dtype='complex128', mode=numpy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_43_{dtype='complex128', mode=numpy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_44_{dtype='complex128', mode=cupy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_45_{dtype='complex128', mode=cupy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_46_{dtype='complex128', mode=cupy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_geru[_param_47_{dtype='complex128', mode=cupy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_0_{dtype='float32', mode=None, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_1_{dtype='float32', mode=None, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_2_{dtype='float32', mode=None, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_3_{dtype='float32', mode=None, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_4_{dtype='float32', mode=numpy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_5_{dtype='float32', mode=numpy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_6_{dtype='float32', mode=numpy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_7_{dtype='float32', mode=numpy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_8_{dtype='float32', mode=cupy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_9_{dtype='float32', mode=cupy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_10_{dtype='float32', mode=cupy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_11_{dtype='float32', mode=cupy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_12_{dtype='float64', mode=None, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_13_{dtype='float64', mode=None, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_14_{dtype='float64', mode=None, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_15_{dtype='float64', mode=None, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_16_{dtype='float64', mode=numpy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_17_{dtype='float64', mode=numpy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_18_{dtype='float64', mode=numpy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_19_{dtype='float64', mode=numpy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_20_{dtype='float64', mode=cupy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_21_{dtype='float64', mode=cupy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_22_{dtype='float64', mode=cupy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_23_{dtype='float64', mode=cupy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_24_{dtype='complex64', mode=None, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_25_{dtype='complex64', mode=None, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_26_{dtype='complex64', mode=None, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_27_{dtype='complex64', mode=None, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_28_{dtype='complex64', mode=numpy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_29_{dtype='complex64', mode=numpy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_30_{dtype='complex64', mode=numpy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_31_{dtype='complex64', mode=numpy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_32_{dtype='complex64', mode=cupy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_33_{dtype='complex64', mode=cupy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_34_{dtype='complex64', mode=cupy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_35_{dtype='complex64', mode=cupy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_36_{dtype='complex128', mode=None, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_37_{dtype='complex128', mode=None, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_38_{dtype='complex128', mode=None, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_39_{dtype='complex128', mode=None, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_40_{dtype='complex128', mode=numpy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_41_{dtype='complex128', mode=numpy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_42_{dtype='complex128', mode=numpy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_43_{dtype='complex128', mode=numpy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_44_{dtype='complex128', mode=cupy, order='C', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_45_{dtype='complex128', mode=cupy, order='C', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_46_{dtype='complex128', mode=cupy, order='F', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGer::test_gerc[_param_47_{dtype='complex128', mode=cupy, order='F', shape=(9, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_0_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_1_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_2_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_3_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_4_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_5_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_6_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_7_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_8_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_9_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_10_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_11_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_12_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_13_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_14_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_15_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_16_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_17_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_18_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_19_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_20_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_21_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_22_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_23_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_24_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_25_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_26_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_27_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_28_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_29_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_30_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_31_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_32_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_33_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_34_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_35_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_36_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_37_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_38_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_39_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_40_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_41_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_42_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_43_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_44_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_45_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_46_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_47_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_48_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_49_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_50_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_51_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_52_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_53_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_54_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_55_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_56_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_57_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_58_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_59_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_60_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_61_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_62_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_63_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_64_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_65_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_66_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_67_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_68_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_69_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_70_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_71_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_72_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_73_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_74_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_75_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_76_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_77_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_78_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_79_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_80_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_81_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_82_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_83_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_84_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_85_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_86_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_87_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_88_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_89_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_90_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_91_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_92_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_93_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_94_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_95_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_96_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_97_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_98_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_99_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_100_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_101_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_102_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_103_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_104_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_105_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_106_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_107_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_108_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_109_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_110_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_111_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_112_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_113_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_114_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_115_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_116_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_117_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_118_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_119_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_120_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_121_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_122_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_123_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_124_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_125_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_126_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_127_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_128_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_129_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_130_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_131_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_132_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_133_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_134_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_135_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_136_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_137_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_138_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_139_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_140_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_141_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_142_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_143_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_144_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_145_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_146_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_147_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_148_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_149_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_150_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_151_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_152_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_153_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_154_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_155_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_156_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_157_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_158_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_159_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_160_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_161_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_162_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_163_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_164_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_165_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_166_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_167_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_168_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_169_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_170_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_171_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_172_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_173_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_174_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_175_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_176_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_177_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_178_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_179_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_180_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_181_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_182_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_183_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_184_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_185_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_186_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_187_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_188_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_189_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_190_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_191_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_192_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_193_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_194_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_195_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_196_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_197_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_198_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_199_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_200_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_201_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_202_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_203_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_204_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_205_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_206_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_207_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_208_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_209_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_210_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_211_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_212_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_213_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_214_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_215_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_216_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_217_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_218_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_219_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_220_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_221_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_222_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_223_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_224_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_225_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_226_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_227_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_228_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_229_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_230_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_231_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_232_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_233_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_234_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_235_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_236_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_237_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_238_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_239_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_240_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_241_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_242_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_243_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_244_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_245_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_246_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_247_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_248_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_249_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_250_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_251_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_252_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_253_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_254_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_255_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_256_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_257_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_258_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_259_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_260_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_261_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_262_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_263_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_264_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_265_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_266_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_267_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_268_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_269_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_270_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_271_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_272_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_273_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_274_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_275_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_276_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_277_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_278_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_279_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_280_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_281_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_282_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_283_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_284_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_285_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_286_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_287_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_288_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_289_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_290_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_291_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_292_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_293_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_294_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_295_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_296_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_297_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_298_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_299_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_300_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_301_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_302_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_303_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_304_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_305_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_306_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_307_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_308_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_309_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_310_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_311_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_312_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_313_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_314_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_315_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_316_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_317_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_318_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_319_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_320_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_321_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_322_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_323_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_324_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_325_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_326_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_327_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_328_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_329_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_330_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_331_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_332_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_333_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_334_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_335_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_336_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_337_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_338_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_339_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_340_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_341_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_342_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_343_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_344_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_345_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_346_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_347_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_348_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_349_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_350_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_351_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_352_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_353_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_354_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_355_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_356_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_357_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_358_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_359_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_360_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_361_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_362_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_363_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_364_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_365_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_366_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_367_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_368_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_369_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_370_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_371_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_372_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_373_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_374_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_375_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_376_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_377_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_378_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_379_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_380_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_381_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_382_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_383_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_384_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_385_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_386_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_387_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_388_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_389_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_390_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_391_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_392_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_393_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_394_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_395_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_396_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_397_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_398_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_399_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_400_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_401_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_402_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_403_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_404_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_405_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_406_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_407_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_408_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_409_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_410_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_411_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_412_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_413_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_414_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_415_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_416_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_417_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_418_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_419_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_420_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_421_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_422_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_423_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_424_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_425_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_426_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_427_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_428_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_429_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_430_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm[_param_431_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_0_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_1_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_2_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_3_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_4_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_5_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_6_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_7_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_8_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_9_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 2.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_10_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_11_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_12_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_13_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_14_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_15_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_16_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_17_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_18_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_19_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_20_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_21_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_22_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_23_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_24_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_25_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_26_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_27_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_28_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_29_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_30_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_31_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_32_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_33_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_34_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_35_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_36_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_37_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_38_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_39_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_40_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_41_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_42_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_43_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_44_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_45_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_46_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_47_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_48_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_49_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_50_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_51_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_52_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_53_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_54_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_55_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_56_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_57_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_58_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_59_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_60_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_61_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_62_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_63_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_64_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_65_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_66_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_67_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_68_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_69_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_70_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_71_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_72_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_73_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_74_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_75_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_76_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_77_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_78_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_79_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_80_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_81_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_82_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_83_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_84_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_85_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_86_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_87_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_88_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_89_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_90_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_91_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_92_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_93_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_94_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_95_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_96_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_97_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_98_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_99_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_100_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_101_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_102_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_103_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_104_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_105_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_106_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_107_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_108_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_109_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_110_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_111_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_112_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_113_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_114_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_115_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_116_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_117_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_118_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_119_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_120_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_121_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_122_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_123_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_124_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_125_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_126_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_127_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_128_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_129_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_130_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_131_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_132_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_133_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_134_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_135_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_136_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_137_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_138_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_139_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_140_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_141_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_142_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_143_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_144_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_145_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_146_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_147_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_148_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_149_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_150_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_151_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_152_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_153_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_154_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_155_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_156_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_157_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_158_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_159_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_160_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_161_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_162_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_163_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_164_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_165_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_166_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_167_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_168_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_169_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_170_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_171_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_172_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_173_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_174_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_175_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_176_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_177_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_178_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_179_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_180_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_181_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_182_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_183_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_184_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_185_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_186_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_187_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_188_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_189_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_190_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_191_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_192_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_193_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_194_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_195_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_196_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_197_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_198_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_199_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_200_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_201_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_202_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_203_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_204_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_205_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_206_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_207_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_208_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_209_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_210_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_211_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_212_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_213_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_214_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_215_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_216_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_217_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_218_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_219_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_220_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_221_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_222_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_223_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_224_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_225_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_226_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_227_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_228_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_229_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_230_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_231_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_232_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_233_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_234_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_235_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_236_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_237_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_238_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_239_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_240_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_241_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_242_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_243_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_244_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_245_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_246_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_247_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_248_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_249_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_250_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_251_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_252_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_253_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_254_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_255_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_256_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_257_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_258_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_259_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_260_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_261_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_262_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_263_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_264_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_265_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_266_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_267_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_268_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_269_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_270_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_271_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_272_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_273_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_274_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_275_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_276_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_277_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_278_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_279_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_280_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_281_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_282_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_283_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_284_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_285_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_286_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_287_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_288_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_289_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_290_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_291_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_292_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_293_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_294_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_295_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_296_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_297_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_298_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_299_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_300_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_301_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_302_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_303_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_304_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_305_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_306_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_307_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_308_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_309_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_310_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_311_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_312_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_313_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_314_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_315_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_316_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_317_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_318_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_319_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_320_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_321_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_322_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_323_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_324_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_325_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_326_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_327_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_328_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_329_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_330_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_331_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_332_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_333_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_334_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_335_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_336_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_337_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_338_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_339_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_340_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_341_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_342_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_343_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_344_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_345_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_346_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_347_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_348_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_349_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_350_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_351_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_352_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_353_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_354_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_355_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_356_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_357_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_358_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_359_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_360_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_361_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_362_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_363_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_364_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_365_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_366_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_367_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_368_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_369_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_370_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_371_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_372_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_373_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_374_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_375_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_376_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_377_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_378_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_379_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_380_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_381_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_382_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_383_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_384_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_385_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_386_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_387_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_388_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_389_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_390_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_391_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_392_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_393_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_394_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_395_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_396_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_397_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_398_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_399_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_400_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_401_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_402_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_403_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_404_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_405_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_406_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_407_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_408_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_409_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_410_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_411_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_412_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_413_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_414_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_415_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_416_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_417_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_418_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_419_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_420_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_421_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_422_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_423_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_424_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_425_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_426_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_427_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_428_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_429_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_430_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_gemm_out[_param_431_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_0_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_1_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_2_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_3_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_4_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_5_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_6_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_7_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_8_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_9_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_10_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_11_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_12_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_13_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_14_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_15_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_16_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_17_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_18_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_19_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_20_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_21_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_22_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_23_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_24_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_25_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_26_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_27_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_28_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_29_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_30_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_31_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_32_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_33_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_34_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_35_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_36_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_37_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_38_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_39_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_40_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_41_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_42_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_43_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_44_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_45_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_46_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_47_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_48_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_49_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_50_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_51_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_52_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_53_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_54_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_55_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_56_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_57_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_58_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_59_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_60_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_61_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_62_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_63_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_64_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_65_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_66_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_67_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_68_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_69_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_70_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_71_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_72_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_73_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_74_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_75_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_76_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_77_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_78_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_79_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_80_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_81_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_82_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_83_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_84_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_85_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_86_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_87_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_88_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_89_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_90_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_91_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_92_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_93_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_94_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_95_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_96_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_97_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_98_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_99_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_100_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_101_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_102_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_103_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_104_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_105_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_106_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_107_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_108_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_109_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_110_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_111_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_112_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_113_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_114_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_115_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_116_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_117_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_118_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_119_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_120_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_121_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_122_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_123_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_124_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_125_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_126_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_127_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_128_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_129_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_130_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_131_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_132_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_133_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_134_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_135_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_136_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_137_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_138_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_139_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_140_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_141_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_142_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_143_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_144_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_145_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_146_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_147_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_148_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_149_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_150_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_151_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_152_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_153_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_154_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_155_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_156_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_157_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_158_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_159_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_160_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_161_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_162_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_163_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_164_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_165_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_166_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_167_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_168_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_169_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_170_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_171_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_172_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_173_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_174_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_175_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_176_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_177_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_178_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_179_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_180_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_181_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_182_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_183_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_184_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_185_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_186_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_187_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_188_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_189_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_190_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_191_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_192_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_193_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_194_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_195_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_196_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_197_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_198_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_199_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_200_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_201_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_202_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_203_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_204_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_205_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_206_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_207_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_208_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_209_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_210_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_211_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_212_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_213_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_214_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_215_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_216_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_217_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_218_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_219_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_220_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_221_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_222_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_223_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_224_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_225_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_226_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_227_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_228_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_229_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_230_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_231_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_232_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_233_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_234_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_235_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_236_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_237_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_238_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_239_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_240_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_241_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_242_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_243_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_244_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_245_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_246_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_247_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_248_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_249_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_250_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_251_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_252_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_253_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_254_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_255_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_256_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_257_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_258_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_259_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_260_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_261_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_262_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_263_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_264_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_265_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_266_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_267_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_268_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_269_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_270_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_271_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_272_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_273_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_274_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_275_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_276_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_277_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_278_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_279_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_280_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_281_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_282_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_283_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_284_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_285_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_286_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_287_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_288_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_289_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_290_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_291_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_292_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_293_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_294_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_295_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_296_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_297_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_298_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_299_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_300_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_301_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_302_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_303_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_304_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_305_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_306_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_307_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_308_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_309_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_310_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_311_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_312_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_313_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_314_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_315_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_316_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_317_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_318_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_319_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_320_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_321_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_322_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_323_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_324_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_325_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_326_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_327_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_328_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_329_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_330_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_331_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_332_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_333_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_334_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_335_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_336_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_337_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_338_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_339_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_340_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_341_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_342_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_343_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_344_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_345_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_346_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_347_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_348_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_349_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_350_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_351_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_352_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_353_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_354_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_355_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_356_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_357_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_358_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_359_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_360_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_361_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_362_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_363_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_364_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_365_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_366_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_367_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_368_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_369_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_370_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_371_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_372_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_373_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_374_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_375_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_376_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_377_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_378_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_379_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_380_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_381_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_382_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_383_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_384_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_385_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_386_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_387_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_388_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_389_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_390_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_391_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_392_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_393_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_394_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_395_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_396_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_397_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_398_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_399_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_400_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_401_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_402_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_403_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_404_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_405_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_406_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_407_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_408_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_409_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_410_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_411_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_412_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_413_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_414_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_415_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_416_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_417_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_418_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_419_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_420_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_421_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_422_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_423_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_424_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_425_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_426_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_427_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_428_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_429_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_430_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam[_param_431_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_0_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_1_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_2_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_3_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_4_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_5_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_6_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_7_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_8_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_9_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_10_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_11_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_12_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_13_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_14_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_15_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_16_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_17_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_18_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_19_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_20_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_21_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_22_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_23_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_24_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_25_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_26_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_27_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_28_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_29_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_30_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_31_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_32_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_33_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_34_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_35_{mnk=(8, 9, 10), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_36_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_37_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_38_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_39_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_40_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_41_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_42_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_43_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_44_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_45_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_46_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_47_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_48_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_49_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_50_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_51_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_52_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_53_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_54_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_55_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_56_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_57_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_58_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_59_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_60_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_61_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_62_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_63_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_64_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_65_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_66_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_67_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_68_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_69_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_70_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_71_{mnk=(8, 9, 10), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_72_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_73_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_74_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_75_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_76_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_77_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_78_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_79_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_80_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_81_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_82_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_83_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_84_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_85_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_86_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_87_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_88_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_89_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_90_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_91_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_92_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_93_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_94_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_95_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_96_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_97_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_98_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_99_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_100_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_101_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_102_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_103_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_104_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_105_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_106_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_107_{mnk=(8, 9, 10), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_108_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_109_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_110_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_111_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_112_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_113_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_114_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_115_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_116_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_117_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_118_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_119_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_120_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_121_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_122_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_123_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_124_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_125_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_126_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_127_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_128_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_129_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_130_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_131_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_132_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_133_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_134_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_135_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_136_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_137_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_138_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_139_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_140_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_141_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_142_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_143_{mnk=(8, 9, 10), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_144_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_145_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_146_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_147_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_148_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_149_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_150_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_151_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_152_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_153_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_154_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_155_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_156_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_157_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_158_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_159_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_160_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_161_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_162_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_163_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_164_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_165_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_166_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_167_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_168_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_169_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_170_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_171_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_172_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_173_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_174_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_175_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_176_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_177_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_178_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_179_{mnk=(8, 9, 10), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_180_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_181_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_182_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_183_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_184_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_185_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_186_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_187_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_188_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_189_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_190_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_191_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_192_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_193_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_194_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_195_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_196_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_197_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_198_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_199_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_200_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_201_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_202_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_203_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_204_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_205_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_206_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_207_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_208_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_209_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_210_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_211_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_212_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_213_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_214_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_215_{mnk=(8, 9, 10), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_216_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_217_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_218_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_219_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_220_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_221_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_222_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_223_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_224_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_225_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_226_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_227_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_228_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_229_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_230_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_231_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_232_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_233_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_234_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_235_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_236_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_237_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_238_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_239_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_240_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_241_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_242_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_243_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_244_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_245_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_246_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_247_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_248_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_249_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_250_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_251_{mnk=(10, 9, 8), mode=None, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_252_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_253_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_254_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_255_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_256_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_257_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_258_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_259_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_260_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_261_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_262_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_263_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_264_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_265_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_266_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_267_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_268_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_269_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_270_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_271_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_272_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_273_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_274_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_275_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_276_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_277_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_278_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_279_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_280_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_281_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_282_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_283_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_284_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_285_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_286_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_287_{mnk=(10, 9, 8), mode=None, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_288_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_289_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_290_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_291_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_292_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_293_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_294_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_295_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_296_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_297_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_298_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_299_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_300_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_301_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_302_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_303_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_304_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_305_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_306_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_307_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_308_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_309_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_310_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_311_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_312_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_313_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_314_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_315_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_316_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_317_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_318_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_319_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_320_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_321_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_322_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_323_{mnk=(10, 9, 8), mode=numpy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_324_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_325_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_326_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_327_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_328_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_329_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_330_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_331_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_332_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_333_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_334_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_335_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_336_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_337_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_338_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_339_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_340_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_341_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_342_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_343_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_344_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_345_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_346_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_347_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_348_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_349_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_350_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_351_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_352_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_353_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_354_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_355_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_356_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_357_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_358_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_359_{mnk=(10, 9, 8), mode=numpy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_360_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_361_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_362_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_363_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_364_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_365_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_366_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_367_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_368_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_369_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_370_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_371_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_372_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_373_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_374_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_375_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_376_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_377_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_378_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_379_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_380_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_381_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_382_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_383_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_384_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_385_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_386_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_387_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_388_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_389_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_390_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_391_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_392_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_393_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_394_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_395_{mnk=(10, 9, 8), mode=cupy, ordera='C', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_396_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_397_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_398_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_399_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_400_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_401_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_402_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_403_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_404_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_405_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_406_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_407_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_408_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_409_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_410_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_411_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_412_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_413_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='C', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_414_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_415_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_416_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_417_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_418_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_419_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_420_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_421_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_422_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='C', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_423_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_424_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_425_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='N', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_426_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_427_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_428_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='T', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_429_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='N'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_430_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='T'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestGemmAndGeam::test_geam_out[_param_431_{mnk=(10, 9, 8), mode=cupy, ordera='F', orderb='F', orderc='F', transa='H', transb='H'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_0_{ordera='C', orderc='C', shape=(9, 10), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_1_{ordera='C', orderc='C', shape=(9, 10), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_2_{ordera='C', orderc='C', shape=(10, 9), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_3_{ordera='C', orderc='C', shape=(10, 9), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_4_{ordera='C', orderc='F', shape=(9, 10), side='L'}] | 2.59 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_5_{ordera='C', orderc='F', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_6_{ordera='C', orderc='F', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_7_{ordera='C', orderc='F', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_8_{ordera='F', orderc='C', shape=(9, 10), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_9_{ordera='F', orderc='C', shape=(9, 10), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_10_{ordera='F', orderc='C', shape=(10, 9), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_11_{ordera='F', orderc='C', shape=(10, 9), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_12_{ordera='F', orderc='F', shape=(9, 10), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_13_{ordera='F', orderc='F', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_14_{ordera='F', orderc='F', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm[_param_15_{ordera='F', orderc='F', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_0_{ordera='C', orderc='C', shape=(9, 10), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_1_{ordera='C', orderc='C', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_2_{ordera='C', orderc='C', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_3_{ordera='C', orderc='C', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_4_{ordera='C', orderc='F', shape=(9, 10), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_5_{ordera='C', orderc='F', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_6_{ordera='C', orderc='F', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_7_{ordera='C', orderc='F', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_8_{ordera='F', orderc='C', shape=(9, 10), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_9_{ordera='F', orderc='C', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_10_{ordera='F', orderc='C', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_11_{ordera='F', orderc='C', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_12_{ordera='F', orderc='F', shape=(9, 10), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_13_{ordera='F', orderc='F', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_14_{ordera='F', orderc='F', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_out[_param_15_{ordera='F', orderc='F', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_0_{ordera='C', orderc='C', shape=(9, 10), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_1_{ordera='C', orderc='C', shape=(9, 10), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_2_{ordera='C', orderc='C', shape=(10, 9), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_3_{ordera='C', orderc='C', shape=(10, 9), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_4_{ordera='C', orderc='F', shape=(9, 10), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_5_{ordera='C', orderc='F', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_6_{ordera='C', orderc='F', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_7_{ordera='C', orderc='F', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_8_{ordera='F', orderc='C', shape=(9, 10), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_9_{ordera='F', orderc='C', shape=(9, 10), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_10_{ordera='F', orderc='C', shape=(10, 9), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_11_{ordera='F', orderc='C', shape=(10, 9), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_12_{ordera='F', orderc='F', shape=(9, 10), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_13_{ordera='F', orderc='F', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_14_{ordera='F', orderc='F', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_inplace[_param_15_{ordera='F', orderc='F', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_0_{ordera='C', orderc='C', shape=(9, 10), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_1_{ordera='C', orderc='C', shape=(9, 10), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_2_{ordera='C', orderc='C', shape=(10, 9), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_3_{ordera='C', orderc='C', shape=(10, 9), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_4_{ordera='C', orderc='F', shape=(9, 10), side='L'}] | 2.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_6_{ordera='C', orderc='F', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_8_{ordera='F', orderc='C', shape=(9, 10), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_9_{ordera='F', orderc='C', shape=(9, 10), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_10_{ordera='F', orderc='C', shape=(10, 9), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_11_{ordera='F', orderc='C', shape=(10, 9), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_13_{ordera='F', orderc='F', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_incx_minus_one[_param_15_{ordera='F', orderc='F', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_0_{ordera='C', orderc='C', shape=(9, 10), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_1_{ordera='C', orderc='C', shape=(9, 10), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_2_{ordera='C', orderc='C', shape=(10, 9), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_3_{ordera='C', orderc='C', shape=(10, 9), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_4_{ordera='C', orderc='F', shape=(9, 10), side='L'}] | 2.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_5_{ordera='C', orderc='F', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_6_{ordera='C', orderc='F', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_7_{ordera='C', orderc='F', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_8_{ordera='F', orderc='C', shape=(9, 10), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_9_{ordera='F', orderc='C', shape=(9, 10), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_10_{ordera='F', orderc='C', shape=(10, 9), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_11_{ordera='F', orderc='C', shape=(10, 9), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_12_{ordera='F', orderc='F', shape=(9, 10), side='L'}] | 2.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_13_{ordera='F', orderc='F', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_14_{ordera='F', orderc='F', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_scalar[_param_15_{ordera='F', orderc='F', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_0_{ordera='C', orderc='C', shape=(9, 10), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_1_{ordera='C', orderc='C', shape=(9, 10), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_2_{ordera='C', orderc='C', shape=(10, 9), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_3_{ordera='C', orderc='C', shape=(10, 9), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_4_{ordera='C', orderc='F', shape=(9, 10), side='L'}] | 2.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_5_{ordera='C', orderc='F', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_6_{ordera='C', orderc='F', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_7_{ordera='C', orderc='F', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_8_{ordera='F', orderc='C', shape=(9, 10), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_9_{ordera='F', orderc='C', shape=(9, 10), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_10_{ordera='F', orderc='C', shape=(10, 9), side='L'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_11_{ordera='F', orderc='C', shape=(10, 9), side='R'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f () skipped: dtype = d () skipped: dtype = F () skipped: dtype = D () | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_12_{ordera='F', orderc='F', shape=(9, 10), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_13_{ordera='F', orderc='F', shape=(9, 10), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_14_{ordera='F', orderc='F', shape=(10, 9), side='L'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_cublas.py::TestDgmm::test_dgmm_x_matrix[_param_15_{ordera='F', orderc='F', shape=(10, 9), side='R'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_init.py::TestImportError::test_import_error | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_init.py::TestAvailable::test_available | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_init.py::TestNotAvailable::test_no_device_2 | 0.61 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_init.py::TestMemoryPool::test_get_default_memory_pool | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_init.py::TestMemoryPool::test_get_default_pinned_memory_pool | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_init.py::TestShowConfig::test_show_config | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_init.py::TestShowConfig::test_show_config_with_handles | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_init.py::TestAliases::test_abs_is_absolute | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_init.py::TestAliases::test_bitwise_not_is_invert | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_init.py::TestAliases::test_conj_is_conjugate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_ndim.py::TestNdim::test_ndim_array_function | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_ndim.py::TestNdim::test_ndim_list1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_ndim.py::TestNdim::test_ndim_list2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_ndim.py::TestNdim::test_ndim_ndarray0d | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_ndim.py::TestNdim::test_ndim_ndarray1d | 0.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_ndim.py::TestNdim::test_ndim_ndarray2d | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_ndim.py::TestNdim::test_ndim_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_ndim.py::TestNdim::test_ndim_object | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_ndim.py::TestNdim::test_ndim_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_ndim.py::TestNdim::test_ndim_set | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_ndim.py::TestNdim::test_ndim_string | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_ndim.py::TestNdim::test_ndim_tuple | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_numpy_interop.py::TestGetArrayModule::test_get_array_module_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_numpy_interop.py::TestArrayUfunc::test_add | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_numpy_interop.py::TestArrayUfunc::test_lt | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_numpy_interop.py::TestArrayUfuncOptout::test_add | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_numpy_interop.py::TestArrayUfuncOptout::test_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_numpy_interop.py::TestArrayUfuncOptout::test_lt | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestCanCast_param_0_{obj_type='dtype'}::test_can_cast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestCanCast_param_1_{obj_type='specifier'}::test_can_cast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestCanCast_param_2_{obj_type='scalar'}::test_can_cast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestCanCast_param_3_{obj_type='array'}::test_can_cast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestCanCast_param_4_{obj_type='primitive'}::test_can_cast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_0_{obj_type1='dtype', obj_type2='dtype'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_1_{obj_type1='dtype', obj_type2='specifier'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_2_{obj_type1='dtype', obj_type2='scalar'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_3_{obj_type1='dtype', obj_type2='array'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_4_{obj_type1='dtype', obj_type2='primitive'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_5_{obj_type1='specifier', obj_type2='dtype'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_6_{obj_type1='specifier', obj_type2='specifier'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_7_{obj_type1='specifier', obj_type2='scalar'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_8_{obj_type1='specifier', obj_type2='array'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_9_{obj_type1='specifier', obj_type2='primitive'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_10_{obj_type1='scalar', obj_type2='dtype'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_11_{obj_type1='scalar', obj_type2='specifier'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_12_{obj_type1='scalar', obj_type2='scalar'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_13_{obj_type1='scalar', obj_type2='array'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_14_{obj_type1='scalar', obj_type2='primitive'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_15_{obj_type1='array', obj_type2='dtype'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_16_{obj_type1='array', obj_type2='specifier'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_17_{obj_type1='array', obj_type2='scalar'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_18_{obj_type1='array', obj_type2='array'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_19_{obj_type1='array', obj_type2='primitive'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_20_{obj_type1='primitive', obj_type2='dtype'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_21_{obj_type1='primitive', obj_type2='specifier'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_22_{obj_type1='primitive', obj_type2='scalar'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_23_{obj_type1='primitive', obj_type2='array'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestResultType_param_24_{obj_type1='primitive', obj_type2='primitive'}::test_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestCommonType::test_common_type_bool | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestCommonType::test_common_type_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestCommonType::test_common_type_single_argument | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/test_type_routines.py::TestCommonType::test_common_type_two_arguments | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/binary_tests/test_elementwise.py::TestElementwise::test_bitwise_and | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/binary_tests/test_elementwise.py::TestElementwise::test_bitwise_or | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/binary_tests/test_elementwise.py::TestElementwise::test_bitwise_xor | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/binary_tests/test_elementwise.py::TestElementwise::test_invert | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/binary_tests/test_elementwise.py::TestElementwise::test_left_shift | 5.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/binary_tests/test_elementwise.py::TestElementwise::test_right_shift | 5.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/binary_tests/test_packing.py::TestPacking::test_packbits | 5.90 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/binary_tests/test_packing.py::TestPacking::test_packbits_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/binary_tests/test_packing.py::TestPacking::test_unpackbits | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_array_function.py::TestArrayFunction::test_array_function | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_array_function.py::TestArrayFunction::test_array_function2 | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_array_function.py::TestArrayFunction::test_array_function_can_cast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_array_function.py::TestArrayFunction::test_array_function_common_type | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_array_function.py::TestArrayFunction::test_array_function_result_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_carray.py::TestCArray::test_getitem_idx | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_carray.py::TestCArray::test_getitem_int | 0.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_carray.py::TestCArray::test_shape | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_carray.py::TestCArray::test_size | 0.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_carray.py::TestCArray::test_strides | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_core.py::TestCuPyHeaders_param_0_{cxx=None}::test_compiling_core_header | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_core.py::TestCuPyHeaders_param_1_{cxx='--std=c++11'}::test_compiling_core_header | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_core.py::TestSize::test_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_core.py::TestSize::test_size_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_core.py::TestSize::test_size_axis_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_core.py::TestOrder::test_ndarray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_0_{order='C', shape=(2,)}::test_can_use_cub_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_0_{order='C', shape=(2,)}::test_can_use_cub_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_1_{order='C', shape=(2, 3)}::test_can_use_cub_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_1_{order='C', shape=(2, 3)}::test_can_use_cub_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_2_{order='C', shape=(2, 3, 4)}::test_can_use_cub_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_2_{order='C', shape=(2, 3, 4)}::test_can_use_cub_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_3_{order='C', shape=(2, 3, 4, 5)}::test_can_use_cub_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_3_{order='C', shape=(2, 3, 4, 5)}::test_can_use_cub_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_4_{order='F', shape=(2,)}::test_can_use_cub_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_4_{order='F', shape=(2,)}::test_can_use_cub_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_5_{order='F', shape=(2, 3)}::test_can_use_cub_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_5_{order='F', shape=(2, 3)}::test_can_use_cub_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_6_{order='F', shape=(2, 3, 4)}::test_can_use_cub_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_6_{order='F', shape=(2, 3, 4)}::test_can_use_cub_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_7_{order='F', shape=(2, 3, 4, 5)}::test_can_use_cub_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelContiguity_param_7_{order='F', shape=(2, 3, 4, 5)}::test_can_use_cub_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelMisc::test_can_use_accelerator_set_unset | 6.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelMisc::test_can_use_cub_nonsense_input1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelMisc::test_can_use_cub_nonsense_input2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelMisc::test_can_use_cub_nonsense_input3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelMisc::test_can_use_cub_oversize_input1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelMisc::test_can_use_cub_oversize_input2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelMisc::test_can_use_cub_oversize_input3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelMisc::test_can_use_cub_oversize_input4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_cub_reduction.py::TestSimpleCubReductionKernelMisc::test_can_use_cub_zero_size_input | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_dlpack.py::TestDLPackConversion::test_conversion | 10.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_dlpack.py::TestDLTensorMemory::test_deleter | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_dlpack.py::TestDLTensorMemory::test_deleter2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_dlpack.py::TestDLTensorMemory::test_multiple_consumption_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwise::test_copy | 5.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwise::test_copy_multigpu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwise::test_copy_orders | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwise::test_copy_zero_sized_array1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwise::test_copy_zero_sized_array2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwiseInvalidShape::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwiseInvalidArgument::test_invalid_kernel_name | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwiseType::test_large_int_lower_1 | 2.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwiseType::test_large_int_lower_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwiseType::test_large_int_lower_3 | 3.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwiseType::test_large_int_lower_4 | 2.57 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwiseType::test_large_int_upper_1 | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwiseType::test_large_int_upper_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwiseType::test_large_int_upper_3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_elementwise.py::TestElementwiseType::test_large_int_upper_4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_0_{order='C', shape=(8,)}::test_c_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_0_{order='C', shape=(8,)}::test_f_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_0_{order='C', shape=(8,)}::test_fnc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_0_{order='C', shape=(8,)}::test_forc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_1_{order='C', shape=(4, 8)}::test_c_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_1_{order='C', shape=(4, 8)}::test_f_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_1_{order='C', shape=(4, 8)}::test_fnc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_1_{order='C', shape=(4, 8)}::test_forc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_2_{order='F', shape=(8,)}::test_c_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_2_{order='F', shape=(8,)}::test_f_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_2_{order='F', shape=(8,)}::test_fnc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_2_{order='F', shape=(8,)}::test_forc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_3_{order='F', shape=(4, 8)}::test_c_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_3_{order='F', shape=(4, 8)}::test_f_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_3_{order='F', shape=(4, 8)}::test_fnc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_3_{order='F', shape=(4, 8)}::test_forc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_4_{order='non-contiguous', shape=(8,)}::test_c_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_4_{order='non-contiguous', shape=(8,)}::test_f_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_4_{order='non-contiguous', shape=(8,)}::test_fnc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_4_{order='non-contiguous', shape=(8,)}::test_forc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_5_{order='non-contiguous', shape=(4, 8)}::test_c_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_5_{order='non-contiguous', shape=(4, 8)}::test_f_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_5_{order='non-contiguous', shape=(4, 8)}::test_fnc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestContiguityFlags_param_5_{order='non-contiguous', shape=(4, 8)}::test_forc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestFlags::test_c_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestFlags::test_f_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestFlags::test_key_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestFlags::test_owndata | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_flags.py::TestFlags::test_repr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_function.py::TestFunction::test_numpy_scalar | 0.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_function.py::TestFunction::test_python_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_0_{expect=(2, 8, 1), slice=(2, 8, 1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_1_{expect=(2, 10, 1), slice=(2, None, 1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_2_{expect=(2, 2, 1), slice=(2, 1, 1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_3_{expect=(2, 9, 1), slice=(2, -1, 1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_4_{expect=(0, 8, 1), slice=(None, 8, 1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_5_{expect=(7, 8, 1), slice=(-3, 8, 1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_6_{expect=(10, 10, 1), slice=(11, 8, 1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_7_{expect=(10, 10, 1), slice=(11, 11, 1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_8_{expect=(0, 8, 1), slice=(-11, 8, 1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_9_{expect=(0, 0, 1), slice=(-11, -11, 1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_10_{expect=(8, 2, -1), slice=(8, 2, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_11_{expect=(8, -1, -1), slice=(8, None, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_12_{expect=(8, 8, -1), slice=(8, 9, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_13_{expect=(8, 7, -1), slice=(8, -3, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_14_{expect=(9, 8, -1), slice=(None, 8, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_15_{expect=(7, 6, -1), slice=(-3, 6, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_16_{expect=(9, 9, -1), slice=(10, 10, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_17_{expect=(9, 8, -1), slice=(10, 8, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_18_{expect=(9, 9, -1), slice=(9, 10, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_19_{expect=(9, 9, -1), slice=(9, 9, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_20_{expect=(9, 8, -1), slice=(9, 8, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_21_{expect=(8, 8, -1), slice=(8, 8, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_22_{expect=(1, 1, -1), slice=(-9, -8, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_23_{expect=(1, 1, -1), slice=(-9, -9, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_24_{expect=(1, 0, -1), slice=(-9, -10, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_25_{expect=(1, -1, -1), slice=(-9, -11, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_26_{expect=(1, -1, -1), slice=(-9, -12, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_27_{expect=(0, 0, -1), slice=(-10, -9, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_28_{expect=(0, 0, -1), slice=(-10, -10, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_29_{expect=(0, -1, -1), slice=(-10, -11, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_30_{expect=(0, -1, -1), slice=(-10, -12, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_31_{expect=(-1, -1, -1), slice=(-11, 8, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_32_{expect=(-1, -1, -1), slice=(-11, -9, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_33_{expect=(-1, -1, -1), slice=(-11, -10, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_34_{expect=(-1, -1, -1), slice=(-11, -11, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSlice_param_35_{expect=(-1, -1, -1), slice=(-11, -12, -1)}::test_complete_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestClp2_param_0_{expect=0, x=0}::test_clp2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestClp2_param_1_{expect=1, x=1}::test_clp2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestClp2_param_2_{expect=2, x=2}::test_clp2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestClp2_param_3_{expect=4, x=3}::test_clp2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestClp2_param_4_{expect=1024, x=1024}::test_clp2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestClp2_param_5_{expect=1024, x=1023}::test_clp2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestClp2_param_6_{expect=2048, x=1025}::test_clp2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestClp2_param_7_{expect=1099511627776, x=1099511627776}::test_clp2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestClp2_param_8_{expect=1099511627776, x=1099511627775}::test_clp2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestClp2_param_9_{expect=2199023255552, x=1099511627777}::test_clp2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestConvertFloat16_param_0_{value=0.0}::test_conversion | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestConvertFloat16_param_1_{value=1.0}::test_conversion | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestConvertFloat16_param_2_{value=-1.0}::test_conversion | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestConvertFloat16_param_3_{value=0.25}::test_conversion | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestConvertFloat16_param_4_{value=-0.25}::test_conversion | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestConvertFloat16_param_5_{value=11.0}::test_conversion | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestConvertFloat16_param_6_{value=-11.0}::test_conversion | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestConvertFloat16_param_7_{value=3.0517578125e-05}::test_conversion | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestConvertFloat16_param_8_{value=-3.0517578125e-05}::test_conversion | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestConvertFloat16_param_9_{value=inf}::test_conversion | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestConvertFloat16_param_10_{value=-inf}::test_conversion | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestProd::test_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestProd::test_one | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestProd::test_two | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestProdSequence::test_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestProdSequence::test_one | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestProdSequence::test_two | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetSize::test_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetSize::test_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetSize::test_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetSize::test_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetSize::test_tuple | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestVectorEqual::test_different_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestVectorEqual::test_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestVectorEqual::test_equal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestVectorEqual::test_not_equal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetCContiguity::test_all_one_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetCContiguity::test_no_contiguous1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetCContiguity::test_no_contiguous2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetCContiguity::test_no_contiguous3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetCContiguity::test_normal1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetCContiguity::test_normal2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetCContiguity::test_normal3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetCContiguity::test_normal4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetCContiguity::test_normal5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestGetCContiguity::test_zero_in_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestInferUnknownDimension::test_infer | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestInferUnknownDimension::test_known_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestInferUnknownDimension::test_multiple_unknown | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSliceError::test_invalid_start_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSliceError::test_invalid_step_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSliceError::test_invalid_step_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestCompleteSliceError::test_invalid_stop_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_internal.py::TestConvertFloat16Nan::test_conversion | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_iter.py::TestIter_param_0_{shape=(3,)}::test_len | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_iter.py::TestIter_param_0_{shape=(3,)}::test_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_iter.py::TestIter_param_1_{shape=(2, 3, 4)}::test_len | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_iter.py::TestIter_param_1_{shape=(2, 3, 4)}::test_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_iter.py::TestIter_param_2_{shape=(0,)}::test_len | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_iter.py::TestIter_param_2_{shape=(0,)}::test_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_iter.py::TestIter_param_3_{shape=(0, 2)}::test_len | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_iter.py::TestIter_param_3_{shape=(0, 2)}::test_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_iter.py::TestIter_param_4_{shape=(3, 0)}::test_len | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_iter.py::TestIter_param_4_{shape=(3, 0)}::test_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_iter.py::TestIterInvalid::test_iter | 5.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_iter.py::TestIterInvalid::test_len | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_0_{dtype=uint8, order='C', shape=()}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_1_{dtype=uint8, order='C', shape=(1,)}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_2_{dtype=uint8, order='C', shape=(1, 2)}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_3_{dtype=uint8, order='C', shape=(1, 2, 3)}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_4_{dtype=uint8, order='F', shape=()}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_5_{dtype=uint8, order='F', shape=(1,)}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_6_{dtype=uint8, order='F', shape=(1, 2)}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_7_{dtype=uint8, order='F', shape=(1, 2, 3)}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_8_{dtype=uint16, order='C', shape=()}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_9_{dtype=uint16, order='C', shape=(1,)}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_10_{dtype=uint16, order='C', shape=(1, 2)}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_11_{dtype=uint16, order='C', shape=(1, 2, 3)}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_12_{dtype=uint16, order='F', shape=()}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_13_{dtype=uint16, order='F', shape=(1,)}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_14_{dtype=uint16, order='F', shape=(1, 2)}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitStrides_param_15_{dtype=uint16, order='F', shape=(1, 2, 3)}::test_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayDeepCopy_param_0_{shape=()}::test_deepcopy | 0.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayDeepCopy_param_0_{shape=()}::test_deepcopy_multi_device | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayDeepCopy_param_1_{shape=(0,)}::test_deepcopy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayDeepCopy_param_1_{shape=(0,)}::test_deepcopy_multi_device | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayDeepCopy_param_2_{shape=(1,)}::test_deepcopy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayDeepCopy_param_2_{shape=(1,)}::test_deepcopy_multi_device | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayDeepCopy_param_3_{shape=(0, 0, 2)}::test_deepcopy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayDeepCopy_param_3_{shape=(0, 0, 2)}::test_deepcopy_multi_device | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayDeepCopy_param_4_{shape=(2, 3)}::test_deepcopy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayDeepCopy_param_4_{shape=(2, 3)}::test_deepcopy_multi_device | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTake_param_0_{axis=None, indices_shape=(2,)}::test_take | 9.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTake_param_1_{axis=None, indices_shape=(2, 3)}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTake_param_2_{axis=0, indices_shape=(2,)}::test_take | 9.50 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTake_param_3_{axis=0, indices_shape=(2, 3)}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTake_param_4_{axis=1, indices_shape=(2,)}::test_take | 9.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTake_param_5_{axis=1, indices_shape=(2, 3)}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTake_param_6_{axis=2, indices_shape=(2,)}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTake_param_7_{axis=2, indices_shape=(2, 3)}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTake_param_8_{axis=-1, indices_shape=(2,)}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTake_param_9_{axis=-1, indices_shape=(2, 3)}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTake_param_10_{axis=-2, indices_shape=(2,)}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTake_param_11_{axis=-2, indices_shape=(2, 3)}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_0_{axis=None, indices=2}::test_take | 9.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_1_{axis=None, indices=[0, 1]}::test_take | 9.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_2_{axis=None, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_3_{axis=None, indices=[-1, -2]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_4_{axis=0, indices=2}::test_take | 9.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_5_{axis=0, indices=[0, 1]}::test_take | 9.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_6_{axis=0, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_7_{axis=0, indices=[-1, -2]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_8_{axis=1, indices=2}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_9_{axis=1, indices=[0, 1]}::test_take | 9.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_10_{axis=1, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_11_{axis=1, indices=[-1, -2]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_12_{axis=-1, indices=2}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_13_{axis=-1, indices=[0, 1]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_14_{axis=-1, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_15_{axis=-1, indices=[-1, -2]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_16_{axis=-2, indices=2}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_17_{axis=-2, indices=[0, 1]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_18_{axis=-2, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithInt_param_19_{axis=-2, indices=[-1, -2]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_0_{axis=None, indices=2}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_1_{axis=None, indices=[0, 1]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_2_{axis=None, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_3_{axis=None, indices=[-1, -2]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_4_{axis=0, indices=2}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_5_{axis=0, indices=[0, 1]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_6_{axis=0, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_7_{axis=0, indices=[-1, -2]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_8_{axis=1, indices=2}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_9_{axis=1, indices=[0, 1]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_10_{axis=1, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_11_{axis=1, indices=[-1, -2]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_12_{axis=-1, indices=2}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_13_{axis=-1, indices=[0, 1]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_14_{axis=-1, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_15_{axis=-1, indices=[-1, -2]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_16_{axis=-2, indices=2}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_17_{axis=-2, indices=[0, 1]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_18_{axis=-2, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeWithIntWithOutParam_param_19_{axis=-2, indices=[-1, -2]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestScalaNdarrayTakeWithIntWithOutParam_param_0_{axis=None, indices=0}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestScalaNdarrayTakeWithIntWithOutParam_param_1_{axis=None, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestScalaNdarrayTakeWithIntWithOutParam_param_2_{axis=None, indices=[0]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestScalaNdarrayTakeWithIntWithOutParam_param_3_{axis=None, indices=[0, -1]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestScalaNdarrayTakeWithIntWithOutParam_param_4_{axis=0, indices=0}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestScalaNdarrayTakeWithIntWithOutParam_param_5_{axis=0, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestScalaNdarrayTakeWithIntWithOutParam_param_6_{axis=0, indices=[0]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestScalaNdarrayTakeWithIntWithOutParam_param_7_{axis=0, indices=[0, -1]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestScalaNdarrayTakeWithIntWithOutParam_param_8_{axis=-1, indices=0}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestScalaNdarrayTakeWithIntWithOutParam_param_9_{axis=-1, indices=-1}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestScalaNdarrayTakeWithIntWithOutParam_param_10_{axis=-1, indices=[0]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestScalaNdarrayTakeWithIntWithOutParam_param_11_{axis=-1, indices=[0, -1]}::test_take | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeErrorAxisOverRun_param_0_{axis=3, indices=(2,), shape=(3, 4, 5)}::test_axis_overrun1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeErrorAxisOverRun_param_0_{axis=3, indices=(2,), shape=(3, 4, 5)}::test_axis_overrun2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeErrorAxisOverRun_param_1_{axis=2, indices=(0,), shape=()}::test_axis_overrun1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeErrorAxisOverRun_param_1_{axis=2, indices=(0,), shape=()}::test_axis_overrun2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeErrorShapeMismatch_param_0_{indices=(2, 3), out_shape=(2, 4), shape=(3, 4, 5)}::test_shape_mismatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeErrorShapeMismatch_param_1_{indices=(), out_shape=(1,), shape=()}::test_shape_mismatch | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeErrorTypeMismatch_param_0_{indices=(2, 3), out_shape=(2, 3), shape=(3, 4, 5)}::test_output_type_mismatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayTakeErrorTypeMismatch_param_1_{indices=(), out_shape=(), shape=()}::test_output_type_mismatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestZeroSizedNdarrayTake_param_0_{axis=None, indices=(0,), shape=(0,)}::test_output_type_mismatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestZeroSizedNdarrayTake_param_1_{axis=None, indices=(0, 1), shape=(0,)}::test_output_type_mismatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestZeroSizedNdarrayTake_param_2_{axis=0, indices=(2,), shape=(3, 0)}::test_output_type_mismatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestZeroSizedNdarrayTakeIndexError_param_0_{indices=(1,), shape=(0,)}::test_output_type_mismatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestZeroSizedNdarrayTakeIndexError_param_1_{indices=(1, 1), shape=(0,)}::test_output_type_mismatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInit::test_memptr | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInit::test_memptr_with_strides | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInit::test_order | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInit::test_order_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInit::test_shape_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInit::test_shape_int_with_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInit::test_shape_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInit::test_strides_is_given_and_order_is_ignored | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInit::test_strides_is_given_but_order_is_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInit::test_strides_without_memptr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayInitRaise::test_unsupported_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCopy::test_copy_multi_device_non_contiguous | 0.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCopy::test_copy_multi_device_non_contiguous_K | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCopy::test_copy_multi_device_with_stream | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayShape::test_shape_set | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayShape::test_shape_set_infer | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayShape::test_shape_set_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCudaInterfaceNoneCUDA::test_cuda_array_interface_getattr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayCudaInterfaceNoneCUDA::test_cuda_array_interface_hasattr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestSize::test_size_axis_too_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestSize::test_size_axis_too_small | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestSize::test_size_with_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestSize::test_size_with_negative_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestSize::test_size_without_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestSize::test_size_zero_dim_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestSize::test_size_zero_dim_array_with_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestPythonInterface::test_bytes_tobytes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestPythonInterface::test_bytes_tobytes_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestPythonInterface::test_bytes_tobytes_empty2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestPythonInterface::test_bytes_tobytes_scalar_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestPythonInterface::test_format | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray.py::TestNdarrayImplicitConversion::test_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_0_{indexes=([1, 0], slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_1_{indexes=(slice(None, None, None), [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_2_{indexes=([1, 0], Ellipsis), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_3_{indexes=(Ellipsis, [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_4_{indexes=([1, 2], None, slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_5_{indexes=([1, 2], slice(None, None, None), None), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_6_{indexes=(None, [1, 2], slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_7_{indexes=(None, slice(None, None, None), [1, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_8_{indexes=(slice(None, None, None), [1, 2], None), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_9_{indexes=(slice(None, None, None), None, [1, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_10_{indexes=([1, 0], 1, slice(None, None, None)), shape=(4, 4, 4)}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_11_{indexes=([1, 0], slice(None, None, None), 1), shape=(4, 4, 4)}] | 9.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_12_{indexes=(1, [1, 0], slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_13_{indexes=(1, slice(None, None, None), [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_14_{indexes=(slice(None, None, None), [1, 0], 1), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_15_{indexes=(slice(None, None, None), 1, [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_16_{indexes=([1, 2], slice(0, 2, None), slice(None, None, None)), shape=(4, 4, 4)}] | 9.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_17_{indexes=([1, 2], slice(None, None, None), slice(0, 2, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_18_{indexes=(slice(0, 2, None), [1, 2], slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_19_{indexes=(slice(0, 2, None), slice(None, None, None), [1, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_20_{indexes=(slice(None, None, None), [1, 2], slice(0, 2, None)), shape=(4, 4, 4)}] | 9.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_21_{indexes=(slice(None, None, None), slice(0, 2, None), [1, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_22_{indexes=(1, [1, 2], 1), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_23_{indexes=(1, 1, [1, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_24_{indexes=([1, 2], 1, 1), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_25_{indexes=([1, 2], 1, 1), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_26_{indexes=(1, 1, [1, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_27_{indexes=(1, [1, 2], 1), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_28_{indexes=([[1, -1], [0, 3]], slice(None, None, None), slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_29_{indexes=([[1, -1], [0, 3]], slice(None, None, None), slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_30_{indexes=(slice(None, None, None), [[1, -1], [0, 3]], slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_31_{indexes=(slice(None, None, None), slice(None, None, None), [[1, -1], [0, 3]]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_32_{indexes=(slice(None, None, None), [[1, -1], [0, 3]], slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_33_{indexes=(slice(None, None, None), slice(None, None, None), [[1, -1], [0, 3]]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_34_{indexes=([1, 0], [3, 2], slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_35_{indexes=([1, 0], slice(None, None, None), [3, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_36_{indexes=([3, 2], [1, 0], slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_37_{indexes=([3, 2], slice(None, None, None), [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_38_{indexes=(slice(None, None, None), [1, 0], [3, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_39_{indexes=(slice(None, None, None), [3, 2], [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_40_{indexes=(slice(0, 3, 2), [1, 2], [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_41_{indexes=(slice(0, 3, 2), [1, 0], [1, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_42_{indexes=([1, 2], slice(0, 3, 2), [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_43_{indexes=([1, 2], [1, 0], slice(0, 3, 2)), shape=(4, 4, 4)}] | 9.60 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_44_{indexes=([1, 0], slice(0, 3, 2), [1, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_45_{indexes=([1, 0], [1, 2], slice(0, 3, 2)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_46_{indexes=([1, 0], [2, 1], [3, 1]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_47_{indexes=([1, 0], [3, 1], [2, 1]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_48_{indexes=([2, 1], [1, 0], [3, 1]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_49_{indexes=([2, 1], [3, 1], [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_50_{indexes=([3, 1], [1, 0], [2, 1]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_51_{indexes=([3, 1], [2, 1], [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_52_{indexes=([1, 0], 1, [3, 1]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_53_{indexes=([1, 0], [3, 1], 1), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_54_{indexes=(1, [1, 0], [3, 1]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_55_{indexes=(1, [3, 1], [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_56_{indexes=([3, 1], [1, 0], 1), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_57_{indexes=([3, 1], 1, [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_58_{indexes=([1, 2], [[1, 0], [0, 1], [-1, 1]], slice(None, None, None)), shape=(4, 4, 4)}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_59_{indexes=([1, 2], slice(None, None, None), [[1, 0], [0, 1], [-1, 1]]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_60_{indexes=([[1, 0], [0, 1], [-1, 1]], [1, 2], slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_61_{indexes=([[1, 0], [0, 1], [-1, 1]], slice(None, None, None), [1, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_62_{indexes=(slice(None, None, None), [1, 2], [[1, 0], [0, 1], [-1, 1]]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_63_{indexes=(slice(None, None, None), [[1, 0], [0, 1], [-1, 1]], [1, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_64_{indexes=(None, [1, 2], [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_65_{indexes=(None, [1, 0], [1, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_66_{indexes=([1, 2], None, [1, 0]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_67_{indexes=([1, 2], [1, 0], None), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_68_{indexes=([1, 0], None, [1, 2]), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_69_{indexes=([1, 0], [1, 2], None), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_70_{indexes=(array(0), array(-1)), shape=(4, 4, 4)}] | 9.99 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_71_{indexes=(array(-1), array(0)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_72_{indexes=(array(0), None), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_73_{indexes=(None, array(0)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_74_{indexes=(1, array(2), slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_75_{indexes=(1, slice(None, None, None), array(2)), shape=(4, 4, 4)}] | 9.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_76_{indexes=(array(2), 1, slice(None, None, None)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_77_{indexes=(array(2), slice(None, None, None), 1), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_78_{indexes=(slice(None, None, None), 1, array(2)), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemPerm::test_adv_getitem[_param_79_{indexes=(slice(None, None, None), array(2), 1), shape=(4, 4, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_0_{indexes=array(-1), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_1_{indexes=(None, [1, 0], [0, 2], slice(None, None, None)), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_2_{indexes=(None, [0, 1], None, [2, 1], slice(None, None, None)), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_3_{indexes=array([1, 0]), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_4_{indexes=[1], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_5_{indexes=[1, 1], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_6_{indexes=[1, -1], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_7_{indexes=([0, 1], slice(None, None, None), [[2, 1], [3, 1]]), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_8_{indexes=(array([ True, False, False, False, True, True, True, True, False, True]),), shape=(10,)}] | 9.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_9_{indexes=(1, array([ True, False, True])), shape=(2, 3, 4)}] | 10.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_10_{indexes=(array([ True, False]), 1), shape=(2, 3, 4)}] | 9.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_11_{indexes=(slice(None, None, None), 2, array([ True, False, True, False])), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_12_{indexes=(slice(None, None, None), 2, False), shape=(2, 3, 4)}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_13_{indexes=(array([[[False, False, True, True], [... True], [ True, True, True, False]]]),), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_14_{indexes=(slice(None, None, None), array([ True, False, True])), shape=(2, 3, 4)}] | 10.24 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_15_{indexes=(slice(None, None, None), slice(None, None, None), array([ True, False, False, True])), shape=(2, 3, 4)}] | 9.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_16_{indexes=(1, 2, array([ True, False, False, True])), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_17_{indexes=(slice(None, None, None), array([[False, False, ...e, True], [False, True, False, False]])), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_18_{indexes=array([[False, True, False], [ True, True, False]]), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_19_{indexes=[], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_20_{indexes=array([], dtype=int32), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_21_{indexes=array([], shape=(1, 0), dtype=int32), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_22_{indexes=(slice(None, None, None), []), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_23_{indexes=([], []), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_24_{indexes=([[]],), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_25_{indexes=array([], dtype=bool), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_26_{indexes=(slice(None, None, None), array([], dtype=bool)), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_27_{indexes=array([], shape=(2, 0), dtype=bool), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_28_{indexes=Ellipsis, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_29_{indexes=(), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_30_{indexes=None, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_31_{indexes=True, shape=()}] | 9.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_32_{indexes=(True,), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_33_{indexes=array(True), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_34_{indexes=array(False), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_35_{indexes=None, shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_36_{indexes=(), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_37_{indexes=([1],), shape=(2, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized::test_adv_getitem[_param_38_{indexes=(slice(None, None, None), [1]), shape=(0, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemDeprecated::test_adv_getitem[_param_0_{indexes=[[]], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemDeprecated::test_adv_getitem[_param_1_{indexes=[[[]]], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemDeprecated::test_adv_getitem[_param_2_{indexes=[[[[]]]], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemDeprecated::test_adv_getitem[_param_3_{indexes=[[[[]]]], shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemDeprecated::test_adv_getitem[_param_4_{indexes=[[[[[]]]]], shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemDeprecated::test_adv_getitem[_param_5_{indexes=[[1]], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemDeprecated::test_adv_getitem[_param_6_{indexes=[[1, 1]], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemDeprecated::test_adv_getitem[_param_7_{indexes=[[1], [1]], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemDeprecated::test_adv_getitem[_param_8_{indexes=[[1, 1], 1], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemDeprecated::test_adv_getitem[_param_9_{indexes=[[1], slice(1, 2, None)], shape=(2, 3, 4)}] | 9.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemDeprecated::test_adv_getitem[_param_10_{indexes=[[[1]], slice(1, 2, None)], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized2::test_adv_getitem[_param_0_{indexes=True, shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized2::test_adv_getitem[_param_1_{indexes=(True,), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized2::test_adv_getitem[_param_2_{indexes=array(True), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrized2::test_adv_getitem[_param_3_{indexes=array(False), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrizedTransp::test_adv_getitem[_param_0_{indexes=(slice(None, None, None), [1, 0]), shape=(2, 3, 4), transpose=(1, 2, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemParametrizedTransp::test_adv_getitem[_param_1_{indexes=(None, [1, 2], [0, -1]), shape=(2, 3, 4), transpose=(1, 0, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemCupyIndices::test_adv_getitem_cupy_indices1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemCupyIndices::test_adv_getitem_cupy_indices2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemCupyIndices::test_adv_getitem_cupy_indices3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemCupyIndices::test_adv_getitem_cupy_indices4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingGetitemCupyIndices::test_adv_getitem_cupy_indices5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_getitem[_param_0_{indexes=(array([8], dtype=int8), array([1], dtype=int8)), shape=(9, 16)}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_getitem[_param_1_{indexes=(array([16], dtype=uint8), array([1], dtype=uint8)), shape=(17, 16)}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_getitem[_param_2_{indexes=(array([128], dtype=int16), array([1], dtype=int16)), shape=(129, 256)}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_getitem[_param_3_{indexes=(array([256], dtype=uint16), array([1], dtype=uint16)), shape=(257, 256)}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_getitem[_param_4_{indexes=(array([128], dtype=int16), array([1], dtype=int32)), shape=(129, 256)}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_getitem[_param_5_{indexes=(array([128], dtype=int16), array([1], dtype=int8)), shape=(129, 256)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_getitem[_param_6_{indexes=(array([8], dtype=int8), slice(None, None, None), array([1], dtype=int8)), shape=(9, 3, 16)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_setitem[_param_0_{indexes=(array([8], dtype=int8), array([1], dtype=int8)), shape=(9, 16)}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_setitem[_param_1_{indexes=(array([16], dtype=uint8), array([1], dtype=uint8)), shape=(17, 16)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_setitem[_param_2_{indexes=(array([128], dtype=int16), array([1], dtype=int16)), shape=(129, 256)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_setitem[_param_3_{indexes=(array([256], dtype=uint16), array([1], dtype=uint16)), shape=(257, 256)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_setitem[_param_4_{indexes=(array([128], dtype=int16), array([1], dtype=int32)), shape=(129, 256)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_setitem[_param_5_{indexes=(array([128], dtype=int16), array([1], dtype=int8)), shape=(129, 256)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingOverflow::test_setitem[_param_6_{indexes=(array([8], dtype=int8), slice(None, None, None), array([1], dtype=int8)), shape=(9, 3, 16)}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_0_{indexes=(-1,), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_1_{indexes=(0,), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_2_{indexes=(1,), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_3_{indexes=([0],), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_4_{indexes=(array([0]),), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_5_{indexes=(array(0),), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_6_{indexes=array([ True]), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_7_{indexes=array([False, True, True]), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_8_{indexes=([False],), shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_9_{indexes=(-1,), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_10_{indexes=(0,), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_11_{indexes=(1,), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_12_{indexes=([0],), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_13_{indexes=(array([0]),), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_14_{indexes=(array(0),), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_15_{indexes=array([ True]), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_16_{indexes=array([False, True, True]), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_17_{indexes=(0, Ellipsis), shape=(0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_18_{indexes=(slice(None, None, None), [1, 2], slice(None, None, None)), shape=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem::test_invalid_adv_getitem[_param_19_{indexes=array([], dtype=float64), shape=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem2::test_invalid_adv_getitem[_param_0_{indexes=([False],), shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem2::test_invalid_adv_getitem[_param_1_{indexes=(slice(None, None, None), array([[False], [ True], [False]])), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidIndexAdvGetitem2::test_invalid_adv_getitem[_param_2_{indexes=array([[ True, True, True]]), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayInvalidValueAdvGetitem::test_invalid_adv_getitem[_param_0_{indexes=[1, [1, [1]]], shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_0_{indexes=array(-1), shape=(2, 3, 4), value=1}] | 9.60 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_1_{indexes=array([1, 0]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_2_{indexes=[1, 0], shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_3_{indexes=[1, -1], shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_4_{indexes=(slice(None, None, None), [1, 2]), shape=(2, 3, 4), value=1}] | 9.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_5_{indexes=(slice(None, None, None), [[1, 2], [0, -1]]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_6_{indexes=(slice(None, None, None), slice(None, None, None), [[1, 2], [0, -1]]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_7_{indexes=(slice(None, None, None), slice(1, 2, None), [[1, 2], [0, -1]]), shape=(2, 3, 4), value=1}] | 9.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_8_{indexes=(None, [1, -1]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_9_{indexes=(None, [1, -1], None), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_10_{indexes=(None, None, None, [1, -1]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_11_{indexes=(slice(0, 1, None), None, [1, -1]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_12_{indexes=(slice(0, 1, None), slice(1, 2, None), [1, -1]), shape=(2, 3, 4), value=1}] | 9.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_13_{indexes=(slice(0, 1, None), None, slice(1, 2, None), [1, -1]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_14_{indexes=array([ True, False]), shape=(2, 3, 4), value=1}] | 9.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_15_{indexes=(1, array([ True, False, True])), shape=(2, 3, 4), value=1}] | 9.44 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_16_{indexes=(array([ True, False]), 1), shape=(2, 3, 4), value=1}] | 9.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_17_{indexes=(slice(None, None, None), array([ True, False, True])), shape=(2, 3, 4), value=1}] | 9.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_18_{indexes=(slice(None, None, None), 2, array([ True, False, True, False])), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_19_{indexes=(slice(None, None, None), 2, False), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_20_{indexes=(slice(None, None, None), slice(None, None, None), array([ True, True, True, False])), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_21_{indexes=(array([[False, True, False], [ True, False, True]]),), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_22_{indexes=(slice(None, None, None), array([[False, False, ...e, True], [False, True, True, True]])), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_23_{indexes=(array([[[ True, False, False, False], [... True], [ True, True, False, True]]]),), shape=(2, 3, 4), value=1}] | 9.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_24_{indexes=([0, -1], [1, -1]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_25_{indexes=([0, -1], [1, -1], [2, 1]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_26_{indexes=([0, -1], 1), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_27_{indexes=([0, -1], slice(None, None, None), [1, -1]), shape=(2, 3, 4), value=1}] | 8.94 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_28_{indexes=([0, -1], 1, 2), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_29_{indexes=([1, 0], slice(None, None, None), [[2, 0], [3, 1]]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_30_{indexes=([0, -1], None, [1, 0]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_31_{indexes=([0, -1], slice(0, 2, None), [1, 0]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_32_{indexes=([0, -1], None, slice(0, 2, None), [1, 0]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_33_{indexes=(None, slice(None, None, None), slice(None, None, None), [1, 0], [2, -1], 1), shape=(1, 1, 2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_34_{indexes=(None, slice(None, None, None), 0, [1, 0], slice(0, 2, 2), [2, -1]), shape=(1, 1, 2, 3, 4), value=1}] | 9.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_35_{indexes=(slice(None, None, None), [0, -1], [[1, 0], [0, 1], [-1, 1]]), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_36_{indexes=[], shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_37_{indexes=[], shape=(2, 3, 4), value=array([1, 1, 1, 1])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_38_{indexes=[], shape=(2, 3, 4), value=array([[0.41384188, 0.96534104, 0.13597217, 0.40...0.26502176, 0.60050073, 0.82884872, 0.30748107]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_39_{indexes=array([], dtype=int32), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_40_{indexes=array([], shape=(1, 0), dtype=int32), shape=(2, 3, 4), value=array([[0.18225903, 0.50851055, 0.60069381, 0.41...0.44914322, 0.70565875, 0.7614344 , 0.79352077]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_41_{indexes=(slice(None, None, None), []), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_42_{indexes=([], []), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_43_{indexes=array([], dtype=bool), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_44_{indexes=(slice(None, None, None), array([], dtype=bool)), shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_45_{indexes=array([], shape=(2, 0), dtype=bool), shape=(2, 3, 4), value=array([0.56536733, 0.41890791, 0.14326503, 0.91990719])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_46_{indexes=Ellipsis, shape=(), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_47_{indexes=(), shape=(), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_48_{indexes=None, shape=(), value=1}] | 8.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_49_{indexes=True, shape=(), value=1}] | 8.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_50_{indexes=(True,), shape=(), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_51_{indexes=array(True), shape=(), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_52_{indexes=array(False), shape=(), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_53_{indexes=None, shape=(0,), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue::test_adv_setitem[_param_54_{indexes=(), shape=(0,), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueDeprecated::test_adv_setitem[_param_0_{indexes=[[]], shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueDeprecated::test_adv_setitem[_param_1_{indexes=[[[]]], shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueDeprecated::test_adv_setitem[_param_2_{indexes=[[[[]]]], shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueDeprecated::test_adv_setitem[_param_3_{indexes=[[[[]]]], shape=(2, 3, 4, 5), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueDeprecated::test_adv_setitem[_param_4_{indexes=[[[[[]]]]], shape=(2, 3, 4, 5), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueDeprecated::test_adv_setitem[_param_5_{indexes=[[1]], shape=(2, 3, 4), value=1}] | 9.27 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueDeprecated::test_adv_setitem[_param_6_{indexes=[[1, 0]], shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueDeprecated::test_adv_setitem[_param_7_{indexes=[[1], [0]], shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueDeprecated::test_adv_setitem[_param_8_{indexes=[[1, 0], 2], shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueDeprecated::test_adv_setitem[_param_9_{indexes=[[1], slice(1, 2, None)], shape=(2, 3, 4), value=1}] | 9.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueDeprecated::test_adv_setitem[_param_10_{indexes=[[[1]], slice(1, 2, None)], shape=(2, 3, 4), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue2::test_adv_setitem[_param_0_{indexes=True, shape=(0,), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue2::test_adv_setitem[_param_1_{indexes=(True,), shape=(0,), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue2::test_adv_setitem[_param_2_{indexes=array(True), shape=(0,), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValue2::test_adv_setitem[_param_3_{indexes=array(False), shape=(0,), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueIndexError::test_adv_setitem[_param_0_{indexes=array([ True]), shape=(), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueIndexError::test_adv_setitem[_param_1_{indexes=array([False, True, True]), shape=(), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueIndexError::test_adv_setitem[_param_2_{indexes=array([ True]), shape=(0,), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemScalarValueIndexError::test_adv_setitem[_param_3_{indexes=array([False, True, True]), shape=(0,), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_0_{indexes=array(1), shape=(2, 3, 4), value=array([1])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_1_{indexes=array(1), shape=(2, 3, 4), value=array([1, 2, 3, 4])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_2_{indexes=(slice(None, None, None), [0, -1]), shape=(2, 3, 4), value=array([[[ 0, 1, 2, 3], [ 4, 5, 6, ... [[ 8, 9, 10, 11], [12, 13, 14, 15]]])}] | 9.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_3_{indexes=(slice(None, None, None), [[0, 2], [1, -1]]), shape=(2, 5, 4), value=array([[[[ 0, 1, 2, 3], [ 4, 5, 6,... [[24, 25, 26, 27], [28, 29, 30, 31]]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_4_{indexes=array([[False, True, False], [False, True, False]]), shape=(2, 3, 4), value=array([0, 1, 2, 3])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_5_{indexes=(slice(None, None, None), array([ True, False, True])), shape=(2, 3, 4), value=array([[[ 0, 1, 2, 3], [ 4, 5, 6, ... [[ 8, 9, 10, 11], [12, 13, 14, 15]]])}] | 9.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_6_{indexes=(array([[ True, False, False], [False, True, True]]),), shape=(2, 3, 4), value=array([[ 0, 1, 2, 3], [ 4, 5, 6, 7], [ 8, 9, 10, 11]])}] | 9.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_7_{indexes=(slice(None, None, None), array([[ True, False], [False, True]])), shape=(2, 2, 2), value=array([[0, 1], [2, 3]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_8_{indexes=(array([[[ True, False], [ True, False]]... [[ True, True], [False, False]]]),), shape=(2, 2, 2), value=array([0, 1, 2, 3])}] | 9.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_9_{indexes=array([ True, False, False, True, True]), shape=(5,), value=array([0, 1, 2])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_10_{indexes=([1, 0], [2, 1]), shape=(2, 3, 4), value=array([[0, 1, 2, 3], [4, 5, 6, 7]])}] | 9.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_11_{indexes=([1, 0], slice(None, None, None), [2, 1]), shape=(2, 3, 4), value=array([[0, 1, 2], [3, 4, 5]])}] | 9.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_12_{indexes=([1, 0], slice(None, None, None), [[2, 0], [3, 1]]), shape=(2, 3, 4), value=array([[[ 0, 1, 2], [ 3, 4, 5]], [[ 6, 7, 8], [ 9, 10, 11]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_13_{indexes=([[1, 0], [1, 0]], slice(None, None, None), [[2, 0], [3, 1]]), shape=(2, 3, 4), value=array([[[ 0, 1, 2], [ 3, 4, 5]], [[ 6, 7, 8], [ 9, 10, 11]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_14_{indexes=(1, slice(None, None, None), [[2, 0], [3, 1]]), shape=(2, 3, 4), value=array([[[ 0, 1, 2], [ 3, 4, 5]], [[ 6, 7, 8], [ 9, 10, 11]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingVectorValue::test_adv_setitem[_param_15_{indexes=[1], shape=(2, 3, 4), value=array([[ 0, 1, 2, 3], [ 4, 5, 6, 7], [ 8, 9, 10, 11]])}] | 9.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemCupyIndices::test_cupy_indices_integer_array_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemCupyIndices::test_cupy_indices_integer_array_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemCupyIndices::test_cupy_indices_integer_array_3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemCupyIndices::test_cupy_indices_boolean_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemDifferentDtypes::test_differnt_dtypes | 10.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemDifferentDtypes::test_differnt_dtypes_mask | 8.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py::TestArrayAdvancedIndexingSetitemTranspose::test_adv_setitem_transp | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestConj::test_conj | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestConj::test_conj_pass | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestConj::test_conjugate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestConj::test_conjugate_pass | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestAngle::test_angle | 9.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_imag | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_imag_inplace | 13.60 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_imag_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_imag_setter | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_imag_setter_non_contiguous | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_imag_setter_raise | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_imag_setter_zero_dim | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_imag_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_real | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_real_inplace | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_real_non_contiguous | 6.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_real_setter | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_real_setter_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_real_setter_zero_dim | 6.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestRealImag::test_real_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_complex_ops.py::TestScalarConversion::test_scalar_conversion | 2.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_contiguity.py::TestArrayContiguity::test_is_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_conversion.py::TestNdarrayItem_param_0_{shape=()}::test_item | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_conversion.py::TestNdarrayItem_param_1_{shape=(1,)}::test_item | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_conversion.py::TestNdarrayItem_param_2_{shape=(1, 1, 1)}::test_item | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_conversion.py::TestNdarrayItemRaise_param_0_{shape=(0,)}::test_item | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_conversion.py::TestNdarrayItemRaise_param_1_{shape=(2, 3)}::test_item | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_conversion.py::TestNdarrayItemRaise_param_2_{shape=(1, 0, 1)}::test_item | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_conversion.py::TestNdarrayToBytes_param_0_{shape=()}::test_item | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_conversion.py::TestNdarrayToBytes_param_3_{order='C', shape=(2, 3)}::test_item | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_conversion.py::TestNdarrayToBytes_param_4_{order='F', shape=(2, 3)}::test_item | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_itemsize | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_0d | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_0d_raise | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_non_contiguous_raise | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_f_contiguous | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_assert_divisible | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_relaxed_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_smaller[C-(3,)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_smaller[C-(3, 5)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_smaller[F-(3, 5)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_smaller[C-(0,)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_smaller[C-(1, 3)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_smaller[C-(3, 1)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_larger[C-(6,)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_larger[C-(3, 10)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_larger[F-(6, 5)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_larger[C-(0,)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_larger[C-(1, 6)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_larger[F-(2, 3)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_view_flags_larger[C-(3, 2)] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_flatten | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_flatten_copied | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_transposed_flatten | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_fill | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_fill_with_numpy_scalar_ndarray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_fill_with_numpy_nonscalar_ndarray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_transposed_fill | 13.24 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_astype | 31.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_astype_empty | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_astype_type | 18.50 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_astype_type_c_contiguous_no_copy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_astype_type_f_contiguous_no_copy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_astype_strides | 8.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_astype_strides_negative | 10.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_astype_strides_swapped | 18.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_astype_strides_broadcast | 17.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_diagonal1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py::TestArrayCopyAndView::test_diagonal2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_add_array | 16.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_add_scalar | 3.24 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_array_reversed_add | 18.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_array_reversed_mul | 18.19 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_array_reversed_sub | 17.53 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_add | 15.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_divmod0 | 14.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_divmod1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_eq | 18.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_floordiv | 14.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_ge | 14.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_gt | 14.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_iadd | 2.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_ifloordiv | 2.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_imul | 14.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_ipow | 15.19 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_isub | 14.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_itruediv | 5.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_le | 14.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_lt | 14.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_mul | 6.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_ne | 18.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_pow | 10.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_sub | 6.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_broadcasted_truediv | 13.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_divmod0_array | 14.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_divmod0_scalar | 9.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_divmod1_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_divmod1_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_add | 20.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_divmod0 | 16.44 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_divmod1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_eq | 20.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_floordiv | 16.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_ge | 16.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_gt | 16.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_le | 16.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_lt | 16.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_mul | 20.50 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_ne | 20.50 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_pow | 22.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_sub | 19.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_doubly_broadcasted_truediv | 20.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_eq_array | 9.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_eq_scalar | 11.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_floordiv_array | 15.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_floordiv_scalar | 9.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_ge_array | 14.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_ge_scalar | 11.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_gt_array | 14.93 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_gt_scalar | 11.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_iadd_array | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_iadd_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_ifloordiv_array | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_ifloordiv_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_imul_array | 13.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_imul_scalar | 9.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_ipow_array | 15.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_ipow_scalar | 8.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_isub_array | 14.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_isub_scalar | 8.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_itruediv_array | 5.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_itruediv_scalar | 3.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_le_array | 14.93 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_le_scalar | 11.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_lt_array | 14.93 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_lt_scalar | 11.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_mul_array | 5.23 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_mul_scalar | 2.60 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_ne_array | 18.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_ne_scalar | 11.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_pow_array | 9.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_pow_scalar | 3.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_radd_scalar | 11.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_rdivmod0_scalar | 9.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_rdivmod1_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_rfloordiv_scalar | 9.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_rmul_scalar | 8.41 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_rpow_scalar | 12.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_rsub_scalar | 10.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_rtruediv_scalar | 11.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_sub_array | 5.19 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_sub_scalar | 2.59 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_truediv_array | 13.60 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_truediv_scalar | 8.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_typecast_bool1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_typecast_bool2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_typecast_float1 | 17.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_typecast_float2 | 2.57 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_typecast_int1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_typecast_int2 | 7.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_typecast_int3 | 2.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_typecast_int4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_typecast_int5 | 7.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_typecast_int6 | 10.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayElementwiseOp::test_typecast_int7 | 12.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_and_array | 3.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_and_scalar | 6.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_and_scalarzero | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_broadcasted_and | 10.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_broadcasted_iand | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_broadcasted_ilshift | 8.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_broadcasted_imod | 12.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_broadcasted_ior | 8.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_broadcasted_irshift | 8.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_broadcasted_ixor | 8.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_broadcasted_lshift | 3.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_broadcasted_mod | 5.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_broadcasted_or | 2.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_broadcasted_rshift | 3.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_broadcasted_xor | 2.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_doubly_broadcasted_and | 10.24 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_doubly_broadcasted_lshift | 10.24 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_doubly_broadcasted_mod | 16.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_doubly_broadcasted_or | 10.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_doubly_broadcasted_rshift | 10.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_doubly_broadcasted_xor | 10.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_iand_array | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_ilshift_array | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_imod_array | 10.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_ior_array | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_irshift_array | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_ixor_array | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_lshift_array | 3.23 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_lshift_scalar | 6.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_lshift_scalarzero | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_mod_array | 7.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_mod_scalar | 7.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_mod_scalarzero | 1.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_or_array | 3.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_or_scalar | 6.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_or_scalarzero | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rand_scalar | 6.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rand_scalarzero | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rlshift_scalar | 6.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rlshift_scalarzero | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rmod_scalar | 9.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rmod_scalarzero | 1.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_ror_scalar | 6.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_ror_scalarzero | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rrshift_scalar | 6.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rrshift_scalarzero | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rshift_array | 3.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rshift_scalar | 6.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rshift_scalarzero | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rxor_scalar | 6.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_rxor_scalarzero | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_xor_array | 3.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_xor_scalar | 6.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py::TestArrayIntElementwiseOp::test_xor_scalarzero | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_get.py::TestArrayGet::test_contiguous_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_get.py::TestArrayGet::test_contiguous_array_stream | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_get.py::TestArrayGet::test_get_multigpu | 6.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_get.py::TestArrayGet::test_non_contiguous_array | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_get.py::TestArrayGet::test_non_contiguous_array_stream | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_get.py::TestArrayGetWithOut::test_contiguous_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_get.py::TestArrayGetWithOut::test_contiguous_array_cross | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_get.py::TestArrayGetWithOut::test_contiguous_array_stream | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_get.py::TestArrayGetWithOut::test_contiguous_array_with_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_get.py::TestArrayGetWithOut::test_get_multigpu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_get.py::TestArrayGetWithOut::test_non_contiguous_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_get.py::TestArrayGetWithOut::test_non_contiguous_array_stream | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_4_{indexes=(slice(None, None, None), slice(None, 1, None), slice(None, 2, None)), shape=(2, 3, 4), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_5_{indexes=(slice(None, None, None), slice(None, -1, None), slice(None, -2, None)), shape=(2, 3, 4), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_6_{indexes=(slice(None, None, None), slice(None, 1, None), slice(None, 2, None)), shape=(2, 3, 4), transpose=(2, 0, 1)}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_7_{indexes=(slice(None, None, -1), slice(1, None, -1), slice(4, 1, -2)), shape=(2, 3, 5), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_8_{indexes=(slice(4, 1, -2), slice(None, None, -1), slice(1, None, -1)), shape=(2, 3, 5), transpose=(2, 0, 1)}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_9_{indexes=(Ellipsis, 2), shape=(2, 3, 4), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_10_{indexes=(1, Ellipsis), shape=(2, 3, 4), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_11_{indexes=(1, Ellipsis, 3), shape=(2, 3, 4, 5), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_12_{indexes=(1, None, slice(None, 2, None), None, 2), shape=(2, 3, 4), transpose=None}::test_getitem | 6.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_13_{indexes=(None,), shape=(2, 3), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_15_{indexes=(None,), shape=(), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_16_{indexes=(None, None), shape=(), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_17_{indexes=(slice(10, -9, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_19_{indexes=(slice(-1, -10, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_20_{indexes=(slice(-1, -11, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_21_{indexes=(slice(-11, -11, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_22_{indexes=(slice(10, -9, -3),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_23_{indexes=(slice(-1, -11, -3),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_24_{indexes=(slice(1, -5, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_25_{indexes=(slice(0, -5, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_26_{indexes=(slice(-1, -5, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_28_{indexes=(slice(-5, -5, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_29_{indexes=(slice(-6, -5, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_30_{indexes=(slice(-10, -5, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_31_{indexes=(slice(-11, -5, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_32_{indexes=(slice(-12, -5, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_33_{indexes=(slice(-5, 1, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_34_{indexes=(slice(-5, 0, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_35_{indexes=(slice(-5, -1, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_36_{indexes=(slice(-5, -4, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_37_{indexes=(slice(-5, -5, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_39_{indexes=(slice(-5, -10, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_40_{indexes=(slice(-5, -11, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_41_{indexes=(slice(-5, -12, -1),), shape=(10,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_42_{indexes=(slice(None, None, -1),), shape=(0,), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_43_{indexes=(slice(None, None, -1), slice(None, None, -1)), shape=(0, 0), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_44_{indexes=(None, slice(None, None, -1)), shape=(0, 0), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_45_{indexes=(slice(None, None, -1), None), shape=(0, 0), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_46_{indexes=(slice(None, None, -1), None), shape=(0, 1), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_47_{indexes=(None, slice(None, None, -1)), shape=(1, 0), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_48_{indexes=(None, slice(None, None, -1), None), shape=(1, 0, 1), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexingParameterized_param_49_{indexes=(1, slice(None, None, None)), shape=(2, 0), transpose=None}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexIndexError_param_0_{indexes=0, shape=(), transpose=None}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexIndexError_param_1_{indexes=(0, 0, 0), shape=(2, 3), transpose=None}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexIndexError_param_2_{indexes=-3, shape=(2, 3, 4), transpose=None}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexIndexError_param_3_{indexes=-5, shape=(2, 3, 4), transpose=(2, 0, 1)}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexIndexError_param_4_{indexes=3, shape=(2, 3, 4), transpose=None}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexIndexError_param_5_{indexes=5, shape=(2, 3, 4), transpose=(2, 0, 1)}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexIndexError_param_6_{indexes=(Ellipsis, Ellipsis, 1), shape=(2, 3, 4), transpose=None}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexOtherError_param_0_{error_class=ValueError, indexes=(slice(0, 1, 0),)}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexOtherError_param_1_{error_class=TypeError, indexes=(slice((0, 0), None, None),)}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexOtherError_param_2_{error_class=TypeError, indexes=(slice(None, (0, 0), None),)}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndexOtherError_param_3_{error_class=TypeError, indexes=(slice(None, None, (0, 0)),)}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndex::test_T | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndex::test_T_vector | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndex::test_setitem_constant | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndex::test_setitem_copy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndex::test_setitem_different_type | 7.85 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndex::test_setitem_partial_constant | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_indexing.py::TestArrayIndex::test_setitem_partial_copy | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRound_param_0_{decimals=-2}::test_round | 9.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRound_param_0_{decimals=-2}::test_round_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRound_param_1_{decimals=-1}::test_round | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRound_param_1_{decimals=-1}::test_round_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRound_param_2_{decimals=0}::test_round | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRound_param_2_{decimals=0}::test_round_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRound_param_3_{decimals=1}::test_round | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRound_param_3_{decimals=1}::test_round_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRound_param_4_{decimals=2}::test_round | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRound_param_4_{decimals=2}::test_round_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundHalfway_param_0_{decimals=-3}::test_round_halfway_float | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundHalfway_param_0_{decimals=-3}::test_round_halfway_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundHalfway_param_0_{decimals=-3}::test_round_halfway_uint | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundHalfway_param_1_{decimals=-2}::test_round_halfway_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundHalfway_param_1_{decimals=-2}::test_round_halfway_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundHalfway_param_1_{decimals=-2}::test_round_halfway_uint | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundHalfway_param_2_{decimals=-1}::test_round_halfway_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundHalfway_param_2_{decimals=-1}::test_round_halfway_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundHalfway_param_2_{decimals=-1}::test_round_halfway_uint | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundHalfway_param_3_{decimals=0}::test_round_halfway_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundHalfway_param_3_{decimals=0}::test_round_halfway_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_math.py::TestRoundHalfway_param_3_{decimals=0}::test_round_halfway_uint | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_owndata.py::TestArrayOwndata::test_original_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_owndata.py::TestArrayOwndata::test_reshaped_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_owndata.py::TestArrayOwndata::test_view_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmax_all | 8.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmax_axis0 | 9.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmax_axis1 | 10.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmax_axis2 | 9.90 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmax_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmax_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmax_nan_imag | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmax_nan_real | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmin_all | 8.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmin_axis0 | 9.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmin_axis1 | 10.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmin_axis2 | 9.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmin_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmin_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmin_nan_imag | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_argmin_nan_real | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_max_all | 9.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_max_all_keepdims | 9.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_max_axis0 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_max_axis1 | 10.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_max_axis2 | 10.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_max_axis_large | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_max_multiple_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_max_multiple_axes_keepdims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_max_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_max_nan_imag | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_max_nan_real | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_min_all | 9.57 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_min_all_keepdims | 9.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_min_axis0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_min_axis1 | 10.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_min_axis2 | 10.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_min_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_min_multiple_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_min_multiple_axes_keepdims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_min_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_min_nan_imag | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_min_nan_real | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_ptp_all | 8.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_ptp_all_keepdims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_ptp_axis0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_ptp_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_ptp_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_ptp_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_ptp_multiple_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_ptp_multiple_axes_keepdims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_ptp_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_ptp_nan_imag | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_0_{order='C'}::test_ptp_nan_real | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmax_all | 9.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmax_axis0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmax_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmax_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmax_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmax_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmax_nan_imag | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmax_nan_real | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmin_all | 9.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmin_axis0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmin_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmin_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmin_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmin_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmin_nan_imag | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_argmin_nan_real | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_max_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_max_all_keepdims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_max_axis0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_max_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_max_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_max_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_max_multiple_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_max_multiple_axes_keepdims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_max_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_max_nan_imag | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_max_nan_real | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_min_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_min_all_keepdims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_min_axis0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_min_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_min_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_min_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_min_multiple_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_min_multiple_axes_keepdims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_min_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_min_nan_imag | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_min_nan_real | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_ptp_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_ptp_all_keepdims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_ptp_axis0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_ptp_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_ptp_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_ptp_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_ptp_multiple_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_ptp_multiple_axes_keepdims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_ptp_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_ptp_nan_imag | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestArrayReduction_param_1_{order='F'}::test_ptp_nan_real | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_0_{backend='device', order='C', shape=(10,)}::test_cub_max | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_0_{backend='device', order='C', shape=(10,)}::test_cub_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_0_{backend='device', order='C', shape=(10,)}::test_cub_min | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_0_{backend='device', order='C', shape=(10,)}::test_cub_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_1_{backend='device', order='C', shape=(10, 20)}::test_cub_max | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_1_{backend='device', order='C', shape=(10, 20)}::test_cub_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_1_{backend='device', order='C', shape=(10, 20)}::test_cub_min | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_1_{backend='device', order='C', shape=(10, 20)}::test_cub_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_2_{backend='device', order='C', shape=(10, 20, 30)}::test_cub_max | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_2_{backend='device', order='C', shape=(10, 20, 30)}::test_cub_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_2_{backend='device', order='C', shape=(10, 20, 30)}::test_cub_min | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_2_{backend='device', order='C', shape=(10, 20, 30)}::test_cub_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_3_{backend='device', order='C', shape=(10, 20, 30, 40)}::test_cub_max | 0.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_3_{backend='device', order='C', shape=(10, 20, 30, 40)}::test_cub_max_empty_axis | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_3_{backend='device', order='C', shape=(10, 20, 30, 40)}::test_cub_min | 0.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_3_{backend='device', order='C', shape=(10, 20, 30, 40)}::test_cub_min_empty_axis | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_4_{backend='device', order='F', shape=(10,)}::test_cub_max | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_4_{backend='device', order='F', shape=(10,)}::test_cub_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_4_{backend='device', order='F', shape=(10,)}::test_cub_min | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_4_{backend='device', order='F', shape=(10,)}::test_cub_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_5_{backend='device', order='F', shape=(10, 20)}::test_cub_max | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_5_{backend='device', order='F', shape=(10, 20)}::test_cub_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_5_{backend='device', order='F', shape=(10, 20)}::test_cub_min | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_5_{backend='device', order='F', shape=(10, 20)}::test_cub_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_6_{backend='device', order='F', shape=(10, 20, 30)}::test_cub_max | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_6_{backend='device', order='F', shape=(10, 20, 30)}::test_cub_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_6_{backend='device', order='F', shape=(10, 20, 30)}::test_cub_min | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_6_{backend='device', order='F', shape=(10, 20, 30)}::test_cub_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_7_{backend='device', order='F', shape=(10, 20, 30, 40)}::test_cub_max | 9.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_7_{backend='device', order='F', shape=(10, 20, 30, 40)}::test_cub_max_empty_axis | 9.23 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_7_{backend='device', order='F', shape=(10, 20, 30, 40)}::test_cub_min | 0.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_7_{backend='device', order='F', shape=(10, 20, 30, 40)}::test_cub_min_empty_axis | 9.23 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_8_{backend='block', order='C', shape=(10,)}::test_cub_max | 34.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_8_{backend='block', order='C', shape=(10,)}::test_cub_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_8_{backend='block', order='C', shape=(10,)}::test_cub_min | 34.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_8_{backend='block', order='C', shape=(10,)}::test_cub_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_9_{backend='block', order='C', shape=(10, 20)}::test_cub_max | 17.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_9_{backend='block', order='C', shape=(10, 20)}::test_cub_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_9_{backend='block', order='C', shape=(10, 20)}::test_cub_min | 17.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_9_{backend='block', order='C', shape=(10, 20)}::test_cub_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_10_{backend='block', order='C', shape=(10, 20, 30)}::test_cub_max | 52.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_10_{backend='block', order='C', shape=(10, 20, 30)}::test_cub_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_10_{backend='block', order='C', shape=(10, 20, 30)}::test_cub_min | 52.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_10_{backend='block', order='C', shape=(10, 20, 30)}::test_cub_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_11_{backend='block', order='C', shape=(10, 20, 30, 40)}::test_cub_max | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_11_{backend='block', order='C', shape=(10, 20, 30, 40)}::test_cub_max_empty_axis | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_11_{backend='block', order='C', shape=(10, 20, 30, 40)}::test_cub_min | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_11_{backend='block', order='C', shape=(10, 20, 30, 40)}::test_cub_min_empty_axis | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_12_{backend='block', order='F', shape=(10,)}::test_cub_max | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_12_{backend='block', order='F', shape=(10,)}::test_cub_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_12_{backend='block', order='F', shape=(10,)}::test_cub_min | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_12_{backend='block', order='F', shape=(10,)}::test_cub_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_13_{backend='block', order='F', shape=(10, 20)}::test_cub_max | 0.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_13_{backend='block', order='F', shape=(10, 20)}::test_cub_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_13_{backend='block', order='F', shape=(10, 20)}::test_cub_min | 0.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_13_{backend='block', order='F', shape=(10, 20)}::test_cub_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_14_{backend='block', order='F', shape=(10, 20, 30)}::test_cub_max | 0.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_14_{backend='block', order='F', shape=(10, 20, 30)}::test_cub_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_14_{backend='block', order='F', shape=(10, 20, 30)}::test_cub_min | 0.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_14_{backend='block', order='F', shape=(10, 20, 30)}::test_cub_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_15_{backend='block', order='F', shape=(10, 20, 30, 40)}::test_cub_max | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_15_{backend='block', order='F', shape=(10, 20, 30, 40)}::test_cub_max_empty_axis | 0.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_15_{backend='block', order='F', shape=(10, 20, 30, 40)}::test_cub_min | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestCubReduction_param_15_{backend='block', order='F', shape=(10, 20, 30, 40)}::test_cub_min_empty_axis | 0.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_0_{order='C', shape=(10,)}::test_unaccelerated_max | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_0_{order='C', shape=(10,)}::test_unaccelerated_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_0_{order='C', shape=(10,)}::test_unaccelerated_min | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_0_{order='C', shape=(10,)}::test_unaccelerated_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_1_{order='C', shape=(10, 20)}::test_unaccelerated_max | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_1_{order='C', shape=(10, 20)}::test_unaccelerated_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_1_{order='C', shape=(10, 20)}::test_unaccelerated_min | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_1_{order='C', shape=(10, 20)}::test_unaccelerated_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_2_{order='C', shape=(10, 20, 30)}::test_unaccelerated_max | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_2_{order='C', shape=(10, 20, 30)}::test_unaccelerated_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_2_{order='C', shape=(10, 20, 30)}::test_unaccelerated_min | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_2_{order='C', shape=(10, 20, 30)}::test_unaccelerated_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_3_{order='C', shape=(10, 20, 30, 40)}::test_unaccelerated_max | 0.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_3_{order='C', shape=(10, 20, 30, 40)}::test_unaccelerated_max_empty_axis | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_3_{order='C', shape=(10, 20, 30, 40)}::test_unaccelerated_min | 0.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_3_{order='C', shape=(10, 20, 30, 40)}::test_unaccelerated_min_empty_axis | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_4_{order='F', shape=(10,)}::test_unaccelerated_max | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_4_{order='F', shape=(10,)}::test_unaccelerated_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_4_{order='F', shape=(10,)}::test_unaccelerated_min | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_4_{order='F', shape=(10,)}::test_unaccelerated_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_5_{order='F', shape=(10, 20)}::test_unaccelerated_max | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_5_{order='F', shape=(10, 20)}::test_unaccelerated_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_5_{order='F', shape=(10, 20)}::test_unaccelerated_min | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_5_{order='F', shape=(10, 20)}::test_unaccelerated_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_6_{order='F', shape=(10, 20, 30)}::test_unaccelerated_max | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_6_{order='F', shape=(10, 20, 30)}::test_unaccelerated_max_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_6_{order='F', shape=(10, 20, 30)}::test_unaccelerated_min | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_6_{order='F', shape=(10, 20, 30)}::test_unaccelerated_min_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_7_{order='F', shape=(10, 20, 30, 40)}::test_unaccelerated_max | 0.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_7_{order='F', shape=(10, 20, 30, 40)}::test_unaccelerated_max_empty_axis | 0.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_7_{order='F', shape=(10, 20, 30, 40)}::test_unaccelerated_min | 0.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_reduction.py::TestUnacceleratedReduction_param_7_{order='F', shape=(10, 20, 30, 40)}::test_unaccelerated_min_empty_axis | 0.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_0_{shape=(2, 3, 4), slices=array(-1), value=1}] | 3.45 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_1_{shape=(2, 3, 4), slices=array([1, 0]), value=1}] | 3.44 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_2_{shape=(2, 3, 4), slices=(slice(None, None, None), [1, 2]), value=1}] | 3.50 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_3_{shape=(3, 4, 5), slices=(slice(None, None, None), [[1, 2], [0, -1]]), value=1}] | 3.51 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_4_{shape=(3, 4, 5), slices=(slice(None, None, None), slice(None, None, None), [[1, 2], [0, 3]]), value=1}] | 3.45 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_5_{shape=(2, 3), slices=([1, 1], slice(None, None, None)), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_6_{shape=(2, 3), slices=([1, 0, 1], slice(None, None, None)), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_7_{shape=(2, 3), slices=(slice(1, 2, None), [1, 0, 1]), value=1}] | 3.36 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_8_{shape=(3, 4, 5), slices=(slice(None, None, None), slice(1, 2, None), [[1, 3], [0, 2]]), value=1}] | 3.46 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_9_{shape=(3, 4, 5), slices=(None, [1, -1]), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_10_{shape=(3, 4, 5), slices=(None, [1, -1], None), value=1}] | 3.46 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_11_{shape=(3, 4, 5), slices=(None, None, None, [1, -1]), value=1}] | 3.49 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_12_{shape=(3, 4, 5), slices=(slice(0, 1, None), None, [1, -1]), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_13_{shape=(3, 4, 5), slices=(slice(0, 1, None), slice(1, 2, None), [1, -1]), value=1}] | 3.36 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_14_{shape=(3, 4, 5), slices=(slice(0, 1, None), None, slice(1, 2, None), [1, -1]), value=1}] | 3.37 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_15_{shape=(3, 4, 5), slices=(slice(None, None, None), [[1, 2], [0, -1]]), value=array([[[[ 0, 1, 2, 3, 4], [ 5, 6,...1, 52, 53, 54], [55, 56, 57, 58, 59]]]])}] | 3.49 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_16_{shape=(2, 3, 4), slices=([1, 0], [2, 1]), value=array([[0, 1, 2, 3], [4, 5, 6, 7]])}] | 3.43 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_17_{shape=(2, 3, 4), slices=([1, 0], slice(None, None, None), [2, 1]), value=array([[0, 1, 2], [3, 4, 5]])}] | 3.45 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_18_{shape=(2, 3, 4), slices=([1, 0], slice(None, None, None), [[2, 0], [3, 1]]), value=array([[[ 0, 1, 2], [ 3, 4, 5]], [[ 6, 7, 8], [ 9, 10, 11]]])}] | 3.45 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_19_{shape=(1, 1, 2, 3, 4), slices=(None, slice(None, None, None), 0, [1, 0], slice(0, 2, 2), [2, -1]), value=1}] | 3.37 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_20_{shape=(2, 3, 4), slices=([1, 1], [1, 1]), value=array([[0, 1, 2, 3], [4, 5, 6, 7]])}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_21_{shape=(2, 3, 4), slices=([1, 1], slice(None, None, None), [[2, 2], [3, 1]]), value=array([[[ 0, 1, 2], [ 3, 4, 5]], [[ 6, 7, 8], [ 9, 10, 11]]])}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_22_{shape=(2, 3, 4), slices=([1, 1], 1, [[2, 2], [3, 1]]), value=array([[0, 1], [2, 3]])}] | 3.34 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_23_{shape=(3, 4, 5), slices=(array([[[False, False, True, False, False], ... [False, False, False, False, True]]]),), value=1}] | 3.27 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_24_{shape=(3, 4, 5), slices=(array([ True, True, False]),), value=array([[ 0, 1, 2, 3, 4], [ 5, 6, 7,...0, 11, 12, 13, 14], [15, 16, 17, 18, 19]])}] | 3.38 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_25_{shape=(3, 4, 5), slices=(slice(None, None, None), array([ True, False, False, True])), value=array([[[ 0, 1, 2, 3, 4], [ 5, 6, ... 21, 22, 23, 24], [25, 26, 27, 28, 29]]])}] | 3.43 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_26_{shape=(2, 3, 4), slices=[], value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_27_{shape=(2, 3, 4), slices=[], value=array([1, 1, 1, 1])}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_28_{shape=(2, 3, 4), slices=[], value=array([[0.23403991, 0.83962488, 0.73124269, 0.71...0.45995044, 0.79134408, 0.5540872 , 0.36010951]])}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_29_{shape=(2, 3, 4), slices=array([], dtype=int32), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_30_{shape=(2, 3, 4), slices=([],), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_31_{shape=(2, 3, 4), slices=array([], shape=(1, 0), dtype=int32), value=array([[0.04524655, 0.34936679, 0.61422325, 0.71...0.82882226, 0.74203668, 0.49416592, 0.01700665]])}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_32_{shape=(2, 3, 4), slices=([[]],), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_33_{shape=(2, 3, 4), slices=([[[]]],), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_34_{shape=(2, 3, 4, 5), slices=([[[]]],), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_35_{shape=(2, 3, 4, 5), slices=([[[[]]]],), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_36_{shape=(2, 3, 4), slices=(slice(None, None, None), []), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_37_{shape=(2, 3, 4), slices=([], []), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_38_{shape=(2, 3, 4), slices=array([], dtype=bool), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_39_{shape=(2, 3, 4), slices=(slice(None, None, None), array([], dtype=bool)), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_40_{shape=(2, 3, 4), slices=array([], shape=(2, 0), dtype=bool), value=array([0.26399808, 0.67233351, 0.96305308, 0.85936868])}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_41_{shape=(2, 3, 4), slices=[1], value=1}] | 3.36 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_42_{shape=(2, 3, 4), slices=[1, 1], value=array([[[ 0, 1, 2, 3], [ 4, 5, 6, ... [16, 17, 18, 19], [20, 21, 22, 23]]])}] | 3.43 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_43_{shape=(2, 3, 4), slices=([1],), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_44_{shape=(2, 3, 4), slices=([1, 1],), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_45_{shape=(2, 3, 4), slices=([1], [1]), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_46_{shape=(2, 3, 4), slices=([1, 1], 1), value=1}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_47_{shape=(2, 3, 4), slices=([1], slice(1, 2, None)), value=1}] | 3.36 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_add[_param_48_{shape=(2, 3, 4), slices=([[1]], slice(1, 2, None)), value=1}] | 3.38 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_0_{shape=(2, 3, 4), slices=array(-1), value=1}] | 3.44 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_1_{shape=(2, 3, 4), slices=array([1, 0]), value=1}] | 3.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_2_{shape=(2, 3, 4), slices=(slice(None, None, None), [1, 2]), value=1}] | 3.50 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_3_{shape=(3, 4, 5), slices=(slice(None, None, None), [[1, 2], [0, -1]]), value=1}] | 3.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_4_{shape=(3, 4, 5), slices=(slice(None, None, None), slice(None, None, None), [[1, 2], [0, 3]]), value=1}] | 3.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_5_{shape=(2, 3), slices=([1, 1], slice(None, None, None)), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_6_{shape=(2, 3), slices=([1, 0, 1], slice(None, None, None)), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_7_{shape=(2, 3), slices=(slice(1, 2, None), [1, 0, 1]), value=1}] | 3.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_8_{shape=(3, 4, 5), slices=(slice(None, None, None), slice(1, 2, None), [[1, 3], [0, 2]]), value=1}] | 3.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_9_{shape=(3, 4, 5), slices=(None, [1, -1]), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_10_{shape=(3, 4, 5), slices=(None, [1, -1], None), value=1}] | 3.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_11_{shape=(3, 4, 5), slices=(None, None, None, [1, -1]), value=1}] | 3.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_12_{shape=(3, 4, 5), slices=(slice(0, 1, None), None, [1, -1]), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_13_{shape=(3, 4, 5), slices=(slice(0, 1, None), slice(1, 2, None), [1, -1]), value=1}] | 3.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_14_{shape=(3, 4, 5), slices=(slice(0, 1, None), None, slice(1, 2, None), [1, -1]), value=1}] | 3.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_15_{shape=(3, 4, 5), slices=(slice(None, None, None), [[1, 2], [0, -1]]), value=array([[[[ 0, 1, 2, 3, 4], [ 5, 6,...1, 52, 53, 54], [55, 56, 57, 58, 59]]]])}] | 3.50 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_16_{shape=(2, 3, 4), slices=([1, 0], [2, 1]), value=array([[0, 1, 2, 3], [4, 5, 6, 7]])}] | 3.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_17_{shape=(2, 3, 4), slices=([1, 0], slice(None, None, None), [2, 1]), value=array([[0, 1, 2], [3, 4, 5]])}] | 3.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_18_{shape=(2, 3, 4), slices=([1, 0], slice(None, None, None), [[2, 0], [3, 1]]), value=array([[[ 0, 1, 2], [ 3, 4, 5]], [[ 6, 7, 8], [ 9, 10, 11]]])}] | 3.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_19_{shape=(1, 1, 2, 3, 4), slices=(None, slice(None, None, None), 0, [1, 0], slice(0, 2, 2), [2, -1]), value=1}] | 3.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_20_{shape=(2, 3, 4), slices=([1, 1], [1, 1]), value=array([[0, 1, 2, 3], [4, 5, 6, 7]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_21_{shape=(2, 3, 4), slices=([1, 1], slice(None, None, None), [[2, 2], [3, 1]]), value=array([[[ 0, 1, 2], [ 3, 4, 5]], [[ 6, 7, 8], [ 9, 10, 11]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_22_{shape=(2, 3, 4), slices=([1, 1], 1, [[2, 2], [3, 1]]), value=array([[0, 1], [2, 3]])}] | 3.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_23_{shape=(3, 4, 5), slices=(array([[[False, False, True, False, False], ... [False, False, False, False, True]]]),), value=1}] | 3.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_24_{shape=(3, 4, 5), slices=(array([ True, True, False]),), value=array([[ 0, 1, 2, 3, 4], [ 5, 6, 7,...0, 11, 12, 13, 14], [15, 16, 17, 18, 19]])}] | 3.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_25_{shape=(3, 4, 5), slices=(slice(None, None, None), array([ True, False, False, True])), value=array([[[ 0, 1, 2, 3, 4], [ 5, 6, ... 21, 22, 23, 24], [25, 26, 27, 28, 29]]])}] | 3.44 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_26_{shape=(2, 3, 4), slices=[], value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_27_{shape=(2, 3, 4), slices=[], value=array([1, 1, 1, 1])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_28_{shape=(2, 3, 4), slices=[], value=array([[0.23403991, 0.83962488, 0.73124269, 0.71...0.45995044, 0.79134408, 0.5540872 , 0.36010951]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_29_{shape=(2, 3, 4), slices=array([], dtype=int32), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_30_{shape=(2, 3, 4), slices=([],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_31_{shape=(2, 3, 4), slices=array([], shape=(1, 0), dtype=int32), value=array([[0.04524655, 0.34936679, 0.61422325, 0.71...0.82882226, 0.74203668, 0.49416592, 0.01700665]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_32_{shape=(2, 3, 4), slices=([[]],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_33_{shape=(2, 3, 4), slices=([[[]]],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_34_{shape=(2, 3, 4, 5), slices=([[[]]],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_35_{shape=(2, 3, 4, 5), slices=([[[[]]]],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_36_{shape=(2, 3, 4), slices=(slice(None, None, None), []), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_37_{shape=(2, 3, 4), slices=([], []), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_38_{shape=(2, 3, 4), slices=array([], dtype=bool), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_39_{shape=(2, 3, 4), slices=(slice(None, None, None), array([], dtype=bool)), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_40_{shape=(2, 3, 4), slices=array([], shape=(2, 0), dtype=bool), value=array([0.26399808, 0.67233351, 0.96305308, 0.85936868])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_41_{shape=(2, 3, 4), slices=[1], value=1}] | 3.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_42_{shape=(2, 3, 4), slices=[1, 1], value=array([[[ 0, 1, 2, 3], [ 4, 5, 6, ... [16, 17, 18, 19], [20, 21, 22, 23]]])}] | 3.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_43_{shape=(2, 3, 4), slices=([1],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_44_{shape=(2, 3, 4), slices=([1, 1],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_45_{shape=(2, 3, 4), slices=([1], [1]), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_46_{shape=(2, 3, 4), slices=([1, 1], 1), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_47_{shape=(2, 3, 4), slices=([1], slice(1, 2, None)), value=1}] | 3.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_max[_param_48_{shape=(2, 3, 4), slices=([[1]], slice(1, 2, None)), value=1}] | 3.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_0_{shape=(2, 3, 4), slices=array(-1), value=1}] | 3.44 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_1_{shape=(2, 3, 4), slices=array([1, 0]), value=1}] | 3.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_2_{shape=(2, 3, 4), slices=(slice(None, None, None), [1, 2]), value=1}] | 3.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_3_{shape=(3, 4, 5), slices=(slice(None, None, None), [[1, 2], [0, -1]]), value=1}] | 3.53 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_4_{shape=(3, 4, 5), slices=(slice(None, None, None), slice(None, None, None), [[1, 2], [0, 3]]), value=1}] | 3.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_5_{shape=(2, 3), slices=([1, 1], slice(None, None, None)), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_6_{shape=(2, 3), slices=([1, 0, 1], slice(None, None, None)), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_7_{shape=(2, 3), slices=(slice(1, 2, None), [1, 0, 1]), value=1}] | 3.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_8_{shape=(3, 4, 5), slices=(slice(None, None, None), slice(1, 2, None), [[1, 3], [0, 2]]), value=1}] | 3.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_9_{shape=(3, 4, 5), slices=(None, [1, -1]), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_10_{shape=(3, 4, 5), slices=(None, [1, -1], None), value=1}] | 3.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_11_{shape=(3, 4, 5), slices=(None, None, None, [1, -1]), value=1}] | 3.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_12_{shape=(3, 4, 5), slices=(slice(0, 1, None), None, [1, -1]), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_13_{shape=(3, 4, 5), slices=(slice(0, 1, None), slice(1, 2, None), [1, -1]), value=1}] | 3.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_14_{shape=(3, 4, 5), slices=(slice(0, 1, None), None, slice(1, 2, None), [1, -1]), value=1}] | 3.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_15_{shape=(3, 4, 5), slices=(slice(None, None, None), [[1, 2], [0, -1]]), value=array([[[[ 0, 1, 2, 3, 4], [ 5, 6,...1, 52, 53, 54], [55, 56, 57, 58, 59]]]])}] | 3.50 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_16_{shape=(2, 3, 4), slices=([1, 0], [2, 1]), value=array([[0, 1, 2, 3], [4, 5, 6, 7]])}] | 3.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_17_{shape=(2, 3, 4), slices=([1, 0], slice(None, None, None), [2, 1]), value=array([[0, 1, 2], [3, 4, 5]])}] | 3.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_18_{shape=(2, 3, 4), slices=([1, 0], slice(None, None, None), [[2, 0], [3, 1]]), value=array([[[ 0, 1, 2], [ 3, 4, 5]], [[ 6, 7, 8], [ 9, 10, 11]]])}] | 3.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_19_{shape=(1, 1, 2, 3, 4), slices=(None, slice(None, None, None), 0, [1, 0], slice(0, 2, 2), [2, -1]), value=1}] | 3.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_20_{shape=(2, 3, 4), slices=([1, 1], [1, 1]), value=array([[0, 1, 2, 3], [4, 5, 6, 7]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_21_{shape=(2, 3, 4), slices=([1, 1], slice(None, None, None), [[2, 2], [3, 1]]), value=array([[[ 0, 1, 2], [ 3, 4, 5]], [[ 6, 7, 8], [ 9, 10, 11]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_22_{shape=(2, 3, 4), slices=([1, 1], 1, [[2, 2], [3, 1]]), value=array([[0, 1], [2, 3]])}] | 3.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_23_{shape=(3, 4, 5), slices=(array([[[False, False, True, False, False], ... [False, False, False, False, True]]]),), value=1}] | 3.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_24_{shape=(3, 4, 5), slices=(array([ True, True, False]),), value=array([[ 0, 1, 2, 3, 4], [ 5, 6, 7,...0, 11, 12, 13, 14], [15, 16, 17, 18, 19]])}] | 3.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_25_{shape=(3, 4, 5), slices=(slice(None, None, None), array([ True, False, False, True])), value=array([[[ 0, 1, 2, 3, 4], [ 5, 6, ... 21, 22, 23, 24], [25, 26, 27, 28, 29]]])}] | 3.44 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_26_{shape=(2, 3, 4), slices=[], value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_27_{shape=(2, 3, 4), slices=[], value=array([1, 1, 1, 1])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_28_{shape=(2, 3, 4), slices=[], value=array([[0.23403991, 0.83962488, 0.73124269, 0.71...0.45995044, 0.79134408, 0.5540872 , 0.36010951]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_29_{shape=(2, 3, 4), slices=array([], dtype=int32), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_30_{shape=(2, 3, 4), slices=([],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_31_{shape=(2, 3, 4), slices=array([], shape=(1, 0), dtype=int32), value=array([[0.04524655, 0.34936679, 0.61422325, 0.71...0.82882226, 0.74203668, 0.49416592, 0.01700665]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_32_{shape=(2, 3, 4), slices=([[]],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_33_{shape=(2, 3, 4), slices=([[[]]],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_34_{shape=(2, 3, 4, 5), slices=([[[]]],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_35_{shape=(2, 3, 4, 5), slices=([[[[]]]],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_36_{shape=(2, 3, 4), slices=(slice(None, None, None), []), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_37_{shape=(2, 3, 4), slices=([], []), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_38_{shape=(2, 3, 4), slices=array([], dtype=bool), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_39_{shape=(2, 3, 4), slices=(slice(None, None, None), array([], dtype=bool)), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_40_{shape=(2, 3, 4), slices=array([], shape=(2, 0), dtype=bool), value=array([0.26399808, 0.67233351, 0.96305308, 0.85936868])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_41_{shape=(2, 3, 4), slices=[1], value=1}] | 3.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_42_{shape=(2, 3, 4), slices=[1, 1], value=array([[[ 0, 1, 2, 3], [ 4, 5, 6, ... [16, 17, 18, 19], [20, 21, 22, 23]]])}] | 3.44 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_43_{shape=(2, 3, 4), slices=([1],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_44_{shape=(2, 3, 4), slices=([1, 1],), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_45_{shape=(2, 3, 4), slices=([1], [1]), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_46_{shape=(2, 3, 4), slices=([1, 1], 1), value=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_47_{shape=(2, 3, 4), slices=([1], slice(1, 2, None)), value=1}] | 3.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterParametrized::test_scatter_min[_param_48_{shape=(2, 3, 4), slices=([[1]], slice(1, 2, None)), value=1}] | 3.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterAdd::test_scatter_add_cupy_arguments | 0.64 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterAdd::test_scatter_add_cupy_arguments_mask | 3.38 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterAdd::test_scatter_add_differnt_dtypes | 1.27 | |
|
------------------------------Captured stdout call------------------------------ skipped: src_dtype = <class 'numpy.float16'>, dst_dtype = <class 'numpy.float32'> (atomicAdd does not support float16 in HIP) skipped: src_dtype = <class 'numpy.float64'>, dst_dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) skipped: src_dtype = <class 'numpy.float16'>, dst_dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterAdd::test_scatter_add_differnt_dtypes_mask | 0.64 | |
|
------------------------------Captured stdout call------------------------------ skipped: src_dtype = <class 'numpy.uint64'>, dst_dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) skipped: src_dtype = <class 'numpy.float16'>, dst_dtype = <class 'numpy.float32'> (atomicAdd does not support float16 in HIP) skipped: src_dtype = <class 'numpy.float16'>, dst_dtype = <class 'numpy.float16'> (atomicAdd does not support float16 in HIP) | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterMinMax::test_scatter_minmax_cupy_arguments | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterMinMax::test_scatter_minmax_cupy_arguments_mask | 6.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterMinMax::test_scatter_minmax_differnt_dtypes | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_scatter.py::TestScatterMinMax::test_scatter_minmax_differnt_dtypes_mask | 2.61 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_ufunc.py::TestArrayUfunc::test_unary_op | 9.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_ufunc.py::TestArrayUfunc::test_unary_op_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_ufunc.py::TestArrayUfunc::test_binary_op | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_ufunc.py::TestArrayUfunc::test_binary_op_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_ufunc.py::TestArrayUfunc::test_binary_mixed_op | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_ufunc.py::TestArrayUfunc::test_indexing | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_ufunc.py::TestArrayUfunc::test_shares_memory | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_ufunc.py::TestUfunc::test_types[add] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_ufunc.py::TestUfunc::test_types[sin] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestBoolNeg_param_0_{shape=(3, 2), xp=numpy}::test_bool_neg | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestBoolNeg_param_1_{shape=(3, 2), xp=cupy}::test_bool_neg | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestBoolNeg_param_2_{shape=(), xp=numpy}::test_bool_neg | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestBoolNeg_param_3_{shape=(), xp=cupy}::test_bool_neg | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestBoolNeg_param_4_{shape=(3, 0, 2), xp=numpy}::test_bool_neg | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestBoolNeg_param_5_{shape=(3, 0, 2), xp=cupy}::test_bool_neg | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayBoolOp::test_bool_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayBoolOp::test_bool_one_element | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayBoolOp::test_bool_one_element_bool | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayBoolOp::test_bool_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayBoolOp::test_bool_scalar_bool | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayBoolOp::test_bool_two_elements | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayUnaryOp::test_abs_array | 6.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayUnaryOp::test_abs_zerodim | 8.99 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayUnaryOp::test_abs_zerodim_full | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayUnaryOp::test_neg_array | 8.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayUnaryOp::test_neg_zerodim | 8.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayUnaryOp::test_pos_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayUnaryOp::test_pos_zerodim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayIntUnaryOp::test_invert_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_ndarray_unary_op.py::TestArrayIntUnaryOp::test_invert_zerodim | 5.75 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_basic | 1.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_compiler_flag | 2.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_const_memory | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_context_switch_RawKernel | 4.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_context_switch_RawModule1 | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_context_switch_RawModule2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_context_switch_RawModule3 | 2.57 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_context_switch_RawModule4 | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_context_switch_RawModule5 | 3.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_context_switch_RawModule6 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_dynamical_parallelism_compile_failure | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_get_function_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_kernel_attributes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_load_hsaco | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_module | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_module_both_code_and_path | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_module_load_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_module_neither_code_nor_path | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_raw_pointer | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_template_failure | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_0_{backend='nvrtc', in_memory=False}::test_template_specialization | 2.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_basic | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_compiler_flag | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_const_memory | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_context_switch_RawKernel | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_context_switch_RawModule1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_context_switch_RawModule2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_context_switch_RawModule3 | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_context_switch_RawModule4 | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_context_switch_RawModule5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_context_switch_RawModule6 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_dynamical_parallelism_compile_failure | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_get_function_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_kernel_attributes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_load_hsaco | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_module | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_module_both_code_and_path | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_module_load_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_module_neither_code_nor_path | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_raw_pointer | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_template_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_1_{backend='nvrtc', in_memory=True}::test_template_specialization | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_basic | 1.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_compiler_flag | 2.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_const_memory | 1.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_context_switch_RawKernel | 2.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_context_switch_RawModule1 | 2.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_context_switch_RawModule2 | 2.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_context_switch_RawModule3 | 1.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_context_switch_RawModule4 | 1.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_context_switch_RawModule5 | 2.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_context_switch_RawModule6 | 2.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_dynamical_parallelism_compile_failure | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_get_function_failure | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_kernel_attributes | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_load_hsaco | 1.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_module | 1.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_module_both_code_and_path | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_module_load_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_module_neither_code_nor_path | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_raw_pointer | 1.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_2_{backend='nvrtc', clean_up=True, in_memory=True}::test_template_failure | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_basic | 2.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_compiler_flag | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_const_memory | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_context_switch_RawKernel | 2.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_context_switch_RawModule1 | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_context_switch_RawModule2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_context_switch_RawModule3 | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_context_switch_RawModule4 | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_dynamical_parallelism_compile_failure | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_get_function_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_invalid_compiler_flag | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_kernel_attributes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_load_hsaco | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_module | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_module_both_code_and_path | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_module_load_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_module_neither_code_nor_path | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_raw_pointer | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_raw.py::TestRaw_param_6_{backend='nvcc', in_memory=False}::test_template_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestSimpleReductionFunctionNonContiguous_param_0_{axis=(0, 1), shape=(2, 4, 3), trans=(2, 1, 0)}::test_noncontiguous | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestSimpleReductionFunctionNonContiguous_param_1_{axis=(1, 2), shape=(2, 4, 5, 3), trans=(3, 2, 1, 0)}::test_noncontiguous | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestSimpleReductionFunctionNonContiguous_param_2_{axis=(1, 2), shape=(2, 4, 3), trans=(2, 1, 0)}::test_noncontiguous | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestSimpleReductionFunctionNonContiguous_param_3_{axis=(0, 1), shape=(0, 4, 3), trans=(2, 1, 0)}::test_noncontiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestSimpleReductionFunctionNonContiguous_param_4_{axis=(0, 1, 2), shape=(2, 4, 3), trans=(2, 1, 0)}::test_noncontiguous | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestSimpleReductionFunctionComplexWarning_param_0_{backend=[]}::test_warns | 3.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestSimpleReductionFunctionComplexWarning_param_1_{backend=['cub']}::test_warns | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestReductionKernelNonContiguous_param_0_{axis=(0, 1), shape=(2, 4, 3), trans=(2, 1, 0)}::test_noncontiguous | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestReductionKernelNonContiguous_param_1_{axis=(1, 2), shape=(2, 4, 5, 3), trans=(3, 2, 1, 0)}::test_noncontiguous | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestReductionKernelNonContiguous_param_2_{axis=(1, 2), shape=(2, 4, 3), trans=(2, 1, 0)}::test_noncontiguous | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestReductionKernelNonContiguous_param_3_{axis=(0, 1), shape=(0, 4, 3), trans=(2, 1, 0)}::test_noncontiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestReductionKernelNonContiguous_param_4_{axis=(0, 1, 2), shape=(2, 4, 3), trans=(2, 1, 0)}::test_noncontiguous | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestSimpleReductionFunction::test_shape1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestSimpleReductionFunction::test_shape2 | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestSimpleReductionFunction::test_shape3 | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestSimpleReductionFunction::test_shape4 | 2.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestSimpleReductionFunction::test_shape5 | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestReductionKernel::test_shape1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestReductionKernel::test_shape2 | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestReductionKernel::test_shape3 | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestReductionKernel::test_shape4 | 1.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestReductionKernelInvalidArgument::test_invalid_kernel_name | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_reduction.py::TestLargeMultiDimReduction::test_large_dims_keep_kernels | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_scan.py::TestScan::test_check_1d_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_scan.py::TestScan::test_multi_gpu | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_scan.py::TestScan::test_scan | 16.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_scan.py::TestScan::test_scan_out | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_syncdetect.py::TestSyncDetect::test_allowed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_syncdetect.py::TestSyncDetect::test_disallowed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_syncdetect.py::TestSyncDetect::test_nested_allowed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_syncdetect.py::TestSyncDetect::test_nested_disallowed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestUserkernelScalar_param_0_{value=-1}::test_scalar | 9.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestUserkernelScalar_param_1_{value=4294967296}::test_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestUserkernelScalar_param_2_{value=9223372036854775807}::test_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestUserkernelScalar_param_3_{value=-9223372036854775808}::test_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestUserkernel::test_manual_indexing | 1.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestUserkernel::test_numpy_scalar | 9.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestUserkernel::test_python_scalar | 1.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestElementwiseKernelSize::test_all_nonraws | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestElementwiseKernelSize::test_all_raws | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestElementwiseKernelSize::test_no_input_and_raw_output | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestElementwiseKernelSize::test_scalars_and_nonraws | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestElementwiseKernelSize::test_scalars_and_raws | 2.54 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestElementwiseKernelSize::test_scalars_and_raws_and_nonraws | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestElementwiseKernelSize::test_size_determined_by_output | 1.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestElementwiseKernelSize::test_some_nonraws | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestUserkernelManualBlockSize::test_block_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/test_userkernel.py::TestUserkernelManualBlockSize::test_invalid_block_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_0_{func=<lambda>, left_value='array', name='neg', right_value='array'}::test_operator | 18.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_1_{func=<lambda>, left_value='array', name='neg', right_value='scalar'}::test_operator | 18.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_2_{func=<lambda>, left_value='array', name='neg', right_value='primitive'}::test_operator | 9.19 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_3_{func=<lambda>, left_value='scalar', name='neg', right_value='array'}::test_operator | 18.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_4_{func=<lambda>, left_value='primitive', name='neg', right_value='array'}::test_operator | 9.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_5_{func=<lambda>, left_value='array', name='add', right_value='array'}::test_operator | 26.84 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_6_{func=<lambda>, left_value='array', name='add', right_value='scalar'}::test_operator | 20.19 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_7_{func=<lambda>, left_value='array', name='add', right_value='primitive'}::test_operator | 9.84 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_8_{func=<lambda>, left_value='scalar', name='add', right_value='array'}::test_operator | 19.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_9_{func=<lambda>, left_value='primitive', name='add', right_value='array'}::test_operator | 9.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_10_{func=<lambda>, left_value='array', name='sub', right_value='array'}::test_operator | 27.60 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_11_{func=<lambda>, left_value='array', name='sub', right_value='scalar'}::test_operator | 20.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_12_{func=<lambda>, left_value='array', name='sub', right_value='primitive'}::test_operator | 9.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_13_{func=<lambda>, left_value='scalar', name='sub', right_value='array'}::test_operator | 19.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_14_{func=<lambda>, left_value='primitive', name='sub', right_value='array'}::test_operator | 9.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_15_{func=<lambda>, left_value='array', name='mul', right_value='array'}::test_operator | 27.60 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_16_{func=<lambda>, left_value='array', name='mul', right_value='scalar'}::test_operator | 20.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_17_{func=<lambda>, left_value='array', name='mul', right_value='primitive'}::test_operator | 9.85 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_18_{func=<lambda>, left_value='scalar', name='mul', right_value='array'}::test_operator | 19.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_19_{func=<lambda>, left_value='primitive', name='mul', right_value='array'}::test_operator | 9.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_20_{func=<lambda>, left_value='array', name='div', right_value='array'}::test_operator | 27.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_21_{func=<lambda>, left_value='array', name='div', right_value='scalar'}::test_operator | 20.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_22_{func=<lambda>, left_value='array', name='div', right_value='primitive'}::test_operator | 9.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_23_{func=<lambda>, left_value='scalar', name='div', right_value='array'}::test_operator | 19.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_24_{func=<lambda>, left_value='primitive', name='div', right_value='array'}::test_operator | 9.23 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_25_{func=<lambda>, left_value='array', name='pow', right_value='array'}::test_operator | 28.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_26_{func=<lambda>, left_value='array', name='pow', right_value='scalar'}::test_operator | 21.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_27_{func=<lambda>, left_value='array', name='pow', right_value='primitive'}::test_operator | 10.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_28_{func=<lambda>, left_value='scalar', name='pow', right_value='array'}::test_operator | 22.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_29_{func=<lambda>, left_value='primitive', name='pow', right_value='array'}::test_operator | 10.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_30_{func=<lambda>, left_value='array', name='eq', right_value='array'}::test_operator | 27.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_31_{func=<lambda>, left_value='array', name='eq', right_value='scalar'}::test_operator | 20.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_32_{func=<lambda>, left_value='array', name='eq', right_value='primitive'}::test_operator | 9.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_33_{func=<lambda>, left_value='scalar', name='eq', right_value='array'}::test_operator | 29.44 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_34_{func=<lambda>, left_value='primitive', name='eq', right_value='array'}::test_operator | 11.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_35_{func=<lambda>, left_value='array', name='ne', right_value='array'}::test_operator | 27.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_36_{func=<lambda>, left_value='array', name='ne', right_value='scalar'}::test_operator | 20.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_37_{func=<lambda>, left_value='array', name='ne', right_value='primitive'}::test_operator | 9.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_38_{func=<lambda>, left_value='scalar', name='ne', right_value='array'}::test_operator | 29.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_39_{func=<lambda>, left_value='primitive', name='ne', right_value='array'}::test_operator | 11.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_40_{func=<lambda>, left_value='array', name='lt', right_value='array'}::test_operator | 29.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_41_{func=<lambda>, left_value='array', name='lt', right_value='scalar'}::test_operator | 20.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_42_{func=<lambda>, left_value='array', name='lt', right_value='primitive'}::test_operator | 9.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_43_{func=<lambda>, left_value='scalar', name='lt', right_value='array'}::test_operator | 29.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_44_{func=<lambda>, left_value='primitive', name='lt', right_value='array'}::test_operator | 11.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_45_{func=<lambda>, left_value='array', name='le', right_value='array'}::test_operator | 29.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_46_{func=<lambda>, left_value='array', name='le', right_value='scalar'}::test_operator | 20.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_47_{func=<lambda>, left_value='array', name='le', right_value='primitive'}::test_operator | 9.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_48_{func=<lambda>, left_value='scalar', name='le', right_value='array'}::test_operator | 29.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_49_{func=<lambda>, left_value='primitive', name='le', right_value='array'}::test_operator | 11.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_50_{func=<lambda>, left_value='array', name='gt', right_value='array'}::test_operator | 29.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_51_{func=<lambda>, left_value='array', name='gt', right_value='scalar'}::test_operator | 20.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_52_{func=<lambda>, left_value='array', name='gt', right_value='primitive'}::test_operator | 9.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_53_{func=<lambda>, left_value='scalar', name='gt', right_value='array'}::test_operator | 29.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_54_{func=<lambda>, left_value='primitive', name='gt', right_value='array'}::test_operator | 11.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_55_{func=<lambda>, left_value='array', name='ge', right_value='array'}::test_operator | 29.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_56_{func=<lambda>, left_value='array', name='ge', right_value='scalar'}::test_operator | 20.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_57_{func=<lambda>, left_value='array', name='ge', right_value='primitive'}::test_operator | 9.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_58_{func=<lambda>, left_value='scalar', name='ge', right_value='array'}::test_operator | 29.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayOperator_param_59_{func=<lambda>, left_value='primitive', name='ge', right_value='array'}::test_operator | 11.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_0_{func=<lambda>, left_value='array', name='lshift', right_value='array'}::test_operator | 15.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_1_{func=<lambda>, left_value='array', name='lshift', right_value='scalar'}::test_operator | 11.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_2_{func=<lambda>, left_value='array', name='lshift', right_value='primitive'}::test_operator | 3.27 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_3_{func=<lambda>, left_value='scalar', name='lshift', right_value='array'}::test_operator | 11.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_4_{func=<lambda>, left_value='primitive', name='lshift', right_value='array'}::test_operator | 3.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_5_{func=<lambda>, left_value='array', name='rshift', right_value='array'}::test_operator | 13.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_6_{func=<lambda>, left_value='array', name='rshift', right_value='scalar'}::test_operator | 9.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_7_{func=<lambda>, left_value='array', name='rshift', right_value='primitive'}::test_operator | 2.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_8_{func=<lambda>, left_value='scalar', name='rshift', right_value='array'}::test_operator | 9.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_9_{func=<lambda>, left_value='primitive', name='rshift', right_value='array'}::test_operator | 3.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_10_{func=<lambda>, left_value='array', name='and', right_value='array'}::test_operator | 13.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_11_{func=<lambda>, left_value='array', name='and', right_value='scalar'}::test_operator | 9.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_12_{func=<lambda>, left_value='array', name='and', right_value='primitive'}::test_operator | 2.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_13_{func=<lambda>, left_value='scalar', name='and', right_value='array'}::test_operator | 9.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_14_{func=<lambda>, left_value='primitive', name='and', right_value='array'}::test_operator | 3.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_15_{func=<lambda>, left_value='array', name='or', right_value='array'}::test_operator | 13.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_16_{func=<lambda>, left_value='array', name='or', right_value='scalar'}::test_operator | 9.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_17_{func=<lambda>, left_value='array', name='or', right_value='primitive'}::test_operator | 2.61 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_18_{func=<lambda>, left_value='scalar', name='or', right_value='array'}::test_operator | 9.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_19_{func=<lambda>, left_value='primitive', name='or', right_value='array'}::test_operator | 3.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_20_{func=<lambda>, left_value='array', name='xor', right_value='array'}::test_operator | 13.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_21_{func=<lambda>, left_value='array', name='xor', right_value='scalar'}::test_operator | 9.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_22_{func=<lambda>, left_value='array', name='xor', right_value='primitive'}::test_operator | 2.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_23_{func=<lambda>, left_value='scalar', name='xor', right_value='array'}::test_operator | 9.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_24_{func=<lambda>, left_value='primitive', name='xor', right_value='array'}::test_operator | 3.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_25_{func=<lambda>, left_value='array', name='invert', right_value='array'}::test_operator | 9.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_26_{func=<lambda>, left_value='array', name='invert', right_value='scalar'}::test_operator | 9.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_27_{func=<lambda>, left_value='array', name='invert', right_value='primitive'}::test_operator | 2.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_28_{func=<lambda>, left_value='scalar', name='invert', right_value='array'}::test_operator | 9.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayBitwiseOperator_param_29_{func=<lambda>, left_value='primitive', name='invert', right_value='array'}::test_operator | 3.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayFloorDivide_param_0_{left_value='array', right_value='array'}::test_floor_divide | 23.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayFloorDivide_param_1_{left_value='array', right_value='scalar'}::test_floor_divide | 16.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayFloorDivide_param_2_{left_value='array', right_value='primitive'}::test_floor_divide | 9.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayFloorDivide_param_3_{left_value='scalar', right_value='array'}::test_floor_divide | 17.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayFloorDivide_param_4_{left_value='primitive', right_value='array'}::test_floor_divide | 8.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_0_{left_value='array', right_value='array'}::test_iadd | 8.50 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_0_{left_value='array', right_value='array'}::test_iand | 5.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_0_{left_value='array', right_value='array'}::test_ilshift | 5.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_0_{left_value='array', right_value='array'}::test_imod | 5.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_0_{left_value='array', right_value='array'}::test_imul | 8.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_0_{left_value='array', right_value='array'}::test_int_itruediv_py3_raises | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_0_{left_value='array', right_value='array'}::test_ior | 5.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_0_{left_value='array', right_value='array'}::test_ipow | 9.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_0_{left_value='array', right_value='array'}::test_irshift | 5.24 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_0_{left_value='array', right_value='array'}::test_isub | 8.50 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_0_{left_value='array', right_value='array'}::test_itruediv_py3 | 1.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_0_{left_value='array', right_value='array'}::test_ixor | 5.23 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_1_{left_value='array', right_value='scalar'}::test_iadd | 8.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_1_{left_value='array', right_value='scalar'}::test_iand | 5.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_1_{left_value='array', right_value='scalar'}::test_ilshift | 5.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_1_{left_value='array', right_value='scalar'}::test_imod | 5.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_1_{left_value='array', right_value='scalar'}::test_imul | 8.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_1_{left_value='array', right_value='scalar'}::test_int_itruediv_py3_raises | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_1_{left_value='array', right_value='scalar'}::test_ior | 5.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_1_{left_value='array', right_value='scalar'}::test_ipow | 9.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_1_{left_value='array', right_value='scalar'}::test_irshift | 5.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_1_{left_value='array', right_value='scalar'}::test_isub | 8.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_1_{left_value='array', right_value='scalar'}::test_itruediv_py3 | 1.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_1_{left_value='array', right_value='scalar'}::test_ixor | 5.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_2_{left_value='array', right_value='primitive'}::test_iadd | 6.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_2_{left_value='array', right_value='primitive'}::test_iand | 4.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_2_{left_value='array', right_value='primitive'}::test_ilshift | 4.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_2_{left_value='array', right_value='primitive'}::test_imod | 4.57 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_2_{left_value='array', right_value='primitive'}::test_imul | 6.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_2_{left_value='array', right_value='primitive'}::test_int_itruediv_py3_raises | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_2_{left_value='array', right_value='primitive'}::test_ior | 4.54 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_2_{left_value='array', right_value='primitive'}::test_ipow | 6.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_2_{left_value='array', right_value='primitive'}::test_irshift | 4.53 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_2_{left_value='array', right_value='primitive'}::test_isub | 6.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_2_{left_value='array', right_value='primitive'}::test_itruediv_py3 | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayInplaceOperator_param_2_{left_value='array', right_value='primitive'}::test_ixor | 4.53 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArraySetItem::test_setitem_ellipsis | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArraySetItem::test_setitem_non_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayMethods::test_all | 15.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayMethods::test_any | 15.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayMethods::test_copy | 9.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayMethods::test_max | 9.59 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayMethods::test_min | 9.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayMethods::test_prod | 18.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayMethods::test_sum | 17.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_array.py::TestFusionArrayAsType::test_astype | 171.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_0_{indices=1, shape=(2, 3, 4)}::test_getitem | 8.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_1_{indices=-1, shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_2_{indices=(1,), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_3_{indices=(1, 0), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_4_{indices=(1, 0, 2), shape=(2, 3, 4)}::test_getitem | 8.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_5_{indices=(-1, 0, -2), shape=(2, 3, 4)}::test_getitem | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_6_{indices=slice(None, None, None), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_7_{indices=slice(None, None, 1), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_8_{indices=slice(None, None, -1), shape=(2, 3, 4)}::test_getitem | 8.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_9_{indices=(slice(None, None, None), slice(None, None, -1)), shape=(2, 3, 4)}::test_getitem | 8.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_10_{indices=Ellipsis, shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_11_{indices=(Ellipsis,), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_12_{indices=None, shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_13_{indices=(None,), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_14_{indices=(None, None, None), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_15_{indices=(slice(None, None, None), 0, slice(None, None, -1)), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_16_{indices=(1, None, slice(None, None, -1), None, 2), shape=(2, 3, 4)}::test_getitem | 8.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_17_{indices=(slice(None, None, None), None), shape=(2,)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_18_{indices=(Ellipsis, 2), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_19_{indices=(1, Ellipsis), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexing_param_20_{indices=(1, Ellipsis, 3), shape=(2, 3, 4, 5)}::test_getitem | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestArrayInvalidIndex_param_0_{indices=0, shape=()}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestArrayInvalidIndex_param_1_{indices=(0, 0, 0), shape=(2, 3)}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestArrayInvalidIndex_param_2_{indices=-3, shape=(2, 3, 4)}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestArrayInvalidIndex_param_3_{indices=3, shape=(2, 3, 4)}::test_invalid_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexingCombination::test_indexing_and_add_1 | 25.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexingCombination::test_indexing_and_add_2 | 23.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexingCombination::test_indexing_and_add_3 | 9.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexingCombination::test_indexing_and_add_4 | 8.99 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexingCombination::test_indexing_twice_1 | 8.24 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_indexing.py::TestIndexingCombination::test_indexing_twice_2 | 16.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_kernel_cache.py::TestFusionCache::test_dtype_combinations | 1.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_kernel_cache.py::TestFusionCache::test_memoryspace_combinations | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_kernel_cache.py::TestFusionCache::test_same_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_kernel_cache.py::TestFusionCache::test_shape_combinations | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionInplaceUpdate::test_iadd_multiple_times | 8.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionInplaceUpdate::test_outarg_mixed | 8.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionTuple::test_multiple_outputdifferent_type_same_ufunc | 20.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionTuple::test_return_empty_tuple | 7.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionTuple::test_return_singleton_tuple | 7.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionTuple::test_return_tuple | 8.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionTuple::test_tuple | 7.93 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestReturnNone::test_iadd_once | 7.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestReturnNone::test_iadd_twice | 7.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestReturnNone::test_pass | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionNoneParams::test_python_none_parameter | 18.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionDecorator::test_with_paren | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionDecorator::test_without_paren | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionKernelName::test_elementwise | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionKernelName::test_elementwise_with_name | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionKernelName::test_reduction_01 | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionKernelName::test_reduction_postmap | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionKernelName::test_reduction_premap | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionKernelName::test_reduction_with_name | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionComposition::test_composition | 8.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionCompile::test_clear_cache | 8.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionGetArrayModule::test_get_array_module | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionThread::test_thread | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionThread::test_thread_multiple_dtypes | 17.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_misc.py::TestFusionMultiDevice::test_multi_device | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_different_shapes | 2.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_fuse_elementwise_op_1 | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_fuse_elementwise_op_2 | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_fuse_elementwise_ops_4 | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_ignore_op | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_inplace_elementwise_1 | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_inplace_elementwise_2 | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_inplace_same_memory_space | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_inplace_same_variable | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_one_elementwise_op | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_one_fuse_reduction_premap | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_one_reduction_op | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_one_reduction_op_rotate | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_optimization.py::TestOptimizations::test_returns_tuple | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_0_{axis=-4, shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_0_{axis=-4, shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_1_{axis=-4, shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_1_{axis=-4, shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_2_{axis=-4, shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_2_{axis=-4, shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_3_{axis=-4, shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_3_{axis=-4, shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_4_{axis=-3, shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_4_{axis=-3, shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_5_{axis=-3, shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_5_{axis=-3, shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_6_{axis=-3, shape=(2, 1, 4)}::test_sum_axis | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_6_{axis=-3, shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_7_{axis=-3, shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_7_{axis=-3, shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_8_{axis=-2, shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_8_{axis=-2, shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_9_{axis=-2, shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_9_{axis=-2, shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_10_{axis=-2, shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_10_{axis=-2, shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_11_{axis=-2, shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_11_{axis=-2, shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_12_{axis=-1, shape=(1,)}::test_sum_axis | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_12_{axis=-1, shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_13_{axis=-1, shape=(3, 4)}::test_sum_axis | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_13_{axis=-1, shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_14_{axis=-1, shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_14_{axis=-1, shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_15_{axis=-1, shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_15_{axis=-1, shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_16_{axis=0, shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_16_{axis=0, shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_17_{axis=0, shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_17_{axis=0, shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_18_{axis=0, shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_18_{axis=0, shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_19_{axis=0, shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_19_{axis=0, shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_20_{axis=1, shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_20_{axis=1, shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_21_{axis=1, shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_21_{axis=1, shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_22_{axis=1, shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_22_{axis=1, shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_23_{axis=1, shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_23_{axis=1, shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_24_{axis=2, shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_24_{axis=2, shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_25_{axis=2, shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_25_{axis=2, shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_26_{axis=2, shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_26_{axis=2, shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_27_{axis=2, shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_27_{axis=2, shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_28_{axis=3, shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_28_{axis=3, shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_29_{axis=3, shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_29_{axis=3, shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_30_{axis=3, shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_30_{axis=3, shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_31_{axis=3, shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_31_{axis=3, shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_32_{axis=4, shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_32_{axis=4, shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_33_{axis=4, shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_33_{axis=4, shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_34_{axis=4, shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_34_{axis=4, shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_35_{axis=4, shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAxis_param_35_{axis=4, shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_0_{axis=None, shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_0_{axis=None, shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_1_{axis=None, shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_1_{axis=None, shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_2_{axis=None, shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_2_{axis=None, shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_3_{axis=None, shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_3_{axis=None, shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_4_{axis=None, shape=(2, 3, 2, 2, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_4_{axis=None, shape=(2, 3, 2, 2, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_5_{axis=(0,), shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_5_{axis=(0,), shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_6_{axis=(0,), shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_6_{axis=(0,), shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_7_{axis=(0,), shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_7_{axis=(0,), shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_8_{axis=(0,), shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_8_{axis=(0,), shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_9_{axis=(0,), shape=(2, 3, 2, 2, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_9_{axis=(0,), shape=(2, 3, 2, 2, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_10_{axis=(1,), shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_10_{axis=(1,), shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_11_{axis=(1,), shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_11_{axis=(1,), shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_12_{axis=(1,), shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_12_{axis=(1,), shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_13_{axis=(1,), shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_13_{axis=(1,), shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_14_{axis=(1,), shape=(2, 3, 2, 2, 3)}::test_sum_axis | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_14_{axis=(1,), shape=(2, 3, 2, 2, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_15_{axis=(0, 1), shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_15_{axis=(0, 1), shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_16_{axis=(0, 1), shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_16_{axis=(0, 1), shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_17_{axis=(0, 1), shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_17_{axis=(0, 1), shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_18_{axis=(0, 1), shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_18_{axis=(0, 1), shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_19_{axis=(0, 1), shape=(2, 3, 2, 2, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_19_{axis=(0, 1), shape=(2, 3, 2, 2, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_20_{axis=(1, 2), shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_20_{axis=(1, 2), shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_21_{axis=(1, 2), shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_21_{axis=(1, 2), shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_22_{axis=(1, 2), shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_22_{axis=(1, 2), shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_23_{axis=(1, 2), shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_23_{axis=(1, 2), shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_24_{axis=(1, 2), shape=(2, 3, 2, 2, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_24_{axis=(1, 2), shape=(2, 3, 2, 2, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_25_{axis=(0, 2), shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_25_{axis=(0, 2), shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_26_{axis=(0, 2), shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_26_{axis=(0, 2), shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_27_{axis=(0, 2), shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_27_{axis=(0, 2), shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_28_{axis=(0, 2), shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_28_{axis=(0, 2), shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_29_{axis=(0, 2), shape=(2, 3, 2, 2, 3)}::test_sum_axis | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_29_{axis=(0, 2), shape=(2, 3, 2, 2, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_30_{axis=(1, 3), shape=(1,)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_30_{axis=(1, 3), shape=(1,)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_31_{axis=(1, 3), shape=(3, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_31_{axis=(1, 3), shape=(3, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_32_{axis=(1, 3), shape=(2, 1, 4)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_32_{axis=(1, 3), shape=(2, 1, 4)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_33_{axis=(1, 3), shape=(2, 0, 3)}::test_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_33_{axis=(1, 3), shape=(2, 0, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_34_{axis=(1, 3), shape=(2, 3, 2, 2, 3)}::test_sum_axis | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionMultiAxis_param_34_{axis=(1, 3), shape=(2, 3, 2, 2, 3)}::test_sum_kwargs_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_0_{axis=None}::test_postmap_one_array | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_0_{axis=None}::test_premap_one_array | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_0_{axis=None}::test_premap_two_arrays | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_1_{axis=0}::test_postmap_one_array | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_1_{axis=0}::test_premap_one_array | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_1_{axis=0}::test_premap_two_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_2_{axis=1}::test_postmap_one_array | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_2_{axis=1}::test_premap_one_array | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionAndElementwise_param_2_{axis=1}::test_premap_two_arrays | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_reduction.py::TestFusionReductionSpecifyDtype::test_sum | 30.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionBitwiseBinary_param_0_{func='bitwise_and'}::test_bitwise | 13.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionBitwiseBinary_param_1_{func='bitwise_or'}::test_bitwise | 12.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionBitwiseBinary_param_2_{func='bitwise_xor'}::test_bitwise | 12.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionBitwiseBinary_param_3_{func='left_shift'}::test_bitwise | 12.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionBitwiseBinary_param_4_{func='right_shift'}::test_bitwise | 12.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_0_{func='greater'}::test_comparison | 17.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_1_{func='greater_equal'}::test_comparison | 17.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_2_{func='less'}::test_comparison | 17.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_3_{func='less_equal'}::test_comparison | 17.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_4_{func='equal'}::test_comparison | 17.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_5_{func='not_equal'}::test_comparison | 17.60 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_6_{func='logical_and'}::test_comparison | 32.61 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_7_{func='logical_or'}::test_comparison | 32.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_8_{func='logical_xor'}::test_comparison | 32.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_9_{func='maximum'}::test_comparison | 32.85 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_10_{func='minimum'}::test_comparison | 32.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_11_{func='fmax'}::test_comparison | 32.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonBinary_param_12_{func='fmin'}::test_comparison | 32.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricUnary_param_0_{func='sin'}::test_trigonometric | 4.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricUnary_param_1_{func='cos'}::test_trigonometric | 8.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricUnary_param_2_{func='tan'}::test_trigonometric | 8.44 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricUnary_param_3_{func='arcsin'}::test_trigonometric | 8.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricUnary_param_4_{func='arccos'}::test_trigonometric | 8.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricUnary_param_5_{func='arctan'}::test_trigonometric | 8.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricUnary_param_6_{func='sinh'}::test_trigonometric | 8.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricUnary_param_7_{func='cosh'}::test_trigonometric | 8.61 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricUnary_param_8_{func='tanh'}::test_trigonometric | 8.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricUnary_param_9_{func='arcsinh'}::test_trigonometric | 8.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricUnary_param_10_{func='arccosh'}::test_trigonometric | 8.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricUnary_param_11_{func='arctanh'}::test_trigonometric | 8.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricBinary_param_0_{func='arctan2'}::test_trigonometric | 34.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionTrigonometricBinary_param_1_{func='hypot'}::test_trigonometric | 34.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionDegRad_param_0_{func='deg2rad'}::test_trigonometric | 15.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionDegRad_param_1_{func='rad2deg'}::test_trigonometric | 15.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionDegRad_param_2_{func='degrees'}::test_trigonometric | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionDegRad_param_3_{func='radians'}::test_trigonometric | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionRounding_param_0_{func='around'}::test_rounding | 7.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionRounding_param_1_{func='round'}::test_rounding | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionRounding_param_2_{func='round_'}::test_rounding | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionRounding_param_3_{func='rint'}::test_rounding | 15.74 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionRounding_param_4_{func='floor'}::test_rounding | 15.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionRounding_param_5_{func='ceil'}::test_rounding | 15.74 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionRounding_param_6_{func='trunc'}::test_rounding | 15.75 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionRounding_param_7_{func='fix'}::test_rounding | 15.75 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionExpLogUnary_param_0_{func='exp'}::test_explog | 17.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionExpLogUnary_param_1_{func='expm1'}::test_explog | 17.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionExpLogUnary_param_2_{func='exp2'}::test_explog | 17.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionExpLogUnary_param_3_{func='log'}::test_explog | 17.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionExpLogUnary_param_4_{func='log10'}::test_explog | 17.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionExpLogUnary_param_5_{func='log2'}::test_explog | 17.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionExpLogUnary_param_6_{func='log1p'}::test_explog | 17.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionExpLogBinary_param_0_{func='logaddexp'}::test_explog | 35.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionExpLogBinary_param_1_{func='logaddexp2'}::test_explog | 34.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionFloatingUnary_param_0_{func='signbit'}::test_floating_point_routine | 15.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionFloatingUnary_param_1_{func='frexp'}::test_floating_point_routine | 15.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionFloatingBinary_param_0_{func='copysign'}::test_floating_point_routine | 32.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionFloatingBinary_param_1_{func='nextafter'}::test_floating_point_routine | 33.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestArithmeticUnary_param_0_{func='reciprocal'}::test_arithmetic | 17.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestArithmeticUnary_param_1_{func='negative'}::test_arithmetic | 8.54 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestArithmeticUnary_param_2_{func='angle'}::test_arithmetic | 8.57 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestArithmeticUnary_param_3_{func='conj'}::test_arithmetic | 15.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestArithmeticUnary_param_4_{func='real'}::test_arithmetic | 8.54 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestArithmeticUnary_param_5_{func='imag'}::test_arithmetic | 8.53 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestArithmeticBinary_param_0_{func='add'}::test_arithmetic | 11.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestArithmeticBinary_param_1_{func='subtract'}::test_arithmetic | 13.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestArithmeticBinary_param_2_{func='multiply'}::test_arithmetic | 13.84 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestArithmeticBinary_param_3_{func='power'}::test_arithmetic | 14.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestDivide_param_0_{func='divide'}::test_divide | 13.19 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestDivide_param_1_{func='true_divide'}::test_divide | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestDivide_param_2_{func='floor_divide'}::test_divide | 16.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestDivide_param_3_{func='fmod'}::test_divide | 31.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestDivide_param_4_{func='remainder'}::test_divide | 21.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionSpecialMath_param_0_{func='i0'}::test_special_math | 4.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionSpecialMath_param_1_{func='sinc'}::test_special_math | 3.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionNumericalReduction_param_0_{func='sum'}::test_reduction | 8.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionNumericalReduction_param_1_{func='prod'}::test_reduction | 9.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionNumericalReduction_param_2_{func='amax'}::test_reduction | 9.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionNumericalReduction_param_3_{func='amin'}::test_reduction | 9.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionNumericalReduction_param_4_{func='max'}::test_reduction | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionNumericalReduction_param_5_{func='min'}::test_reduction | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionLogicalReduction_param_0_{func='all'}::test_reduction | 8.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionLogicalReduction_param_1_{func='any'}::test_reduction | 8.19 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionBitwiseUnary::test_invert | 5.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionComparisonUnary::test_comparison | 15.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionArrayContents::test_isfinite | 18.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionArrayContents::test_isinf | 18.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionArrayContents::test_isnan | 18.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionLdexp::test_explog | 7.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestModf::test_arithmetic | 15.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestDivmod::test_divmod | 24.47 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionMisc::test_abs | 7.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionMisc::test_absolute | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionMisc::test_cbrt | 15.84 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionMisc::test_clip | 15.74 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionMisc::test_sign | 14.44 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionMisc::test_sqrt | 15.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionMisc::test_square | 18.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionManipulation::test_copyto | 14.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionManipulation::test_copyto_where | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_routines.py::TestFusionManipulation::test_where | 37.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_0_{shapes=((3, 4), (3, 4))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_1_{shapes=((0, 1), (2, 0, 3))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_2_{shapes=((2, 0, 3), (2, 0, 3))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_3_{shapes=((3, 1), (1, 4))}::test_broadcast | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_4_{shapes=((1,), (1,))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_5_{shapes=((256,), (256, 256))}::test_broadcast | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_6_{shapes=((2, 0, 3), (0, 1))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_7_{shapes=((3, 4), (1,))}::test_broadcast | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_8_{shapes=((0,), (1,))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_9_{shapes=((3, 4), (1, 1))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_10_{shapes=((3, 4), (3, 1))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_11_{shapes=((1, 1), (3, 4))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_12_{shapes=((3, 1), (3, 4))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_13_{shapes=((256, 256), (256,))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_14_{shapes=((1, 4), (3, 4))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_15_{shapes=((3, 1), (2, 1, 4))}::test_broadcast | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_16_{shapes=((3, 4), (4,))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_17_{shapes=((1,), (0,))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_18_{shapes=((256, 256), (256, 1))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_19_{shapes=((3, 4), (1, 4))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_20_{shapes=((1, 1, 1), (2, 3, 4))}::test_broadcast | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_21_{shapes=((1,), (3, 4))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_22_{shapes=((1,), (10,))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_23_{shapes=((10,), (1,))}::test_broadcast | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_24_{shapes=((1, 4), (3, 1))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_25_{shapes=((256, 1), (256, 256))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_26_{shapes=((0,), (0,))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_27_{shapes=((4,), (3, 4))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_28_{shapes=((2, 1, 4), (3, 1))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcast_param_29_{shapes=((2, 3, 4), (1, 1, 1))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_0_{shapes=((3,), (1, 2))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_0_{shapes=((3,), (1, 2))}::test_broadcast_inplace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_1_{shapes=((3,), (2,))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_1_{shapes=((3,), (2,))}::test_broadcast_inplace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_2_{shapes=((2,), (3,))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_2_{shapes=((2,), (3,))}::test_broadcast_inplace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_3_{shapes=((3, 2), (3, 3))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_3_{shapes=((3, 2), (3, 3))}::test_broadcast_inplace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_4_{shapes=((2,), (0,))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_4_{shapes=((2,), (0,))}::test_broadcast_inplace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_5_{shapes=((0,), (2,))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_5_{shapes=((0,), (2,))}::test_broadcast_inplace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_6_{shapes=((3, 3), (3, 2))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_6_{shapes=((3, 3), (3, 2))}::test_broadcast_inplace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_7_{shapes=((3, 2), (2, 2))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_7_{shapes=((3, 2), (2, 2))}::test_broadcast_inplace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_8_{shapes=((2, 2), (3, 2))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_8_{shapes=((2, 2), (3, 2))}::test_broadcast_inplace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_9_{shapes=((1, 2), (3,))}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionBroadcastInvalid_param_9_{shapes=((1, 2), (3,))}::test_broadcast_inplace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionParseInput::test_add | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionParseInput::test_add_kwargs_out_none | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionParseInput::test_add_kwargs_out_object | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionParseInput::test_add_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionParseInput::test_add_object | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionParseInput::test_add_out_object | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionParseInput::test_add_too_less_param | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionParseInput::test_add_too_much_param | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionParseInput::test_divmod | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionOutDtype::test_outarg | 115.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionScalar::test_numpy_scalar_l | 16.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionScalar::test_numpy_scalar_param_l | 9.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionScalar::test_numpy_scalar_param_r | 11.84 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionScalar::test_numpy_scalar_params_binop | 18.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionScalar::test_numpy_scalar_r | 20.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionScalar::test_python_scalar_l | 2.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionScalar::test_python_scalar_param_l | 5.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionScalar::test_python_scalar_param_r | 4.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionScalar::test_python_scalar_r | 10.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionScalar::test_scalar_inplace_update | 19.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py::TestFusionScalar::test_scalar_inplace_update_with_array | 19.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_K_strides_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_contiguity | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_contiguity2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_contiguity2_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_contiguity3 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_contiguity3_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_contiguity_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_full_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_full_like_reshape_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_ones_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_ones_like_reshape_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_zeros_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_0_{shape=4}::test_zeros_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_K_strides_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_contiguity | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_contiguity2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_contiguity2_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_contiguity3 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_contiguity3_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_contiguity_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_full_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_full_like_reshape_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_ones_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_ones_like_reshape_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_zeros_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_1_{shape=(4,)}::test_zeros_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_K_strides_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_contiguity | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_contiguity2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_contiguity2_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_contiguity3 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_contiguity3_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_contiguity_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_full_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_full_like_reshape_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_ones_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_ones_like_reshape_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_zeros_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_zeros_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_K_strides_reshape | 9.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_contiguity | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_contiguity2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_contiguity2_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_contiguity3 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_contiguity3_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_contiguity_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_full_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_full_like_reshape_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_ones_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_ones_like_reshape_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_zeros_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_zeros_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_K_strides_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape | 10.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_contiguity | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_contiguity2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_contiguity2_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_contiguity3 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_contiguity3_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_contiguity_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_full_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_full_like_reshape_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_ones_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_ones_like_reshape_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_zeros_like_reshape | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_zeros_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_empty | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_empty_int | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_empty_like | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_empty_like_K_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_empty_like_contiguity | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_empty_like_contiguity2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_empty_like_contiguity3 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_empty_like_invalid_order | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_empty_like_subok | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_empty_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_empty_zero_sized_array_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_eye | 9.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_full | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_full_default_dtype | 27.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_full_default_dtype_cpu_input | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_full_like | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_full_like_subok | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_identity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_ones | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_ones_like | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_ones_like_subok | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_zeros | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_zeros_int | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_zeros_like | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_zeros_like_subok | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_zeros_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_basic.py::TestBasic::test_zeros_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_0_{copy=True, ndmin=0, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_1_{copy=True, ndmin=0, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_2_{copy=True, ndmin=1, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_3_{copy=True, ndmin=1, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_4_{copy=True, ndmin=2, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_5_{copy=True, ndmin=2, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_6_{copy=True, ndmin=3, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_7_{copy=True, ndmin=3, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_8_{copy=False, ndmin=0, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_9_{copy=False, ndmin=0, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_10_{copy=False, ndmin=1, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_11_{copy=False, ndmin=1, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_12_{copy=False, ndmin=2, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_13_{copy=False, ndmin=2, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_14_{copy=False, ndmin=3, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayPreservationOfShape_param_15_{copy=False, ndmin=3, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_0_{copy=True, ndmin=0, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_1_{copy=True, ndmin=0, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_2_{copy=True, ndmin=1, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_3_{copy=True, ndmin=1, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_4_{copy=True, ndmin=2, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_5_{copy=True, ndmin=2, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_6_{copy=True, ndmin=3, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_7_{copy=True, ndmin=3, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_8_{copy=False, ndmin=0, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_9_{copy=False, ndmin=0, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_10_{copy=False, ndmin=1, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_11_{copy=False, ndmin=1, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_12_{copy=False, ndmin=2, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_13_{copy=False, ndmin=2, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_14_{copy=False, ndmin=3, xp=numpy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayCopy_param_15_{copy=False, ndmin=3, xp=cupy}::test_cupy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_copy | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_copy_is_copied | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_copy_list_of_cupy_with_dtype | 91.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_copy_list_of_cupy_with_dtype_char | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_copy_list_of_numpy_with_dtype | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_copy_list_of_numpy_with_dtype_char | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_copy_with_dtype | 7.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_copy_with_dtype_being_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_copy_with_dtype_char | 0.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_f_contiguous_input | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_f_contiguous_output | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_empty_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_list_of_cupy | 9.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_list_of_cupy_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_list_of_cupy_view | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_list_of_numpy | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_list_of_numpy_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_list_of_numpy_view | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_nested_empty_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_nested_list_of_cupy | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_nested_list_of_cupy_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_nested_list_of_numpy | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_numpy | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_numpy_broad_cast | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_from_numpy_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_multi_device | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_multi_device_zero_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_no_copy | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_array_no_copy_ndmin | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_asanyarray_with_order | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_asarray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_asarray_cuda_array_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_asarray_cuda_array_zero_dim_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_asarray_from_numpy | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_asarray_is_not_copied | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_asarray_preserves_numpy_array_order | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_asarray_with_order | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_asarray_with_order_copy_behavior | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_ascontiguousarray_on_contiguous_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_ascontiguousarray_on_noncontiguous_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_asfortranarray_cuda_array_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_asfortranarray_cuda_array_zero_dim_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_copy | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_copy_multigpu | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_copy_order | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestFromData::test_fromfile | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_from_data.py::TestArrayInvalidObject::test_invalid_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTri_param_0_{shape=(2,)}::test_tri | 9.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTri_param_0_{shape=(2,)}::test_tri_nega | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTri_param_0_{shape=(2,)}::test_tri_posi | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTri_param_1_{shape=(3, 3)}::test_tri | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTri_param_1_{shape=(3, 3)}::test_tri_nega | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTri_param_1_{shape=(3, 3)}::test_tri_posi | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTri_param_2_{shape=(4, 3)}::test_tri | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTri_param_2_{shape=(4, 3)}::test_tri_nega | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTri_param_2_{shape=(4, 3)}::test_tri_posi | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_0_{shape=(2,)}::test_tril | 8.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_0_{shape=(2,)}::test_tril_array_like | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_0_{shape=(2,)}::test_tril_nega | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_0_{shape=(2,)}::test_tril_posi | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_0_{shape=(2,)}::test_triu | 8.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_0_{shape=(2,)}::test_triu_array_like | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_0_{shape=(2,)}::test_triu_nega | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_0_{shape=(2,)}::test_triu_posi | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_1_{shape=(3, 3)}::test_tril | 7.27 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_1_{shape=(3, 3)}::test_tril_array_like | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_1_{shape=(3, 3)}::test_tril_nega | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_1_{shape=(3, 3)}::test_tril_posi | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_1_{shape=(3, 3)}::test_triu | 7.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_1_{shape=(3, 3)}::test_triu_array_like | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_1_{shape=(3, 3)}::test_triu_nega | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_1_{shape=(3, 3)}::test_triu_posi | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_2_{shape=(4, 3)}::test_tril | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_2_{shape=(4, 3)}::test_tril_array_like | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_2_{shape=(4, 3)}::test_tril_nega | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_2_{shape=(4, 3)}::test_tril_posi | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_2_{shape=(4, 3)}::test_triu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_2_{shape=(4, 3)}::test_triu_array_like | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_2_{shape=(4, 3)}::test_triu_nega | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_2_{shape=(4, 3)}::test_triu_posi | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_3_{shape=(2, 3, 4)}::test_tril | 8.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_3_{shape=(2, 3, 4)}::test_tril_array_like | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_3_{shape=(2, 3, 4)}::test_tril_nega | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_3_{shape=(2, 3, 4)}::test_tril_posi | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_3_{shape=(2, 3, 4)}::test_triu | 8.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_3_{shape=(2, 3, 4)}::test_triu_array_like | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_3_{shape=(2, 3, 4)}::test_triu_nega | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestTriLowerAndUpper_param_3_{shape=(2, 3, 4)}::test_triu_posi | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diag1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diag2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diag3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diag_0dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diag_3dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diag_construction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diag_construction_from_list | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diag_construction_from_tuple | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diag_extraction_from_nested_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diag_extraction_from_nested_tuple | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diag_scaler | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diagflat1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diagflat2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diagflat3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diagflat_from_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diagflat_from_scalar_with_k0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_matrix.py::TestMatrix::test_diagflat_from_scalar_with_k1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_0_{copy=False, indexing='xy', sparse=False}::test_meshgrid0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_0_{copy=False, indexing='xy', sparse=False}::test_meshgrid1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_0_{copy=False, indexing='xy', sparse=False}::test_meshgrid2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_0_{copy=False, indexing='xy', sparse=False}::test_meshgrid3 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_1_{copy=False, indexing='xy', sparse=True}::test_meshgrid0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_1_{copy=False, indexing='xy', sparse=True}::test_meshgrid1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_1_{copy=False, indexing='xy', sparse=True}::test_meshgrid2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_1_{copy=False, indexing='xy', sparse=True}::test_meshgrid3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_2_{copy=False, indexing='ij', sparse=False}::test_meshgrid0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_2_{copy=False, indexing='ij', sparse=False}::test_meshgrid1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_2_{copy=False, indexing='ij', sparse=False}::test_meshgrid2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_2_{copy=False, indexing='ij', sparse=False}::test_meshgrid3 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_3_{copy=False, indexing='ij', sparse=True}::test_meshgrid0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_3_{copy=False, indexing='ij', sparse=True}::test_meshgrid1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_3_{copy=False, indexing='ij', sparse=True}::test_meshgrid2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_3_{copy=False, indexing='ij', sparse=True}::test_meshgrid3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_4_{copy=True, indexing='xy', sparse=False}::test_meshgrid0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_4_{copy=True, indexing='xy', sparse=False}::test_meshgrid1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_4_{copy=True, indexing='xy', sparse=False}::test_meshgrid2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_4_{copy=True, indexing='xy', sparse=False}::test_meshgrid3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_5_{copy=True, indexing='xy', sparse=True}::test_meshgrid0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_5_{copy=True, indexing='xy', sparse=True}::test_meshgrid1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_5_{copy=True, indexing='xy', sparse=True}::test_meshgrid2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_5_{copy=True, indexing='xy', sparse=True}::test_meshgrid3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_6_{copy=True, indexing='ij', sparse=False}::test_meshgrid0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_6_{copy=True, indexing='ij', sparse=False}::test_meshgrid1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_6_{copy=True, indexing='ij', sparse=False}::test_meshgrid2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_6_{copy=True, indexing='ij', sparse=False}::test_meshgrid3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_7_{copy=True, indexing='ij', sparse=True}::test_meshgrid0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_7_{copy=True, indexing='ij', sparse=True}::test_meshgrid1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_7_{copy=True, indexing='ij', sparse=True}::test_meshgrid2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMeshgrid_param_7_{copy=True, indexing='ij', sparse=True}::test_meshgrid3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_arange | 5.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_arange2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_arange3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_arange4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_arange5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_arange6 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_arange7 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_arange8 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_arange9 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_arange_negative_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_arange_no_dtype_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_arange_no_dtype_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace3 | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_array_start_stop | 3.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_array_start_stop_axis1 | 12.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_complex_start_stop | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_float_args_with_int_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_float_overflow | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_float_underflow | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_mixed_start_stop | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_mixed_start_stop2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_neg_num | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_no_dtype_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_no_dtype_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_no_endpoint | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_one_num | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_one_num_no_endopoint_with_retstep | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_start_stop_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_with_retstep | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_zero_num | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_linspace_zero_num_no_endopoint_with_retstep | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_logspace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_logspace2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_logspace_base | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_logspace_float_args_with_int_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_logspace_neg_num | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_logspace_no_dtype_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_logspace_no_dtype_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_logspace_no_endpoint | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_logspace_one_num | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestRanges::test_logspace_zero_num | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMgrid::test_mgrid0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMgrid::test_mgrid1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMgrid::test_mgrid2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMgrid::test_mgrid3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMgrid::test_mgrid4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestMgrid::test_mgrid5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestOgrid::test_ogrid0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestOgrid::test_ogrid1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestOgrid::test_ogrid2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestOgrid::test_ogrid3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestOgrid::test_ogrid4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/creation_tests/test_ranges.py::TestOgrid::test_ogrid5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_compiler.py::TestNvrtcStderr::test2 | 0.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_compiler.py::TestIsValidKernelName::test_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_compiler.py::TestIsValidKernelName::test_new_line | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_compiler.py::TestIsValidKernelName::test_space | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_compiler.py::TestIsValidKernelName::test_start_with_digit | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_compiler.py::TestIsValidKernelName::test_symbol | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_compiler.py::TestIsValidKernelName::test_valid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_compiler.py::TestExceptionPicklable::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_cublas.py::TestExceptionPicklable::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_cufft.py::TestExceptionPicklable::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_curand.py::TestGenerateNormal::test_invalid_argument_log_normal_double | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_curand.py::TestGenerateNormal::test_invalid_argument_log_normal_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_curand.py::TestGenerateNormal::test_invalid_argument_normal_double | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_curand.py::TestGenerateNormal::test_invalid_argument_normal_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_curand.py::TestExceptionPicklable::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_cusolver.py::TestExceptionPicklable::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_cusparse.py::TestExceptionPicklable::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceComparison::test_comparison_other_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceComparison::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceComparison::test_ge_device | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceComparison::test_gt_device | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceComparison::test_le_device | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceComparison::test_lt_device | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceAttributes::test_device_attributes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceAttributes::test_device_attributes_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDevicePCIBusId::test_device_by_pci_bus_id | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDevicePCIBusId::test_device_get_pci_bus_id | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceHandles::test_cublas_handle | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceHandles::test_cusolver_handle | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceHandles::test_cusolver_sp_handle | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceFromPointer::test_from_pointer | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_device.py::TestDeviceContextManager::test_thread_safe | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_driver.py::TestExceptionPicklable::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemory_param_0_{allocator=_malloc, specify_device_id=True}::test_device0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemory_param_0_{allocator=_malloc, specify_device_id=True}::test_device1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemory_param_1_{allocator=_malloc, specify_device_id=False}::test_device0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemory_param_1_{allocator=_malloc, specify_device_id=False}::test_device1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointerAsync_param_0_{use_streams=True}::test_copy_from_device_async | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointerAsync_param_0_{use_streams=True}::test_copy_from_device_async_using_raw_ptr | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointerAsync_param_0_{use_streams=True}::test_copy_to_and_from_host_async | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointerAsync_param_0_{use_streams=True}::test_copy_to_and_from_host_async_using_raw_ptr | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointerAsync_param_1_{use_streams=False}::test_copy_from_device_async | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointerAsync_param_1_{use_streams=False}::test_copy_from_device_async_using_raw_ptr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointerAsync_param_1_{use_streams=False}::test_copy_to_and_from_host_async | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointerAsync_param_1_{use_streams=False}::test_copy_to_and_from_host_async_using_raw_ptr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_0_{allocator=_malloc}::test_double_free | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_0_{allocator=_malloc}::test_free_all_blocks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_0_{allocator=_malloc}::test_free_all_blocks_without_malloc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_0_{allocator=_malloc}::test_free_all_free | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_0_{allocator=_malloc}::test_free_all_free_without_malloc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_0_{allocator=_malloc}::test_free_bytes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_0_{allocator=_malloc}::test_n_free_blocks_without_malloc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_0_{allocator=_malloc}::test_total_bytes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_0_{allocator=_malloc}::test_used_bytes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPool_param_0_{allocator=_malloc}::test_zero_size_alloc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestUnownedMemoryClass::test_inherits_base_memory | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointer::test_add | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointer::test_copy_from_device | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointer::test_copy_from_device_using_raw_ptr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointer::test_copy_to_and_from_host | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointer::test_copy_to_and_from_host_using_raw_ptr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointer::test_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointer::test_memset | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemoryPointer::test_sub | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_alloc | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_alloc_limit | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_alloc_split | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_bin_index_from_size | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_free | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_free_all_blocks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_free_all_blocks_all_streams | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_free_all_blocks_split | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_free_all_blocks_stream | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_free_all_free | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_free_bytes | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_free_bytes_stream | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_free_different_size | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_free_merge | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_free_stream | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_get_limit | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_merge | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_parse_limit_string | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_round_size | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_set_limit_fraction | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_set_limit_size | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_split | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_total_bytes | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_total_bytes_stream | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_used_bytes | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestSingleDeviceMemoryPool::test_used_bytes_stream | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocator::test_allocator_context_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocator::test_allocator_nested_context_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocator::test_allocator_thread_local | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocator::test_get_allocator | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocator::test_reuse_between_thread | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocator::test_reuse_between_thread_different_stream | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocator::test_reuse_between_thread_same_stream | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocator::test_set_allocator | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocator::test_set_allocator_cm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocator::test_thread_local_valid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocatorDisabled::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestAllocatorDisabled::test_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestPythonFunctionAllocator::test_allocator | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestMemInfo::test_mem_info | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestLockAndNoGc::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory.py::TestExceptionPicklable::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_memory_hook.py::TestMemoryHook::test_hook | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nccl.py::TestNCCL::test_abort | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nccl.py::TestNCCL::test_check_async_error | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nccl.py::TestNCCL::test_comm_size | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nccl.py::TestNCCL::test_init_all | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nccl.py::TestNCCL::test_send_recv | 0.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nccl.py::TestNCCL::test_single_proc_ring | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nccl.py::TestNCCL::test_single_proc_single_dev | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nccl.py::TestExceptionPicklable::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nvrtc.py::TestExceptionPicklable::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nvtx.py::TestNVTX::test_Mark | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nvtx.py::TestNVTX::test_MarkC | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nvtx.py::TestNVTX::test_RangePush | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_nvtx.py::TestNVTX::test_RangePushC | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_pinned_memory.py::TestMemoryPointer::test_add | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_pinned_memory.py::TestMemoryPointer::test_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_pinned_memory.py::TestMemoryPointer::test_sub | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_pinned_memory.py::TestSingleDeviceMemoryPool::test_alloc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_pinned_memory.py::TestSingleDeviceMemoryPool::test_double_free | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_pinned_memory.py::TestSingleDeviceMemoryPool::test_free | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_pinned_memory.py::TestSingleDeviceMemoryPool::test_free_all_blocks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_pinned_memory.py::TestSingleDeviceMemoryPool::test_free_all_blocks2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_pinned_memory.py::TestSingleDeviceMemoryPool::test_free_all_blocks_without_malloc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_pinned_memory.py::TestSingleDeviceMemoryPool::test_free_different_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_pinned_memory.py::TestSingleDeviceMemoryPool::test_n_free_blocks_without_malloc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_pinned_memory.py::TestSingleDeviceMemoryPool::test_zero_size_alloc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_profile.py::TestProfile::test_err_case | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_profile.py::TestProfile::test_profile | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_runtime.py::TestExceptionPicklable::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_0_{stream_name='null'}::test_del | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_0_{stream_name='null'}::test_del_default | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_0_{stream_name='null'}::test_eq_hip | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_0_{stream_name='null'}::test_get_and_add_callback | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_0_{stream_name='null'}::test_use | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_stream.py::TestStream_param_0_{stream_name='null'}::test_with_statement | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/test_stream.py::TestExternalStream::test_get_and_add_callback | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/memory_hooks_tests/test_debug_print.py::TestDebugPrintHook::test_print | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/memory_hooks_tests/test_line_profile.py::TestLineProfileHook::test_print_report | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/cuda_tests/memory_hooks_tests/test_line_profile.py::TestLineProfileHook::test_print_report_max_depth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache1 | 3.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache10 | 3.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache2 | 3.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache3 | 3.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache4 | 3.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache5 | 3.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache6 | 4.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache8 | 3.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_cache.py::TestPlanCache::test_LRU_cache9 | 3.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_0_{n=None, norm=None, shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_1_{n=None, norm=None, shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_2_{n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_3_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_8_{n=None, norm='ortho', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_9_{n=None, norm='ortho', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_10_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_11_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_16_{n=None, norm='', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_17_{n=None, norm='', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_18_{n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_19_{n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_20_{n=0, norm=None, shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_21_{n=0, norm=None, shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_22_{n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_23_{n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_28_{n=0, norm='ortho', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_29_{n=0, norm='ortho', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_30_{n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_31_{n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_36_{n=0, norm='', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_37_{n=0, norm='', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_38_{n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_39_{n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_40_{n=5, norm=None, shape=(0,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_41_{n=5, norm=None, shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_42_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_43_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_48_{n=5, norm='ortho', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_49_{n=5, norm='ortho', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_50_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_51_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_56_{n=5, norm='', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_57_{n=5, norm='', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_58_{n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_59_{n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_60_{n=10, norm=None, shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_61_{n=10, norm=None, shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_62_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_63_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_68_{n=10, norm='ortho', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_69_{n=10, norm='ortho', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_70_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_71_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_76_{n=10, norm='', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_77_{n=10, norm='', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_78_{n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_79_{n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_80_{n=15, norm=None, shape=(0,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_81_{n=15, norm=None, shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_82_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_83_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_88_{n=15, norm='ortho', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_89_{n=15, norm='ortho', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_90_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_91_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_96_{n=15, norm='', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_97_{n=15, norm='', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_98_{n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_99_{n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_0_{n=None, norm=None, shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_1_{n=None, norm=None, shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_2_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_3_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_8_{n=None, norm='ortho', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_9_{n=None, norm='ortho', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_10_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_11_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_16_{n=None, norm='', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_17_{n=None, norm='', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_18_{n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_19_{n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_20_{n=0, norm=None, shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_21_{n=0, norm=None, shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_22_{n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_23_{n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_28_{n=0, norm='ortho', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_29_{n=0, norm='ortho', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_30_{n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_31_{n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_36_{n=0, norm='', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_37_{n=0, norm='', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_38_{n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_39_{n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_40_{n=5, norm=None, shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_41_{n=5, norm=None, shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_42_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_43_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_48_{n=5, norm='ortho', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_49_{n=5, norm='ortho', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_50_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_51_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_56_{n=5, norm='', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_57_{n=5, norm='', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_58_{n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_59_{n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_60_{n=10, norm=None, shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_61_{n=10, norm=None, shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_62_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_63_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_68_{n=10, norm='ortho', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_69_{n=10, norm='ortho', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_70_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_71_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_76_{n=10, norm='', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_77_{n=10, norm='', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_78_{n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_79_{n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_80_{n=15, norm=None, shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_81_{n=15, norm=None, shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_82_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_83_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_88_{n=15, norm='ortho', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_89_{n=15, norm='ortho', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_90_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_91_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_96_{n=15, norm='', shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_97_{n=15, norm='', shape=(10, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_98_{n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_99_{n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_0_{axis=0, data_order='F', shape=(0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_1_{axis=0, data_order='F', shape=(10, 0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_2_{axis=0, data_order='F', shape=(10, 10)}] | 7.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_3_{axis=0, data_order='F', shape=(10, 5, 10)}] | 6.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_4_{axis=0, data_order='C', shape=(0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_5_{axis=0, data_order='C', shape=(10, 0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_6_{axis=0, data_order='C', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_7_{axis=0, data_order='C', shape=(10, 5, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_8_{axis=1, data_order='F', shape=(0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_9_{axis=1, data_order='F', shape=(10, 0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_10_{axis=1, data_order='F', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_11_{axis=1, data_order='F', shape=(10, 5, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_12_{axis=1, data_order='C', shape=(0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_13_{axis=1, data_order='C', shape=(10, 0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_14_{axis=1, data_order='C', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_15_{axis=1, data_order='C', shape=(10, 5, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_16_{axis=-1, data_order='F', shape=(0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_17_{axis=-1, data_order='F', shape=(10, 0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_18_{axis=-1, data_order='F', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_19_{axis=-1, data_order='F', shape=(10, 5, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_20_{axis=-1, data_order='C', shape=(0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_21_{axis=-1, data_order='C', shape=(10, 0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_22_{axis=-1, data_order='C', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_fft[_param_23_{axis=-1, data_order='C', shape=(10, 5, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_0_{axis=0, data_order='F', shape=(0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_1_{axis=0, data_order='F', shape=(10, 0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_2_{axis=0, data_order='F', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_3_{axis=0, data_order='F', shape=(10, 5, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_4_{axis=0, data_order='C', shape=(0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_5_{axis=0, data_order='C', shape=(10, 0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_6_{axis=0, data_order='C', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_7_{axis=0, data_order='C', shape=(10, 5, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_8_{axis=1, data_order='F', shape=(0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_9_{axis=1, data_order='F', shape=(10, 0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_10_{axis=1, data_order='F', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_11_{axis=1, data_order='F', shape=(10, 5, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_12_{axis=1, data_order='C', shape=(0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_13_{axis=1, data_order='C', shape=(10, 0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_14_{axis=1, data_order='C', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_15_{axis=1, data_order='C', shape=(10, 5, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_16_{axis=-1, data_order='F', shape=(0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_17_{axis=-1, data_order='F', shape=(10, 0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_18_{axis=-1, data_order='F', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_19_{axis=-1, data_order='F', shape=(10, 5, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_20_{axis=-1, data_order='C', shape=(0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_21_{axis=-1, data_order='C', shape=(10, 0, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_22_{axis=-1, data_order='C', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftOrder::test_ifft[_param_23_{axis=-1, data_order='C', shape=(10, 5, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestDefaultPlanType::test_default_fft_func | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 1.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_5_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_7_{axes=None, norm='ortho', s=(1, None), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_9_{axes=None, norm='', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_10_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_12_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_14_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_15_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_17_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_19_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_25_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_27_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_29_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_30_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_32_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_34_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_35_{axes=(), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_37_{axes=(), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_39_{axes=(), norm='', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_45_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_47_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_49_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_55_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_57_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_59_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_60_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_62_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_64_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_65_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_67_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_69_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_70_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_72_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_74_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_75_{axes=(), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_77_{axes=(), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_79_{axes=(), norm='', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_80_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_82_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_84_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_85_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 18.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_87_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_89_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_90_{axes=None, norm=None, s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_92_{axes=None, norm='ortho', s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_94_{axes=None, norm='', s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_95_{axes=None, norm=None, s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_97_{axes=None, norm='ortho', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_99_{axes=None, norm='', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_100_{axes=None, norm=None, s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_102_{axes=None, norm='ortho', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_104_{axes=None, norm='', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_105_{axes=None, norm=None, s=(0, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_107_{axes=None, norm='ortho', s=(0, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_109_{axes=None, norm='', s=(0, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_110_{axes=None, norm=None, s=(1, 0), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_112_{axes=None, norm='ortho', s=(1, 0), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_114_{axes=None, norm='', s=(1, 0), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_5_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_7_{axes=None, norm='ortho', s=(1, None), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_9_{axes=None, norm='', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_10_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_12_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_14_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_15_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_17_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_19_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_25_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_27_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_29_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_30_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_32_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_34_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_35_{axes=(), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_37_{axes=(), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_39_{axes=(), norm='', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_45_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_47_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_49_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_55_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_57_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_59_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_60_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_62_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_64_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_65_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_67_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_69_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_70_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_72_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_74_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_75_{axes=(), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_77_{axes=(), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_79_{axes=(), norm='', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_80_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_82_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_84_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_85_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_87_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_89_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_90_{axes=None, norm=None, s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_92_{axes=None, norm='ortho', s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_94_{axes=None, norm='', s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_95_{axes=None, norm=None, s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_97_{axes=None, norm='ortho', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_99_{axes=None, norm='', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_100_{axes=None, norm=None, s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_102_{axes=None, norm='ortho', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_104_{axes=None, norm='', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_105_{axes=None, norm=None, s=(0, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_107_{axes=None, norm='ortho', s=(0, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_109_{axes=None, norm='', s=(0, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_110_{axes=None, norm=None, s=(1, 0), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_112_{axes=None, norm='ortho', s=(1, 0), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_114_{axes=None, norm='', s=(1, 0), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_5_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_7_{axes=None, norm='ortho', s=(1, None), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_9_{axes=None, norm='', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_10_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_12_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_14_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_15_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_17_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_19_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_25_{axes=[-1, -2], norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_27_{axes=[-1, -2], norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_29_{axes=[-1, -2], norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_35_{axes=(), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_37_{axes=(), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_39_{axes=(), norm='', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_40_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_42_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_44_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_45_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_47_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_49_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_50_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_52_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_54_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_55_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_57_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_59_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_60_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_62_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_64_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_65_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_67_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_69_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_70_{axes=(-1, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_72_{axes=(-1, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_74_{axes=(-1, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_75_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_77_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_79_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_80_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_82_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_84_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_85_{axes=(), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_87_{axes=(), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_89_{axes=(), norm='', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_90_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_92_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_94_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_95_{axes=(2, 0, 1), norm=None, s=(4, 3, 2), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_97_{axes=(2, 0, 1), norm='ortho', s=(4, 3, 2), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_99_{axes=(2, 0, 1), norm='', s=(4, 3, 2), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_105_{axes=None, norm=None, s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_107_{axes=None, norm='ortho', s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_109_{axes=None, norm='', s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_110_{axes=None, norm=None, s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_112_{axes=None, norm='ortho', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_114_{axes=None, norm='', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_115_{axes=None, norm=None, s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_117_{axes=None, norm='ortho', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_119_{axes=None, norm='', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_5_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_7_{axes=None, norm='ortho', s=(1, None), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_9_{axes=None, norm='', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_10_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_12_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_14_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_15_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_17_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_19_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_25_{axes=[-1, -2], norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_27_{axes=[-1, -2], norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_29_{axes=[-1, -2], norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_35_{axes=(), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_37_{axes=(), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_39_{axes=(), norm='', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_40_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_42_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_44_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_45_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_47_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_49_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_50_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_52_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_54_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_55_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_57_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_59_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_60_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_62_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_64_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_65_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_67_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_69_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_70_{axes=(-1, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_72_{axes=(-1, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_74_{axes=(-1, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_75_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_77_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_79_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_80_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_82_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_84_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_85_{axes=(), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_87_{axes=(), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_89_{axes=(), norm='', s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_90_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_92_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_94_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_95_{axes=(2, 0, 1), norm=None, s=(4, 3, 2), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_97_{axes=(2, 0, 1), norm='ortho', s=(4, 3, 2), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_99_{axes=(2, 0, 1), norm='', s=(4, 3, 2), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_105_{axes=None, norm=None, s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_107_{axes=None, norm='ortho', s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_109_{axes=None, norm='', s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_110_{axes=None, norm=None, s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_112_{axes=None, norm='ortho', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_114_{axes=None, norm='', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_115_{axes=None, norm=None, s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_117_{axes=None, norm='ortho', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_119_{axes=None, norm='', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_4_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_6_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_8_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_10_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_12_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_14_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_16_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_18_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_20_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_22_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_24_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_26_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_28_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_30_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_32_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_34_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_36_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_38_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_44_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_46_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_48_{axes=None, norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_50_{axes=None, norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_52_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_54_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_56_{axes=None, norm=None, s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_58_{axes=None, norm='ortho', s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_60_{axes=None, norm=None, s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_62_{axes=None, norm='ortho', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_64_{axes=None, norm=None, s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn[_param_66_{axes=None, norm='ortho', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_4_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_6_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_8_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_10_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_12_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_14_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_16_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_18_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_20_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_22_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_24_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_26_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_28_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_30_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_32_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_34_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_36_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_38_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_44_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_46_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_48_{axes=None, norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_50_{axes=None, norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_52_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_54_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_56_{axes=None, norm=None, s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_58_{axes=None, norm='ortho', s=None, shape=(0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_60_{axes=None, norm=None, s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_62_{axes=None, norm='ortho', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_64_{axes=None, norm=None, s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_ifftn[_param_66_{axes=None, norm='ortho', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_4_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_6_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_8_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_10_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_12_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_14_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_16_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_18_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_20_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_22_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_24_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_26_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_28_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_30_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_32_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_34_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_36_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_38_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_44_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_46_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_48_{axes=None, norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_50_{axes=None, norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_52_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_54_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_56_{axes=None, norm=None, s=None, shape=(0, 5)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.complex64'> (0 in shape) skipped: dtype = <class 'numpy.complex128'> (0 in shape) skipped: dtype = <class 'numpy.complex64'> (0 in shape) skipped: dtype = <class 'numpy.complex128'> (0 in shape) | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_58_{axes=None, norm='ortho', s=None, shape=(0, 5)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.complex64'> (0 in shape) skipped: dtype = <class 'numpy.complex128'> (0 in shape) skipped: dtype = <class 'numpy.complex64'> (0 in shape) skipped: dtype = <class 'numpy.complex128'> (0 in shape) | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_60_{axes=None, norm=None, s=None, shape=(2, 0, 5)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.complex64'> (0 in shape) skipped: dtype = <class 'numpy.complex128'> (0 in shape) skipped: dtype = <class 'numpy.complex64'> (0 in shape) skipped: dtype = <class 'numpy.complex128'> (0 in shape) | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_62_{axes=None, norm='ortho', s=None, shape=(2, 0, 5)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.complex64'> (0 in shape) skipped: dtype = <class 'numpy.complex128'> (0 in shape) skipped: dtype = <class 'numpy.complex64'> (0 in shape) skipped: dtype = <class 'numpy.complex128'> (0 in shape) | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_64_{axes=None, norm=None, s=None, shape=(0, 0, 5)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.complex64'> (0 in shape) skipped: dtype = <class 'numpy.complex128'> (0 in shape) skipped: dtype = <class 'numpy.complex64'> (0 in shape) skipped: dtype = <class 'numpy.complex128'> (0 in shape) | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFftn::test_fftn_error_on_wrong_plan[_param_66_{axes=None, norm='ortho', s=None, shape=(0, 0, 5)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.complex64'> (0 in shape) skipped: dtype = <class 'numpy.complex128'> (0 in shape) skipped: dtype = <class 'numpy.complex64'> (0 in shape) skipped: dtype = <class 'numpy.complex128'> (0 in shape) | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_0_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_2_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_4_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_6_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_8_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_10_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_12_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft[_param_14_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_0_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_2_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_4_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_6_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_8_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_10_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_12_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_ifft[_param_14_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_0_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_2_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_4_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_6_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_8_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_10_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_12_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerFft::test_fft_error_on_wrong_plan[_param_14_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_5_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_7_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_9_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_10_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_12_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_14_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_15_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_17_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_19_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_20_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_22_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_24_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_25_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_27_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_29_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_30_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_32_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_34_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_35_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_37_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_39_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_40_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_42_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_44_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_45_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_47_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_49_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_50_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_52_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_54_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_55_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_57_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_fftn_orders[_param_59_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_5_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_7_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_9_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_10_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_12_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_14_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_15_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_17_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_19_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_20_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_22_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_24_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_25_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_27_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_29_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_30_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_32_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_34_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_35_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_37_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_39_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_40_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_42_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_44_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_45_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_47_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_49_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_50_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_52_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_54_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_55_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4, 5)}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_57_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftnContiguity::test_ifftn_orders[_param_59_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_0_{n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_1_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_8_{n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_9_{n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_10_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_11_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_14_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_15_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_18_{n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_19_{n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_20_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_21_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_24_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_25_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_28_{n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_29_{n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_30_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_31_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_34_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_35_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_38_{n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_39_{n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_0_{n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_1_{n=None, norm=None, shape=(10, 10)}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_8_{n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_9_{n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_10_{n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_11_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_14_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_15_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_18_{n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_19_{n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_20_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_21_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_24_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_25_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_28_{n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_29_{n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_30_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_31_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_34_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_35_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_38_{n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_39_{n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_0_{n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_2_{n=None, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_4_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_6_{n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_8_{n=10, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_10_{n=10, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_12_{n=15, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft[_param_14_{n=15, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_0_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_2_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_4_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_6_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_8_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_10_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_12_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_irfft[_param_14_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_0_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_2_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_4_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_6_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_8_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_10_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_12_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfft::test_rfft_error_on_wrong_plan[_param_14_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 6.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_5_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_7_{axes=None, norm='ortho', s=(1, None), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_9_{axes=None, norm='', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_10_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_12_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_14_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_15_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_17_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_19_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_25_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_27_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_29_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_30_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_32_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_34_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_35_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 6.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_37_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_39_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_40_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_42_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_44_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_45_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_47_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_49_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_50_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_52_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_54_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_55_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_57_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_59_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_60_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_62_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_64_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_70_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_72_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_74_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_75_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 7.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_77_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_79_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_5_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_7_{axes=None, norm='ortho', s=(1, None), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_9_{axes=None, norm='', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_10_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_12_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_14_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_15_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_17_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_19_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_25_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_27_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_29_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_30_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_32_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_34_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_35_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_37_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_39_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_40_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_42_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_44_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_45_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_47_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_49_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_50_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_52_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_54_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_55_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_57_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_59_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_60_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_62_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_64_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_70_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_72_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_74_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_75_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_77_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_79_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2EmptyAxes::test_rfft2[_param_0_{axes=(), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2EmptyAxes::test_rfft2[_param_1_{axes=(), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2EmptyAxes::test_irfft2[_param_0_{axes=(), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfft2EmptyAxes::test_irfft2[_param_1_{axes=(), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_5_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_7_{axes=None, norm='ortho', s=(1, None), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_9_{axes=None, norm='', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_10_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_12_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_14_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_15_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_17_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_19_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_25_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_27_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_29_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_30_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_32_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_34_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_35_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_37_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_39_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_40_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_42_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_44_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_45_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_47_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_49_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_50_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_52_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_54_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_55_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_57_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_59_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_60_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_62_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_64_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_70_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_72_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_74_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_75_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_77_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_79_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_5_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_7_{axes=None, norm='ortho', s=(1, None), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_9_{axes=None, norm='', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_10_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_12_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_14_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_15_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_17_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_19_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_25_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_27_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_29_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_30_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_32_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_34_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_35_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_37_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_39_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_40_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_42_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_44_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_45_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_47_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_49_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_50_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_52_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_54_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_55_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_57_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_59_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_60_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_62_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_64_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_70_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_72_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_74_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_75_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_77_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_79_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_5_{axes=None, norm=None, s=(1, None), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_7_{axes=None, norm='ortho', s=(1, None), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_9_{axes=None, norm='', s=(1, None), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_10_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_12_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_14_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_15_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_17_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_19_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_35_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_37_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_39_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_40_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_42_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_44_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_45_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_47_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_49_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestPlanCtxManagerRfftn::test_rfftn[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_5_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_7_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_9_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_10_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_12_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_14_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_15_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_17_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_19_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_20_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_22_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_24_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_25_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_27_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_29_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_30_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_32_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_34_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_60_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_62_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_rfftn_orders[_param_64_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_5_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_7_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_9_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_10_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_12_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_14_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_15_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_17_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_19_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_20_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_22_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_24_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_25_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_27_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_29_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_30_{axes=None, norm=None, s=(1, 4, None), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_32_{axes=None, norm='ortho', s=(1, 4, None), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_34_{axes=None, norm='', s=(1, 4, None), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_60_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_62_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnContiguity::test_ifftn_orders[_param_64_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnEmptyAxes::test_rfftn[_param_0_{axes=(), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnEmptyAxes::test_rfftn[_param_1_{axes=(), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnEmptyAxes::test_irfftn[_param_0_{axes=(), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestRfftnEmptyAxes::test_irfftn[_param_1_{axes=(), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_0_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_1_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_8_{n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_9_{n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_10_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_11_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_14_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_15_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_18_{n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_19_{n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_20_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_21_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_24_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_25_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_28_{n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_29_{n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_30_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_31_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_34_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_35_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_38_{n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_39_{n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_0_{n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_1_{n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_4_{n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_5_{n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_8_{n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_9_{n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_10_{n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_11_{n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_14_{n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_15_{n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_18_{n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_19_{n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_20_{n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_21_{n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_24_{n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_25_{n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_28_{n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_29_{n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_30_{n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_31_{n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_34_{n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_35_{n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_38_{n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_39_{n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftfreq::test_fftfreq[_param_0_{d=1, n=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftfreq::test_fftfreq[_param_1_{d=0.5, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftfreq::test_fftfreq[_param_2_{d=2, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftfreq::test_rfftfreq[_param_0_{d=1, n=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftfreq::test_rfftfreq[_param_1_{d=0.5, n=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftfreq::test_rfftfreq[_param_2_{d=2, n=100}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_fftshift[_param_0_{axes=None, shape=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_fftshift[_param_1_{axes=0, shape=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_fftshift[_param_2_{axes=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_fftshift[_param_3_{axes=0, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_fftshift[_param_4_{axes=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_fftshift[_param_5_{axes=0, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_fftshift[_param_6_{axes=(0, 1), shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_ifftshift[_param_0_{axes=None, shape=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_ifftshift[_param_1_{axes=0, shape=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_ifftshift[_param_2_{axes=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_ifftshift[_param_3_{axes=0, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_ifftshift[_param_4_{axes=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_ifftshift[_param_5_{axes=0, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestFftshift::test_ifftshift[_param_6_{axes=(0, 1), shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestThreading::test_threading1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/fft_tests/test_fft.py::TestThreading::test_threading2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_callable_funclist | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_mismatched_lengths | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_mixed_funclist | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_piecewise | 11.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_piecewise_diff_types_funclist | 32.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_piecewise_ndarray_condlist_funclist | 2.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_piecewise_ndim_input | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_piecewise_otherwise_condition1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_piecewise_otherwise_condition2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_piecewise_scalar_condition | 9.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_piecewise_scalar_input | 9.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_piecewise_zero_dim_condlist | 9.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_piecewise.py::TestPiecewise::test_piecewise_zero_dim_input | 18.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_add | 20.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_bit_and | 8.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_bit_invert | 5.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_bit_or | 11.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_bit_xor | 9.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_div | 20.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_eq | 19.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_floor_div | 16.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_ge | 16.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_gt | 15.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_le | 16.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_logical_not | 9.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_lshift | 10.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_lt | 14.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_mod | 16.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_mul | 18.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_neq | 16.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_pow | 20.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_rshift | 10.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_sub | 18.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeOps::test_vectorize_usub | 8.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeExprs::test_vectorize_ifexp | 113.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeExprs::test_vectorize_incr | 9.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeExprs::test_vectorize_typecast | 116.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeExprs::test_vectorize_ufunc_call | 9.41 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeExprs::test_vectorize_ufunc_call_dtype | 8.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeInstructions::test_vectorize_assign_new | 9.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeInstructions::test_vectorize_assign_update | 9.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeInstructions::test_vectorize_augassign | 9.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeInstructions::test_vectorize_const_assign | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeInstructions::test_vectorize_const_non_toplevel | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeInstructions::test_vectorize_const_typeerror | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeInstructions::test_vectorize_nonconst_for_value | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_elif | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_for | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_for_compound_expression_param | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_for_const_range | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_for_counter_after_loop | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_for_range_step | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_for_update_counter | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_for_update_loop_condition | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_if | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_if_no_orlese | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_return_tuple | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_tuple | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeStmts::test_while | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeConstants::test_vectorize_const_attr | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeConstants::test_vectorize_const_value | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeBroadcast::test_vectorize_broadcast | 8.92 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeBroadcast::test_vectorize_numpy_scalar_input | 8.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorizeBroadcast::test_vectorize_python_scalar_input | 7.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/functional_tests/test_vectorize.py::TestVectorize::test_vectorize_arithmetic_ops | 5.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestIndices::test_indices_list0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestIndices::test_indices_list1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestIndices::test_indices_list2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestIndices::test_indices_list3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestIX_::test_ix_bool_ndarray | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestIX_::test_ix_empty_ndarray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestIX_::test_ix_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestIX_::test_ix_ndarray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestR_::test_r_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestR_::test_r_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestR_::test_r_3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestR_::test_r_4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestR_::test_r_5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestR_::test_r_6 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestR_::test_r_7 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestR_::test_r_8 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestR_::test_r_9 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestC_::test_c_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestC_::test_c_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestC_::test_c_3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestAxisConcatenator::test_AxisConcatenator_init1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestAxisConcatenator::test_len | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestUnravelIndex::test | 5.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestUnravelIndex::test_invalid_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestUnravelIndex::test_invalid_index | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestUnravelIndex::test_invalid_order | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestRavelMultiIndex::test_basic | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestRavelMultiIndex::test_basic_clip | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestRavelMultiIndex::test_basic_nd_coords | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestRavelMultiIndex::test_basic_raise | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestRavelMultiIndex::test_basic_wrap | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestRavelMultiIndex::test_dims_overflow | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestRavelMultiIndex::test_invalid_float_dims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestRavelMultiIndex::test_invalid_mode | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestRavelMultiIndex::test_invalid_multi_index_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestRavelMultiIndex::test_invalid_multi_index_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestRavelMultiIndex::test_invalid_order | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_generate.py::TestRavelMultiIndex::test_multi_index_broadcasting | 8.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_compress | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_compress_empty_1dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_compress_empty_1dim_no_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_compress_no_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_compress_no_bool | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_diagonal_invalid1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_diagonal_invalid2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_diagonal_negative1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_diagonal_negative2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_diagonal_negative3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_diagonal_negative4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_diagonal_negative5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_external_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_external_take_by_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_extract | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_extract_empty_1dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_extract_no_bool | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_extract_shape_mismatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_extract_size_mismatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_extract_size_mismatch2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_take_along_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_take_along_axis_none_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_take_by_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_take_by_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestIndexing::test_take_no_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestChoose::test_choose | 9.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestChoose::test_choose_broadcast | 9.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestChoose::test_choose_broadcast2 | 9.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestChoose::test_choose_broadcast_fail | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestChoose::test_choose_clip | 9.27 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestChoose::test_choose_wrap | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestChoose::test_raise | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestChoose::test_unknown_clip | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select | 7.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_1D_choicelist | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_choicelist_condlist_broadcast | 10.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_default_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_default_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_empty_lists | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_length_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_odd_shaped_broadcastable | 7.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_odd_shaped_broadcastable_complex | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_odd_shaped_non_broadcastable | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_type_error_choicelist | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_indexing.py::TestSelect::test_select_type_error_condlist | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlace_param_0_{n_vals=0, shape=(7,)}::test_place | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlace_param_1_{n_vals=0, shape=(2, 3)}::test_place | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlace_param_2_{n_vals=0, shape=(4, 3, 2)}::test_place | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlace_param_3_{n_vals=1, shape=(7,)}::test_place | 9.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlace_param_4_{n_vals=1, shape=(2, 3)}::test_place | 9.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlace_param_5_{n_vals=1, shape=(4, 3, 2)}::test_place | 9.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlace_param_6_{n_vals=3, shape=(7,)}::test_place | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlace_param_7_{n_vals=3, shape=(2, 3)}::test_place | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlace_param_8_{n_vals=3, shape=(4, 3, 2)}::test_place | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlace_param_9_{n_vals=15, shape=(7,)}::test_place | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlace_param_10_{n_vals=15, shape=(2, 3)}::test_place | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlace_param_11_{n_vals=15, shape=(4, 3, 2)}::test_place | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlaceRaises_param_0_{shape=(7,)}::test_place_empty_value_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlaceRaises_param_0_{shape=(7,)}::test_place_shape_unmatch_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlaceRaises_param_1_{shape=(2, 3)}::test_place_empty_value_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlaceRaises_param_1_{shape=(2, 3)}::test_place_shape_unmatch_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlaceRaises_param_2_{shape=(4, 3, 2)}::test_place_empty_value_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPlaceRaises_param_2_{shape=(4, 3, 2)}::test_place_shape_unmatch_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_0_{mode='raise', n_vals=0, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_1_{mode='raise', n_vals=0, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_2_{mode='raise', n_vals=0, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_3_{mode='raise', n_vals=1, shape=(7,)}::test_put | 9.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_4_{mode='raise', n_vals=1, shape=(2, 3)}::test_put | 9.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_5_{mode='raise', n_vals=1, shape=(4, 3, 2)}::test_put | 9.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_6_{mode='raise', n_vals=3, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_7_{mode='raise', n_vals=3, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_8_{mode='raise', n_vals=3, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_9_{mode='raise', n_vals=4, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_10_{mode='raise', n_vals=4, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_11_{mode='raise', n_vals=4, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_12_{mode='raise', n_vals=5, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_13_{mode='raise', n_vals=5, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_14_{mode='raise', n_vals=5, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_15_{mode='wrap', n_vals=0, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_16_{mode='wrap', n_vals=0, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_17_{mode='wrap', n_vals=0, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_18_{mode='wrap', n_vals=1, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_19_{mode='wrap', n_vals=1, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_20_{mode='wrap', n_vals=1, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_21_{mode='wrap', n_vals=3, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_22_{mode='wrap', n_vals=3, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_23_{mode='wrap', n_vals=3, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_24_{mode='wrap', n_vals=4, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_25_{mode='wrap', n_vals=4, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_26_{mode='wrap', n_vals=4, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_27_{mode='wrap', n_vals=5, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_28_{mode='wrap', n_vals=5, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_29_{mode='wrap', n_vals=5, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_30_{mode='clip', n_vals=0, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_31_{mode='clip', n_vals=0, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_32_{mode='clip', n_vals=0, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_33_{mode='clip', n_vals=1, shape=(7,)}::test_put | 9.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_34_{mode='clip', n_vals=1, shape=(2, 3)}::test_put | 9.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_35_{mode='clip', n_vals=1, shape=(4, 3, 2)}::test_put | 9.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_36_{mode='clip', n_vals=3, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_37_{mode='clip', n_vals=3, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_38_{mode='clip', n_vals=3, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_39_{mode='clip', n_vals=4, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_40_{mode='clip', n_vals=4, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_41_{mode='clip', n_vals=4, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_42_{mode='clip', n_vals=5, shape=(7,)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_43_{mode='clip', n_vals=5, shape=(2, 3)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPut_param_44_{mode='clip', n_vals=5, shape=(4, 3, 2)}::test_put | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutScalars_param_0_{shape=(7,)}::test_put_index_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutScalars_param_0_{shape=(7,)}::test_put_values_scalar | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutScalars_param_1_{shape=(2, 3)}::test_put_index_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutScalars_param_1_{shape=(2, 3)}::test_put_values_scalar | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutScalars_param_2_{shape=(4, 3, 2)}::test_put_index_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutScalars_param_2_{shape=(4, 3, 2)}::test_put_values_scalar | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutRaises_param_0_{shape=(7,)}::test_put_inds_overflow_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutRaises_param_0_{shape=(7,)}::test_put_inds_underflow_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutRaises_param_0_{shape=(7,)}::test_put_mode_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutRaises_param_1_{shape=(2, 3)}::test_put_inds_overflow_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutRaises_param_1_{shape=(2, 3)}::test_put_inds_underflow_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutRaises_param_1_{shape=(2, 3)}::test_put_mode_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskSameShape_param_0_{shape=(0,)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskSameShape_param_1_{shape=(1,)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskSameShape_param_2_{shape=(2, 3)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskSameShape_param_3_{shape=(2, 3, 4)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentShapes_param_0_{shape=(0,), values_shape=(2,)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentShapes_param_1_{shape=(0,), values_shape=(3, 1)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentShapes_param_2_{shape=(0,), values_shape=(5,)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentShapes_param_3_{shape=(1,), values_shape=(2,)}::test_putmask | 9.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentShapes_param_4_{shape=(1,), values_shape=(3, 1)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentShapes_param_5_{shape=(1,), values_shape=(5,)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentShapes_param_6_{shape=(2, 3), values_shape=(2,)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentShapes_param_7_{shape=(2, 3), values_shape=(3, 1)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentShapes_param_8_{shape=(2, 3), values_shape=(5,)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentShapes_param_9_{shape=(2, 3, 4), values_shape=(2,)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentShapes_param_10_{shape=(2, 3, 4), values_shape=(3, 1)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentShapes_param_11_{shape=(2, 3, 4), values_shape=(5,)}::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_0_{shape=(3, 3), val=1, wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_0_{shape=(3, 3), val=1, wrap=True}::test_columnar_slice | 9.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_0_{shape=(3, 3), val=1, wrap=True}::test_fill_diagonal | 9.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_1_{shape=(3, 3), val=1, wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_1_{shape=(3, 3), val=1, wrap=False}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_1_{shape=(3, 3), val=1, wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_2_{shape=(3, 3), val=0, wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_2_{shape=(3, 3), val=0, wrap=True}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_2_{shape=(3, 3), val=0, wrap=True}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_3_{shape=(3, 3), val=0, wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_3_{shape=(3, 3), val=0, wrap=False}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_3_{shape=(3, 3), val=0, wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_4_{shape=(3, 3), val=(2,), wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_4_{shape=(3, 3), val=(2,), wrap=True}::test_columnar_slice | 9.23 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_4_{shape=(3, 3), val=(2,), wrap=True}::test_fill_diagonal | 9.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_5_{shape=(3, 3), val=(2,), wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_5_{shape=(3, 3), val=(2,), wrap=False}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_5_{shape=(3, 3), val=(2,), wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_6_{shape=(3, 3), val=(2, 2), wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_6_{shape=(3, 3), val=(2, 2), wrap=True}::test_columnar_slice | 9.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_6_{shape=(3, 3), val=(2, 2), wrap=True}::test_fill_diagonal | 9.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_7_{shape=(3, 3), val=(2, 2), wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_7_{shape=(3, 3), val=(2, 2), wrap=False}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_7_{shape=(3, 3), val=(2, 2), wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_8_{shape=(2, 2, 2), val=1, wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_8_{shape=(2, 2, 2), val=1, wrap=True}::test_columnar_slice | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.longlong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.ulonglong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.bool_'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex128'> (The length of each dimension must be the same after slicing) | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_8_{shape=(2, 2, 2), val=1, wrap=True}::test_fill_diagonal | 9.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_9_{shape=(2, 2, 2), val=1, wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_9_{shape=(2, 2, 2), val=1, wrap=False}::test_columnar_slice | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.longlong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.ulonglong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.bool_'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex128'> (The length of each dimension must be the same after slicing) | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_9_{shape=(2, 2, 2), val=1, wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_10_{shape=(2, 2, 2), val=0, wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_10_{shape=(2, 2, 2), val=0, wrap=True}::test_columnar_slice | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.longlong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.ulonglong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.bool_'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex128'> (The length of each dimension must be the same after slicing) | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_10_{shape=(2, 2, 2), val=0, wrap=True}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_11_{shape=(2, 2, 2), val=0, wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_11_{shape=(2, 2, 2), val=0, wrap=False}::test_columnar_slice | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.longlong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.ulonglong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.bool_'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex128'> (The length of each dimension must be the same after slicing) | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_11_{shape=(2, 2, 2), val=0, wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_12_{shape=(2, 2, 2), val=(2,), wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_12_{shape=(2, 2, 2), val=(2,), wrap=True}::test_columnar_slice | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.longlong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.ulonglong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.bool_'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex128'> (The length of each dimension must be the same after slicing) | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_12_{shape=(2, 2, 2), val=(2,), wrap=True}::test_fill_diagonal | 9.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_13_{shape=(2, 2, 2), val=(2,), wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_13_{shape=(2, 2, 2), val=(2,), wrap=False}::test_columnar_slice | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.longlong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.ulonglong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.bool_'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex128'> (The length of each dimension must be the same after slicing) | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_13_{shape=(2, 2, 2), val=(2,), wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_14_{shape=(2, 2, 2), val=(2, 2), wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_14_{shape=(2, 2, 2), val=(2, 2), wrap=True}::test_columnar_slice | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.longlong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.ulonglong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.bool_'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex128'> (The length of each dimension must be the same after slicing) | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_14_{shape=(2, 2, 2), val=(2, 2), wrap=True}::test_fill_diagonal | 9.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_15_{shape=(2, 2, 2), val=(2, 2), wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_15_{shape=(2, 2, 2), val=(2, 2), wrap=False}::test_columnar_slice | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.float16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.int64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.longlong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint8'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint16'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint32'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.uint64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.ulonglong'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.bool_'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex64'> (The length of each dimension must be the same after slicing) skipped: dtype = <class 'numpy.complex128'> (The length of each dimension must be the same after slicing) | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_15_{shape=(2, 2, 2), val=(2, 2), wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_16_{shape=(3, 5), val=1, wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_16_{shape=(3, 5), val=1, wrap=True}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_16_{shape=(3, 5), val=1, wrap=True}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_17_{shape=(3, 5), val=1, wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_17_{shape=(3, 5), val=1, wrap=False}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_17_{shape=(3, 5), val=1, wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_18_{shape=(3, 5), val=0, wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_18_{shape=(3, 5), val=0, wrap=True}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_18_{shape=(3, 5), val=0, wrap=True}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_19_{shape=(3, 5), val=0, wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_19_{shape=(3, 5), val=0, wrap=False}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_19_{shape=(3, 5), val=0, wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_20_{shape=(3, 5), val=(2,), wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_20_{shape=(3, 5), val=(2,), wrap=True}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_20_{shape=(3, 5), val=(2,), wrap=True}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_21_{shape=(3, 5), val=(2,), wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_21_{shape=(3, 5), val=(2,), wrap=False}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_21_{shape=(3, 5), val=(2,), wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_22_{shape=(3, 5), val=(2, 2), wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_22_{shape=(3, 5), val=(2, 2), wrap=True}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_22_{shape=(3, 5), val=(2, 2), wrap=True}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_23_{shape=(3, 5), val=(2, 2), wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_23_{shape=(3, 5), val=(2, 2), wrap=False}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_23_{shape=(3, 5), val=(2, 2), wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_24_{shape=(5, 3), val=1, wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_24_{shape=(5, 3), val=1, wrap=True}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_24_{shape=(5, 3), val=1, wrap=True}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_25_{shape=(5, 3), val=1, wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_25_{shape=(5, 3), val=1, wrap=False}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_25_{shape=(5, 3), val=1, wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_26_{shape=(5, 3), val=0, wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_26_{shape=(5, 3), val=0, wrap=True}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_26_{shape=(5, 3), val=0, wrap=True}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_27_{shape=(5, 3), val=0, wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_27_{shape=(5, 3), val=0, wrap=False}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_27_{shape=(5, 3), val=0, wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_28_{shape=(5, 3), val=(2,), wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_28_{shape=(5, 3), val=(2,), wrap=True}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_28_{shape=(5, 3), val=(2,), wrap=True}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_29_{shape=(5, 3), val=(2,), wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_29_{shape=(5, 3), val=(2,), wrap=False}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_29_{shape=(5, 3), val=(2,), wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_30_{shape=(5, 3), val=(2, 2), wrap=True}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_30_{shape=(5, 3), val=(2, 2), wrap=True}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_30_{shape=(5, 3), val=(2, 2), wrap=True}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_31_{shape=(5, 3), val=(2, 2), wrap=False}::test_1darray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_31_{shape=(5, 3), val=(2, 2), wrap=False}::test_columnar_slice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestFillDiagonal_param_31_{shape=(5, 3), val=(2, 2), wrap=False}::test_fill_diagonal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_0_{n=2, ndim=2}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_1_{n=2, ndim=3}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_2_{n=2, ndim=1}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_3_{n=2, ndim=0}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_4_{n=2, ndim=-2}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_5_{n=4, ndim=2}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_6_{n=4, ndim=3}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_7_{n=4, ndim=1}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_8_{n=4, ndim=0}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_9_{n=4, ndim=-2}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_10_{n=-3, ndim=2}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_11_{n=-3, ndim=3}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_12_{n=-3, ndim=1}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_13_{n=-3, ndim=0}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_14_{n=-3, ndim=-2}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_15_{n=0, ndim=2}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_16_{n=0, ndim=3}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_17_{n=0, ndim=1}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_18_{n=0, ndim=0}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndices_param_19_{n=0, ndim=-2}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesInvalidValues_param_0_{n=-3, ndim=1}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesInvalidValues_param_1_{n=-3, ndim=0}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesInvalidValues_param_2_{n=-3, ndim=-2}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesInvalidValues_param_3_{n=0, ndim=1}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesInvalidValues_param_4_{n=0, ndim=0}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesInvalidValues_param_5_{n=0, ndim=-2}::test_diag_indices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesFrom_param_0_{shape=(3, 3)}::test_diag_indices_from | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesFrom_param_1_{shape=(0, 0)}::test_diag_indices_from | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesFrom_param_2_{shape=(2, 2, 2)}::test_diag_indices_from | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesFromRaises_param_0_{shape=(3, 5)}::test_non_equal_dims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesFromRaises_param_1_{shape=(3, 3, 4)}::test_non_equal_dims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesFromRaises_param_2_{shape=(5,)}::test_non_equal_dims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesFromRaises_param_3_{shape=(0,)}::test_non_equal_dims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestDiagIndicesFromRaises_param_4_{shape=(-1,)}::test_non_equal_dims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmask::test_putmask_int_mask_scalar_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmask::test_putmask_non_equal_shape_raises | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmask::test_putmask_scalar_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentDtypes::test_putmask_differnt_dtypes_mask | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_insert.py::TestPutmaskDifferentDtypes::test_putmask_differnt_dtypes_raises | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_0_{index=Ellipsis, shape=(2, 3, 4)}::test_getitem | 18.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_0_{index=Ellipsis, shape=(2, 3, 4)}::test_setitem_ndarray_1d | 9.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_0_{index=Ellipsis, shape=(2, 3, 4)}::test_setitem_ndarray_different_types | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_0_{index=Ellipsis, shape=(2, 3, 4)}::test_setitem_ndarray_nd | 9.41 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_0_{index=Ellipsis, shape=(2, 3, 4)}::test_setitem_scalar | 9.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_1_{index=0, shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_1_{index=0, shape=(2, 3, 4)}::test_setitem_ndarray_1d | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_1_{index=0, shape=(2, 3, 4)}::test_setitem_ndarray_different_types | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.complex128'>, v_dtype = <class 'numpy.complex128'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.uint16'>, v_dtype = <class 'numpy.uint16'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.complex128'>, v_dtype = <class 'numpy.complex128'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.uint16'>, v_dtype = <class 'numpy.uint16'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.complex128'>, v_dtype = <class 'numpy.complex128'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.uint16'>, v_dtype = <class 'numpy.uint16'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.complex128'>, v_dtype = <class 'numpy.complex128'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.uint16'>, v_dtype = <class 'numpy.uint16'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.complex128'>, v_dtype = <class 'numpy.complex128'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.uint16'>, v_dtype = <class 'numpy.uint16'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.complex64'> () | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_1_{index=0, shape=(2, 3, 4)}::test_setitem_ndarray_nd | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_1_{index=0, shape=(2, 3, 4)}::test_setitem_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_2_{index=10, shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_2_{index=10, shape=(2, 3, 4)}::test_setitem_ndarray_1d | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_2_{index=10, shape=(2, 3, 4)}::test_setitem_ndarray_different_types | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.complex128'>, v_dtype = <class 'numpy.complex128'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.uint16'>, v_dtype = <class 'numpy.uint16'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.complex128'>, v_dtype = <class 'numpy.complex128'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.uint16'>, v_dtype = <class 'numpy.uint16'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.complex128'>, v_dtype = <class 'numpy.complex128'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.uint16'>, v_dtype = <class 'numpy.uint16'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.complex128'>, v_dtype = <class 'numpy.complex128'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.uint16'>, v_dtype = <class 'numpy.uint16'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.complex64'>, v_dtype = <class 'numpy.complex64'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.complex128'>, v_dtype = <class 'numpy.complex128'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.int8'> () skipped: a_dtype = <class 'numpy.float64'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.float64'> () skipped: a_dtype = <class 'numpy.int32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.float16'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.ulonglong'>, v_dtype = <class 'numpy.uint32'> () skipped: a_dtype = <class 'numpy.bool_'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.int8'>, v_dtype = <class 'numpy.bool_'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.uint64'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.float32'> () skipped: a_dtype = <class 'numpy.longlong'>, v_dtype = <class 'numpy.longlong'> () skipped: a_dtype = <class 'numpy.float32'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint64'>, v_dtype = <class 'numpy.int16'> () skipped: a_dtype = <class 'numpy.int64'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.float16'>, v_dtype = <class 'numpy.ulonglong'> () skipped: a_dtype = <class 'numpy.int16'>, v_dtype = <class 'numpy.int64'> () skipped: a_dtype = <class 'numpy.uint16'>, v_dtype = <class 'numpy.uint16'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.uint8'> () skipped: a_dtype = <class 'numpy.uint32'>, v_dtype = <class 'numpy.int32'> () skipped: a_dtype = <class 'numpy.uint8'>, v_dtype = <class 'numpy.complex64'> () | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_2_{index=10, shape=(2, 3, 4)}::test_setitem_ndarray_nd | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_2_{index=10, shape=(2, 3, 4)}::test_setitem_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_3_{index=slice(None, None, None), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_3_{index=slice(None, None, None), shape=(2, 3, 4)}::test_setitem_ndarray_1d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_3_{index=slice(None, None, None), shape=(2, 3, 4)}::test_setitem_ndarray_different_types | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_3_{index=slice(None, None, None), shape=(2, 3, 4)}::test_setitem_ndarray_nd | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_3_{index=slice(None, None, None), shape=(2, 3, 4)}::test_setitem_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_4_{index=slice(None, 10, None), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_4_{index=slice(None, 10, None), shape=(2, 3, 4)}::test_setitem_ndarray_1d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_4_{index=slice(None, 10, None), shape=(2, 3, 4)}::test_setitem_ndarray_different_types | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_4_{index=slice(None, 10, None), shape=(2, 3, 4)}::test_setitem_ndarray_nd | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_4_{index=slice(None, 10, None), shape=(2, 3, 4)}::test_setitem_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_5_{index=slice(None, None, 2), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_5_{index=slice(None, None, 2), shape=(2, 3, 4)}::test_setitem_ndarray_1d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_5_{index=slice(None, None, 2), shape=(2, 3, 4)}::test_setitem_ndarray_different_types | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_5_{index=slice(None, None, 2), shape=(2, 3, 4)}::test_setitem_ndarray_nd | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_5_{index=slice(None, None, 2), shape=(2, 3, 4)}::test_setitem_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_6_{index=slice(None, None, -1), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_6_{index=slice(None, None, -1), shape=(2, 3, 4)}::test_setitem_ndarray_1d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_6_{index=slice(None, None, -1), shape=(2, 3, 4)}::test_setitem_ndarray_different_types | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_6_{index=slice(None, None, -1), shape=(2, 3, 4)}::test_setitem_ndarray_nd | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_6_{index=slice(None, None, -1), shape=(2, 3, 4)}::test_setitem_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_7_{index=slice(10, None, -1), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_7_{index=slice(10, None, -1), shape=(2, 3, 4)}::test_setitem_ndarray_1d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_7_{index=slice(10, None, -1), shape=(2, 3, 4)}::test_setitem_ndarray_different_types | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_7_{index=slice(10, None, -1), shape=(2, 3, 4)}::test_setitem_ndarray_nd | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_7_{index=slice(10, None, -1), shape=(2, 3, 4)}::test_setitem_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_8_{index=slice(10, None, -2), shape=(2, 3, 4)}::test_getitem | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_8_{index=slice(10, None, -2), shape=(2, 3, 4)}::test_setitem_ndarray_1d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_8_{index=slice(10, None, -2), shape=(2, 3, 4)}::test_setitem_ndarray_different_types | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_8_{index=slice(10, None, -2), shape=(2, 3, 4)}::test_setitem_ndarray_nd | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_8_{index=slice(10, None, -2), shape=(2, 3, 4)}::test_setitem_scalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_9_{index=slice(None, None, None), shape=()}::test_getitem | 9.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_9_{index=slice(None, None, None), shape=()}::test_setitem_ndarray_1d | 9.24 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_9_{index=slice(None, None, None), shape=()}::test_setitem_ndarray_different_types | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_9_{index=slice(None, None, None), shape=()}::test_setitem_ndarray_nd | 18.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_9_{index=slice(None, None, None), shape=()}::test_setitem_scalar | 9.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_10_{index=slice(None, None, None), shape=(10,)}::test_getitem | 9.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_10_{index=slice(None, None, None), shape=(10,)}::test_setitem_ndarray_1d | 9.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_10_{index=slice(None, None, None), shape=(10,)}::test_setitem_ndarray_different_types | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_10_{index=slice(None, None, None), shape=(10,)}::test_setitem_ndarray_nd | 18.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscript_param_10_{index=slice(None, None, None), shape=(10,)}::test_setitem_scalar | 9.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscriptIndexError_param_0_{index=None, shape=(2, 3, 4)}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscriptIndexError_param_0_{index=None, shape=(2, 3, 4)}::test_setitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscriptIndexError_param_1_{index=(0,), shape=(2, 3, 4)}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscriptIndexError_param_1_{index=(0,), shape=(2, 3, 4)}::test_setitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscriptIndexError_param_2_{index=True, shape=(2, 3, 4)}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscriptIndexError_param_2_{index=True, shape=(2, 3, 4)}::test_setitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscriptIndexError_param_3_{index=array([0]), shape=(2, 3, 4)}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscriptIndexError_param_3_{index=array([0]), shape=(2, 3, 4)}::test_setitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscriptIndexError_param_4_{index=[0], shape=(2, 3, 4)}::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiterSubscriptIndexError_param_4_{index=[0], shape=(2, 3, 4)}::test_setitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiter::test_base | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiter::test_copy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiter::test_copy_next | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiter::test_iter | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiter::test_len | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/indexing_tests/test_iterate.py::TestFlatiter::test_next | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBinaryReprValues_param_0_{args=(0,)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBinaryReprValues_param_1_{args=(3,)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBinaryReprValues_param_2_{args=(-3,)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBinaryReprValues_param_3_{args=(0, 0)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBinaryReprValues_param_4_{args=(3, 5)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBinaryReprValues_param_5_{args=(-3, 5)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_0_{args=(0,)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_1_{args=(5,)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_2_{args=(-5,)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_3_{args=(0, 2)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_4_{args=(0, 10)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_5_{args=(0, 36)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_6_{args=(5, 2)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_7_{args=(5, 10)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_8_{args=(5, 36)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_9_{args=(-5, 2)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_10_{args=(-5, 10)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_11_{args=(-5, 36)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_12_{args=(-5, 2, 0)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_13_{args=(-5, 2, 2)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_14_{args=(-5, 2, 10)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_15_{args=(5, 2, 0)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_16_{args=(5, 2, 2)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseReprValues_param_17_{args=(5, 2, 10)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBinaryRepr::test_argspec | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBinaryRepr::test_docstring | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseRepr::test_argspec | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_base_n.py::TestBaseRepr::test_docstring | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_formatting.py::TestFormatting::test_array_repr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_formatting.py::TestFormatting::test_array_str | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_npz.py::TestNpz::test_dump | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_npz.py::TestNpz::test_load_pickle | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_npz.py::TestNpz::test_pickle | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_npz.py::TestNpz::test_save_load | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_npz.py::TestNpz::test_save_pickle | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_npz.py::TestNpz::test_savez | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/io_tests/test_npz.py::TestNpz::test_savez_compressed | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_numpy_array[_param_0_{variable=None}] | 8.74 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_numpy_array[_param_1_{variable='y'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_cupy_array[_param_0_{variable=None}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_cupy_array[_param_1_{variable='y'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_list[_param_0_{variable=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_list[_param_1_{variable='y'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_numpy_poly1d[_param_0_{variable=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_numpy_poly1d[_param_1_{variable='y'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_numpy_poly1d_variable[_param_0_{variable=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_numpy_poly1d_variable[_param_1_{variable='y'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_cupy_poly1d[_param_0_{variable=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_cupy_poly1d[_param_1_{variable='y'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_cupy_poly1d_variable[_param_0_{variable=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dInit::test_poly1d_cupy_poly1d_variable[_param_1_{variable='y'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_leading_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_neg | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_order | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_order_leading_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_getitem1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_getitem2 | 9.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_getitem3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_getitem4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_setitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_setitem_leading_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_setitem_neg | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_get1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_get2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_set | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_repr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_str | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1d::test_poly1d_call | 19.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPowInvalidValue::test_poly1d_pow[_param_0_{exp=-10, shape=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPowInvalidValue::test_poly1d_pow[_param_1_{exp=-10, shape=(5, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPowInvalidValue::test_poly1d_pow[_param_2_{exp=3.5, shape=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPowInvalidValue::test_poly1d_pow[_param_3_{exp=3.5, shape=(5, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPowInvalidValue::test_poly1d_pow[_param_4_{exp=[1, 2, 3], shape=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPowInvalidValue::test_poly1d_pow[_param_5_{exp=[1, 2, 3], shape=(5, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPowInvalidType::test_poly1d_pow[_param_0_{exp=3.0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dPowInvalidType::test_poly1d_pow[_param_1_{exp=5.0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dArithmeticInvalid::test_poly1d_arithmetic_invalid[_param_0_{func=<lambda>, type_l='numpy_scalar', type_r='poly1d'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dArithmeticInvalid::test_poly1d_arithmetic_invalid[_param_1_{func=<lambda>, type_l='numpy_scalar', type_r='poly1d'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dArithmeticInvalid::test_poly1d_arithmetic_invalid[_param_2_{func=<lambda>, type_l='numpy_scalar', type_r='poly1d'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dEquality::test_poly1d_eq1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dEquality::test_poly1d_eq2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dEquality::test_poly1d_ne1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPoly1dEquality::test_poly1d_ne2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticDiffTypes::test_polyroutine_diff_types_array[_param_0_{fname='polyadd'}] | 4.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticDiffTypes::test_polyroutine_diff_types_array[_param_1_{fname='polysub'}] | 5.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticDiffTypes::test_polyroutine_diff_types_array[_param_2_{fname='polymul'}] | 10.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticDiffTypes::test_polyroutine_diff_types_poly1d[_param_0_{fname='polyadd'}] | 2.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticDiffTypes::test_polyroutine_diff_types_poly1d[_param_1_{fname='polysub'}] | 2.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyArithmeticDiffTypes::test_polyroutine_diff_types_poly1d[_param_2_{fname='polymul'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_12_{deg=3, rcond=None, shape1=(3,), shape2=(3,), weighted=True}] | 9.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_13_{deg=3, rcond=None, shape1=(3,), shape2=(3,), weighted=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_14_{deg=3, rcond=None, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_15_{deg=3, rcond=None, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_16_{deg=3, rcond=0.5, shape1=(3,), shape2=(3,), weighted=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_17_{deg=3, rcond=0.5, shape1=(3,), shape2=(3,), weighted=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_18_{deg=3, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_19_{deg=3, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_20_{deg=3, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_21_{deg=3, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_22_{deg=3, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_23_{deg=3, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_24_{deg=3.0, rcond=None, shape1=(3,), shape2=(3,), weighted=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_25_{deg=3.0, rcond=None, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_26_{deg=3.0, rcond=None, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_27_{deg=3.0, rcond=None, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_28_{deg=3.0, rcond=0.5, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_29_{deg=3.0, rcond=0.5, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_30_{deg=3.0, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_31_{deg=3.0, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_32_{deg=3.0, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_33_{deg=3.0, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_34_{deg=3.0, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_35_{deg=3.0, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_36_{deg=3.5, rcond=None, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_37_{deg=3.5, rcond=None, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_38_{deg=3.5, rcond=None, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_39_{deg=3.5, rcond=None, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_40_{deg=3.5, rcond=0.5, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_41_{deg=3.5, rcond=0.5, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_42_{deg=3.5, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_43_{deg=3.5, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_44_{deg=3.5, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_45_{deg=3.5, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_46_{deg=3.5, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_47_{deg=3.5, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_48_{deg=10, rcond=None, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_49_{deg=10, rcond=None, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_50_{deg=10, rcond=None, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_51_{deg=10, rcond=None, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_52_{deg=10, rcond=0.5, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_53_{deg=10, rcond=0.5, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_54_{deg=10, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_55_{deg=10, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_56_{deg=10, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_57_{deg=10, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_58_{deg=10, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_default[_param_59_{deg=10, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_12_{deg=3, rcond=None, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_13_{deg=3, rcond=None, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_14_{deg=3, rcond=None, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_15_{deg=3, rcond=None, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_16_{deg=3, rcond=0.5, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_17_{deg=3, rcond=0.5, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_18_{deg=3, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_19_{deg=3, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_20_{deg=3, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_21_{deg=3, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_22_{deg=3, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_23_{deg=3, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_24_{deg=3.0, rcond=None, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_25_{deg=3.0, rcond=None, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_26_{deg=3.0, rcond=None, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_27_{deg=3.0, rcond=None, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_28_{deg=3.0, rcond=0.5, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_29_{deg=3.0, rcond=0.5, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_30_{deg=3.0, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_31_{deg=3.0, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_32_{deg=3.0, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_33_{deg=3.0, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_34_{deg=3.0, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_35_{deg=3.0, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_36_{deg=3.5, rcond=None, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_37_{deg=3.5, rcond=None, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_38_{deg=3.5, rcond=None, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_39_{deg=3.5, rcond=None, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_40_{deg=3.5, rcond=0.5, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_41_{deg=3.5, rcond=0.5, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_42_{deg=3.5, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_43_{deg=3.5, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_44_{deg=3.5, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_45_{deg=3.5, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_46_{deg=3.5, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_47_{deg=3.5, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_48_{deg=10, rcond=None, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_49_{deg=10, rcond=None, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_50_{deg=10, rcond=None, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_51_{deg=10, rcond=None, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_52_{deg=10, rcond=0.5, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_53_{deg=10, rcond=0.5, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_54_{deg=10, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_55_{deg=10, rcond=0.5, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_56_{deg=10, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_57_{deg=10, rcond=1e-15, shape1=(3,), shape2=(3,), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_58_{deg=10, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitParametersCombinations::test_polyfit_full[_param_59_{deg=10, rcond=1e-15, shape1=(3,), shape2=(3, 2), weighted=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_8_{cov='unscaled', deg=1, rcond=None, shape=(3,), weighted=True}] | 0.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_9_{cov='unscaled', deg=1, rcond=None, shape=(3,), weighted=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_10_{cov='unscaled', deg=1, rcond=None, shape=(3, 2), weighted=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_11_{cov='unscaled', deg=1, rcond=None, shape=(3, 2), weighted=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_12_{cov='unscaled', deg=1, rcond=1e-15, shape=(3,), weighted=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_13_{cov='unscaled', deg=1, rcond=1e-15, shape=(3,), weighted=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_14_{cov='unscaled', deg=1, rcond=1e-15, shape=(3, 2), weighted=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_15_{cov='unscaled', deg=1, rcond=1e-15, shape=(3, 2), weighted=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_24_{cov=True, deg=1, rcond=None, shape=(3,), weighted=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_25_{cov=True, deg=1, rcond=None, shape=(3,), weighted=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_26_{cov=True, deg=1, rcond=None, shape=(3, 2), weighted=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_27_{cov=True, deg=1, rcond=None, shape=(3, 2), weighted=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_28_{cov=True, deg=1, rcond=1e-15, shape=(3,), weighted=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_29_{cov=True, deg=1, rcond=1e-15, shape=(3,), weighted=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_30_{cov=True, deg=1, rcond=1e-15, shape=(3, 2), weighted=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitCovMode::test_polyfit_cov[_param_31_{cov=True, deg=1, rcond=1e-15, shape=(3, 2), weighted=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfit::test_polyfit_poor_fit | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalidShapes::test_polyfit_x_invalid_shape[_param_0_{shape=()}] | 3.90 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalidShapes::test_polyfit_x_invalid_shape[_param_1_{shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalidShapes::test_polyfit_x_invalid_shape[_param_2_{shape=(5, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalidShapes::test_polyfit_y_invalid_shape[_param_0_{shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalidShapes::test_polyfit_y_invalid_shape[_param_1_{shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalidShapes::test_polyfit_y_invalid_shape[_param_2_{shape=(5, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalidShapes::test_polyfit_w_invalid_shape[_param_0_{shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalidShapes::test_polyfit_w_invalid_shape[_param_1_{shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalidShapes::test_polyfit_w_invalid_shape[_param_2_{shape=(5, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalid::test_polyfit_neg_degree | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalid::test_polyfit_complex_degree | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalid::test_polyfit_xy_mismatched_length | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalid::test_polyfit_yw_mismatched_length | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalid::test_polyfit_cov_invalid | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitInvalid::test_polyfit_float16 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitDiffTypes::test_polyfit_unweighted_diff_types | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyfitDiffTypes::test_polyfit_weighted_diff_types | 5.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyval::test_polyval[_param_0_{type_l='poly1d', type_r='ndarray'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyval::test_polyval[_param_1_{type_l='poly1d', type_r='numpy_scalar'}] | 10.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyval::test_polyval[_param_2_{type_l='poly1d', type_r='python_scalar'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyval::test_polyval[_param_3_{type_l='ndarray', type_r='ndarray'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyval::test_polyval[_param_4_{type_l='ndarray', type_r='numpy_scalar'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyval::test_polyval[_param_5_{type_l='ndarray', type_r='python_scalar'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalInvalidTypes::test_polyval[_param_0_{type_l='numpy_scalar', type_r='poly1d'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalInvalidTypes::test_polyval[_param_1_{type_l='numpy_scalar', type_r='ndarray'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalInvalidTypes::test_polyval[_param_2_{type_l='numpy_scalar', type_r='python_scalar'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalInvalidTypes::test_polyval[_param_3_{type_l='numpy_scalar', type_r='numpy_scalar'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalInvalidTypes::test_polyval[_param_4_{type_l='python_scalar', type_r='poly1d'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalInvalidTypes::test_polyval[_param_5_{type_l='python_scalar', type_r='ndarray'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalInvalidTypes::test_polyval[_param_6_{type_l='python_scalar', type_r='python_scalar'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalInvalidTypes::test_polyval[_param_7_{type_l='python_scalar', type_r='numpy_scalar'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalShapeCombination::test_polyval[_param_0_{shape1=(0,), shape2=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalShapeCombination::test_polyval[_param_1_{shape1=(0,), shape2=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalShapeCombination::test_polyval[_param_2_{shape1=(0,), shape2=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalShapeCombination::test_polyval[_param_3_{shape1=(0,), shape2=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalShapeCombination::test_polyval[_param_4_{shape1=(3,), shape2=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalShapeCombination::test_polyval[_param_5_{shape1=(3,), shape2=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalShapeCombination::test_polyval[_param_6_{shape1=(3,), shape2=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalShapeCombination::test_polyval[_param_7_{shape1=(3,), shape2=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalShapeCombination::test_polyval[_param_8_{shape1=(5,), shape2=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalShapeCombination::test_polyval[_param_9_{shape1=(5,), shape2=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalShapeCombination::test_polyval[_param_10_{shape1=(5,), shape2=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalShapeCombination::test_polyval[_param_11_{shape1=(5,), shape2=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalInvalidShapeCombination::test_polyval[_param_0_{shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalInvalidShapeCombination::test_polyval[_param_1_{shape=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalInvalidShapeCombination::test_polyval[_param_2_{shape=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalInvalidShapeCombination::test_polyval[_param_3_{shape=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalDtypesCombination::test_polyval_diff_types_array_array | 18.57 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalDtypesCombination::test_polyval_diff_types_array_scalar | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalNotImplemented::test_polyval_ndim_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyvalNotImplemented::test_polyval_poly1d_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyRoutinesNdim::test_polyroutine_ndim[_param_0_{fname='polyadd'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyRoutinesNdim::test_polyroutine_ndim[_param_1_{fname='polysub'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyRoutinesNdim::test_polyroutine_ndim[_param_2_{fname='polymul'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestPolyRoutinesNdim::test_polyroutine_ndim[_param_3_{fname='polyval'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsComplex::test_roots_array[_param_1_{input=[(3+2j), 5]}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsComplex::test_roots_array[_param_2_{input=[3j, 0]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsComplex::test_roots_array[_param_3_{input=[0, 3j]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsComplex::test_roots_poly1d[_param_1_{input=[(3+2j), 5]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsComplex::test_roots_poly1d[_param_2_{input=[3j, 0]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsComplex::test_roots_poly1d[_param_3_{input=[0, 3j]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsSpecialCases::test_roots_array[_param_0_{input=[5, 10]}] | 5.27 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsSpecialCases::test_roots_array[_param_1_{input=[5, 0]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsSpecialCases::test_roots_array[_param_2_{input=[0, 5]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsSpecialCases::test_roots_array[_param_3_{input=[0, 0]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsSpecialCases::test_roots_array[_param_4_{input=[5]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsSpecialCases::test_roots_poly1d[_param_0_{input=[5, 10]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsSpecialCases::test_roots_poly1d[_param_1_{input=[5, 0]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsSpecialCases::test_roots_poly1d[_param_2_{input=[0, 5]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsSpecialCases::test_roots_poly1d[_param_3_{input=[0, 0]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRootsSpecialCases::test_roots_poly1d[_param_4_{input=[5]}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRoots::test_roots_zero_sized | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRoots::test_roots_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRoots::test_roots_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRoots::test_roots_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRoots::test_roots_zeros_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_polynomial.py::TestRoots::test_roots_bool_symmetric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_0_{axis=0}::test_0d_array | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_0_{axis=0}::test_3d | 8.74 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_0_{axis=0}::test_axis_insertion_2d | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_0_{axis=0}::test_axis_insertion_3d | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_0_{axis=0}::test_empty1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_0_{axis=0}::test_empty2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_0_{axis=0}::test_simple | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_1_{axis=1}::test_0d_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_1_{axis=1}::test_3d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_1_{axis=1}::test_axis_insertion_2d | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_1_{axis=1}::test_axis_insertion_3d | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_1_{axis=1}::test_empty1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_1_{axis=1}::test_empty2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_1_{axis=1}::test_simple | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_2_{axis=-1}::test_0d_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_2_{axis=-1}::test_3d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_2_{axis=-1}::test_axis_insertion_2d | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_2_{axis=-1}::test_axis_insertion_3d | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_2_{axis=-1}::test_empty1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_2_{axis=-1}::test_empty2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::TestApplyAlongAxis_param_2_{axis=-1}::test_simple | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_shape_base.py::test_apply_along_axis_invalid_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_strided_tricks.py::TestAsStrided::test_as_strided | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/lib_tests/test_strided_tricks.py::TestAsStrided::test_rolling_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestQRDecomposition_param_0_{mode='r'}::test_empty_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestQRDecomposition_param_0_{mode='r'}::test_mode | 2.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestQRDecomposition_param_1_{mode='raw'}::test_empty_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestQRDecomposition_param_1_{mode='raw'}::test_mode | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestQRDecomposition_param_2_{mode='complete'}::test_empty_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestQRDecomposition_param_2_{mode='complete'}::test_mode | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestQRDecomposition_param_3_{mode='reduced'}::test_empty_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestQRDecomposition_param_3_{mode='reduced'}::test_mode | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank2 | 4.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank2_empty_array | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank2_empty_array_compute_uv_false | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank2_no_uv | 0.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank3 | 8.24 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank3_empty_array | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank3_empty_array_compute_uv_false1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank3_empty_array_compute_uv_false2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank3_loop | 35.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank3_no_uv | 0.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank3_no_uv_loop | 3.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank4 | 4.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank4_empty_array | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank4_loop | 36.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank4_no_uv | 0.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_0_{full_matrices=True}::test_svd_rank4_no_uv_loop | 3.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank2 | 0.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank2_empty_array | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank2_empty_array_compute_uv_false | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank2_no_uv | 0.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank3 | 4.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank3_empty_array | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank3_empty_array_compute_uv_false1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank3_empty_array_compute_uv_false2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank3_loop | 34.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank3_no_uv | 0.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank3_no_uv_loop | 4.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank4 | 4.94 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank4_empty_array | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank4_loop | 36.60 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank4_no_uv | 0.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestSVD_param_1_{full_matrices=False}::test_svd_rank4_no_uv_loop | 3.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestCholeskyDecomposition::test_batched_decomposition | 2.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestCholeskyDecomposition::test_decomposition | 2.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_decomposition.py::TestCholeskyInvalid::test_decomposition | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_irregular_ellipsis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_irregular_ellipsis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_irregular_ellipsis3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_irregular_ellipsis4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_no_arguments | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_one_argument | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_not_string_subject | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_bad_argument | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_too_many_operands1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_too_many_operands2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_too_few_operands1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_too_many_dimension1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_too_many_dimension2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_too_many_dimension3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_too_few_dimension | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_char1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_char2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_char3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_output_subscripts1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_output_subscripts2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_output_subscripts3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_diagonal1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_diagonal2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_diagonal3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_dim_mismatch_char1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_dim_mismatch_ellipsis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_dim_mismatch_ellipsis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_dim_mismatch_ellipsis3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_arrow1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_arrow2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_arrow3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumError::test_invalid_arrow4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestListArgEinSumError::test_invalid_sub1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestListArgEinSumError::test_invalid_sub2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestListArgEinSumError::test_invalid_sub3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestListArgEinSumError::test_dim_mismatch1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestListArgEinSumError::test_dim_mismatch2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestListArgEinSumError::test_dim_mismatch3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestListArgEinSumError::test_too_many_dims1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestListArgEinSumError::test_too_many_dims2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestListArgEinSumError::test_too_many_dims3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_0_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_1_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_2_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ji'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_3_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 0, 'drop': False}, shape_a=(3, 3), subscripts='ii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_4_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 3), subscripts='jii->ij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_5_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 3), subscripts='iji->ij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_6_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 3), subscripts='...ii->...i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_7_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 3), subscripts='iii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_8_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='ijk->jik'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_9_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='ijk->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_10_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='ijk->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_11_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='kji->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_12_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='j...i->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_13_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 0, 'drop': False}, shape_a=(3,), subscripts='i->'}] | 9.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_14_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 0, 'drop': False}, shape_a=(3, 3), subscripts='ii'}] | 8.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_15_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='ijkj->kij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_16_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='ijij->ij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_17_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='jiji->ij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_18_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='ii...->...'}] | 10.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_19_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='i...i->...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_20_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='...ii->...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_21_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='j...i->...'}] | 10.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_22_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_23_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_24_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij->...ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_25_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij...->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_26_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='i...j->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_27_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 0, 'drop': False}, shape_a=(), subscripts=''}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_28_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 0, 'drop': False}, shape_a=(), subscripts='->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_29_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 0, 'drop': True}, shape_a=(2, 3), subscripts='ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_30_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 0, 'drop': True}, shape_a=(2, 3), subscripts='...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_31_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 0, 'drop': True}, shape_a=(1, 3), subscripts='ji'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_32_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 0, 'drop': True}, shape_a=(1, 1), subscripts='ii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_33_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 0, 'drop': True}, shape_a=(3, 3, 3), subscripts='jii->ij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_34_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 0, 'drop': True}, shape_a=(3, 3, 3), subscripts='iji->ij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_35_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), subscripts='...ii->...i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_36_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), subscripts='iii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_37_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 0, 'drop': True}, shape_a=(1, 3, 4), subscripts='ijk->jik'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_38_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), subscripts='ijk->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_39_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), subscripts='ijk->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_40_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 0, 'drop': True}, shape_a=(2, 3, 1), subscripts='kji->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_41_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 0, 'drop': True}, shape_a=(2, 1, 1), subscripts='j...i->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_42_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 0, 'drop': True}, shape_a=(3,), subscripts='i->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_43_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 0, 'drop': True}, shape_a=(3, 3), subscripts='ii'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_44_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 0, 'drop': True}, shape_a=(2, 2, 2, 2), subscripts='ijkj->kij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_45_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ijij->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_46_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='jiji->ij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_47_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 0, 'drop': True}, shape_a=(2, 2, 2, 2), subscripts='ii...->...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_48_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='i...i->...'}] | 2.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_49_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='...ii->...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_50_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='j...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_51_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1), subscripts='ij->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_52_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 0, 'drop': True}, shape_a=(2, 3), subscripts='ij->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_53_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 0, 'drop': True}, shape_a=(2, 3), subscripts='ij->...ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_54_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 0, 'drop': True}, shape_a=(1, 3), subscripts='ij...->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_55_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 0, 'drop': True}, shape_a=(2, 1), subscripts='i...j->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_56_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 0, 'drop': True}, shape_a=(), subscripts=''}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_57_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 0, 'drop': True}, shape_a=(), subscripts='->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_58_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_59_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_60_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ji'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_61_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 1, 'drop': False}, shape_a=(2, 2), subscripts='ii->i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_62_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 2), subscripts='jii->ij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_63_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 2), subscripts='iji->ij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_64_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 2), subscripts='...ii->...i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_65_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 2), subscripts='iii->i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_66_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='ijk->jik'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_67_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='ijk->kij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_68_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='ijk->ikj'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_69_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='kji->ikj'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_70_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='j...i->i...j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_71_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 1, 'drop': False}, shape_a=(2,), subscripts='i->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_72_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 1, 'drop': False}, shape_a=(2, 2), subscripts='ii'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_73_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='ijkj->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_74_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='ijij->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_75_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='jiji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_76_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='ii...->...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_77_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='i...i->...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_78_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='...ii->...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_79_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='j...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_80_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_81_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_82_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij->...ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_83_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij...->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_84_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='i...j->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_85_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 1, 'drop': False}, shape_a=(), subscripts=''}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_86_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 1, 'drop': False}, shape_a=(), subscripts='->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_87_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_88_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_89_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='ji'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_90_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='ii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_91_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 2), subscripts='jii->ij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_92_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 2), subscripts='iji->ij'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_93_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 2), subscripts='...ii->...i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_94_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 2), subscripts='iii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_95_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1), subscripts='ijk->jik'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_96_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1), subscripts='ijk->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_97_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 1, 'drop': True}, shape_a=(1, 2, 1), subscripts='ijk->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_98_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1), subscripts='kji->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_99_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 1, 'drop': True}, shape_a=(1, 2, 3), subscripts='j...i->i...j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_100_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 1, 'drop': True}, shape_a=(2,), subscripts='i->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_101_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='ii'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_102_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ijkj->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_103_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ijij->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_104_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='jiji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_105_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ii...->...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_106_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='i...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_107_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='...ii->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_108_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='j...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_109_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='ij->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_110_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='ij->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_111_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='ij->...ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_112_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='ij...->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_113_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='i...j->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_114_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 1, 'drop': True}, shape_a=(), subscripts=''}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_115_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 1, 'drop': True}, shape_a=(), subscripts='->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_116_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_117_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_118_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ji'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_119_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 2, 'drop': False}, shape_a=(1, 1), subscripts='ii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_120_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1), subscripts='jii->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_121_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1), subscripts='iji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_122_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1), subscripts='...ii->...i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_123_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1), subscripts='iii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_124_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='ijk->jik'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_125_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='ijk->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_126_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='ijk->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_127_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='kji->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_128_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='j...i->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_129_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 2, 'drop': False}, shape_a=(1,), subscripts='i->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_130_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 2, 'drop': False}, shape_a=(1, 1), subscripts='ii'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_131_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='ijkj->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_132_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='ijij->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_133_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='jiji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_134_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='ii...->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_135_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='i...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_136_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='...ii->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_137_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='j...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_138_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_139_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_140_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij->...ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_141_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij...->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_142_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='i...j->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_143_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 2, 'drop': False}, shape_a=(), subscripts=''}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_144_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 2, 'drop': False}, shape_a=(), subscripts='->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_145_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_146_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), subscripts='...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_147_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), subscripts='ji'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_148_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_149_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='jii->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_150_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='iji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_151_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='...ii->...i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_152_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='iii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_153_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 2), subscripts='ijk->jik'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_154_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 1), subscripts='ijk->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_155_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 1), subscripts='ijk->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_156_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='kji->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_157_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 2), subscripts='j...i->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_158_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 2, 'drop': True}, shape_a=(1,), subscripts='i->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_159_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ii'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_160_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='ijkj->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_161_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='ijij->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_162_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='jiji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_163_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ii...->...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_164_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='i...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_165_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='...ii->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_166_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='j...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_167_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), subscripts='ij->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_168_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ij->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_169_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ij->...ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_170_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), subscripts='ij...->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_171_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='i...j->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_172_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 2, 'drop': True}, shape_a=(), subscripts=''}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary[_param_173_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 2, 'drop': True}, shape_a=(), subscripts='->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_0_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_1_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_2_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ji'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_3_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 0, 'drop': False}, shape_a=(3, 3), subscripts='ii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_4_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 3), subscripts='jii->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_5_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 3), subscripts='iji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_6_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 3), subscripts='...ii->...i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_7_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 3), subscripts='iii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_8_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='ijk->jik'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_9_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='ijk->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_10_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='ijk->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_11_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='kji->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_12_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='j...i->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_13_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 0, 'drop': False}, shape_a=(3,), subscripts='i->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_14_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 0, 'drop': False}, shape_a=(3, 3), subscripts='ii'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_15_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='ijkj->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_16_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='ijij->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_17_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='jiji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_18_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='ii...->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_19_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='i...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_20_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='...ii->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_21_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='j...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_22_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_23_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_24_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij->...ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_25_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij...->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_26_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='i...j->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_27_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 0, 'drop': False}, shape_a=(), subscripts=''}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_28_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 0, 'drop': False}, shape_a=(), subscripts='->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_29_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 0, 'drop': True}, shape_a=(2, 3), subscripts='ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_30_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 0, 'drop': True}, shape_a=(2, 3), subscripts='...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_31_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 0, 'drop': True}, shape_a=(1, 3), subscripts='ji'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_32_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 0, 'drop': True}, shape_a=(1, 1), subscripts='ii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_33_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 0, 'drop': True}, shape_a=(3, 3, 3), subscripts='jii->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_34_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 0, 'drop': True}, shape_a=(3, 3, 3), subscripts='iji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_35_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), subscripts='...ii->...i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_36_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), subscripts='iii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_37_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 0, 'drop': True}, shape_a=(1, 3, 4), subscripts='ijk->jik'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_38_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), subscripts='ijk->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_39_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), subscripts='ijk->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_40_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 0, 'drop': True}, shape_a=(2, 3, 1), subscripts='kji->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_41_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 0, 'drop': True}, shape_a=(2, 1, 1), subscripts='j...i->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_42_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 0, 'drop': True}, shape_a=(3,), subscripts='i->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_43_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 0, 'drop': True}, shape_a=(3, 3), subscripts='ii'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_44_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 0, 'drop': True}, shape_a=(2, 2, 2, 2), subscripts='ijkj->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_45_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ijij->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_46_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='jiji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_47_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 0, 'drop': True}, shape_a=(2, 2, 2, 2), subscripts='ii...->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_48_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='i...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_49_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='...ii->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_50_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='j...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_51_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1), subscripts='ij->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_52_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 0, 'drop': True}, shape_a=(2, 3), subscripts='ij->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_53_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 0, 'drop': True}, shape_a=(2, 3), subscripts='ij->...ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_54_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 0, 'drop': True}, shape_a=(1, 3), subscripts='ij...->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_55_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 0, 'drop': True}, shape_a=(2, 1), subscripts='i...j->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_56_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 0, 'drop': True}, shape_a=(), subscripts=''}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_57_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 0, 'drop': True}, shape_a=(), subscripts='->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_58_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_59_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_60_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ji'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_61_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 1, 'drop': False}, shape_a=(2, 2), subscripts='ii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_62_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 2), subscripts='jii->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_63_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 2), subscripts='iji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_64_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 2), subscripts='...ii->...i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_65_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 2), subscripts='iii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_66_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='ijk->jik'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_67_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='ijk->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_68_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='ijk->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_69_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='kji->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_70_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='j...i->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_71_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 1, 'drop': False}, shape_a=(2,), subscripts='i->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_72_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 1, 'drop': False}, shape_a=(2, 2), subscripts='ii'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_73_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='ijkj->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_74_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='ijij->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_75_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='jiji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_76_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='ii...->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_77_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='i...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_78_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='...ii->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_79_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='j...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_80_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_81_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_82_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij->...ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_83_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij...->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_84_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='i...j->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_85_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 1, 'drop': False}, shape_a=(), subscripts=''}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_86_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 1, 'drop': False}, shape_a=(), subscripts='->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_87_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_88_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_89_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='ji'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_90_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='ii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_91_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 2), subscripts='jii->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_92_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 2), subscripts='iji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_93_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 2), subscripts='...ii->...i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_94_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 2), subscripts='iii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_95_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1), subscripts='ijk->jik'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_96_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1), subscripts='ijk->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_97_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 1, 'drop': True}, shape_a=(1, 2, 1), subscripts='ijk->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_98_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1), subscripts='kji->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_99_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 1, 'drop': True}, shape_a=(1, 2, 3), subscripts='j...i->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_100_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 1, 'drop': True}, shape_a=(2,), subscripts='i->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_101_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='ii'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_102_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ijkj->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_103_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ijij->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_104_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='jiji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_105_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ii...->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_106_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='i...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_107_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='...ii->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_108_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='j...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_109_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='ij->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_110_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='ij->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_111_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='ij->...ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_112_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='ij...->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_113_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='i...j->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_114_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 1, 'drop': True}, shape_a=(), subscripts=''}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_115_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 1, 'drop': True}, shape_a=(), subscripts='->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_116_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_117_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_118_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ji'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_119_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 2, 'drop': False}, shape_a=(1, 1), subscripts='ii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_120_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1), subscripts='jii->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_121_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1), subscripts='iji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_122_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1), subscripts='...ii->...i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_123_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1), subscripts='iii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_124_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='ijk->jik'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_125_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='ijk->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_126_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='ijk->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_127_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='kji->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_128_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='j...i->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_129_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 2, 'drop': False}, shape_a=(1,), subscripts='i->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_130_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 2, 'drop': False}, shape_a=(1, 1), subscripts='ii'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_131_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='ijkj->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_132_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='ijij->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_133_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='jiji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_134_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='ii...->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_135_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='i...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_136_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='...ii->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_137_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='j...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_138_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_139_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_140_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij->...ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_141_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij...->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_142_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='i...j->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_143_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 2, 'drop': False}, shape_a=(), subscripts=''}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_144_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 2, 'drop': False}, shape_a=(), subscripts='->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_145_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_146_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), subscripts='...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_147_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), subscripts='ji'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_148_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_149_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='jii->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_150_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='iji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_151_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='...ii->...i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_152_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='iii->i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_153_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 2), subscripts='ijk->jik'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_154_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 1), subscripts='ijk->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_155_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 1), subscripts='ijk->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_156_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='kji->ikj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_157_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 2), subscripts='j...i->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_158_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 2, 'drop': True}, shape_a=(1,), subscripts='i->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_159_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ii'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_160_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='ijkj->kij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_161_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='ijij->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_162_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='jiji->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_163_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ii...->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_164_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='i...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_165_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='...ii->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_166_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='j...i->...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_167_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), subscripts='ij->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_168_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ij->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_169_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ij->...ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_170_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), subscripts='ij...->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_171_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='i...j->ij'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_172_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 2, 'drop': True}, shape_a=(), subscripts=''}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_views[_param_173_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 2, 'drop': True}, shape_a=(), subscripts='->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_0_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_1_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_2_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ji'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_3_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 0, 'drop': False}, shape_a=(3, 3), subscripts='ii->i'}] | 0.67 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_4_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 3), subscripts='jii->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_5_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 3), subscripts='iji->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_6_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 3), subscripts='...ii->...i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_7_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 3), subscripts='iii->i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_8_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='ijk->jik'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_9_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='ijk->kij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_10_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='ijk->ikj'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_11_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='kji->ikj'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_12_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), subscripts='j...i->i...j'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_13_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 0, 'drop': False}, shape_a=(3,), subscripts='i->'}] | 2.02 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_14_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 0, 'drop': False}, shape_a=(3, 3), subscripts='ii'}] | 2.02 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_15_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='ijkj->kij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_16_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='ijij->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_17_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='jiji->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_18_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='ii...->...'}] | 2.10 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_19_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='i...i->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_20_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='...ii->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_21_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 0, 'drop': False}, shape_a=(2, 2, 2, 2), subscripts='j...i->...'}] | 2.13 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_22_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij->ij...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_23_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij->i...j'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_24_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij->...ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_25_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='ij...->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_26_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), subscripts='i...j->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_27_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 0, 'drop': False}, shape_a=(), subscripts=''}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_28_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 0, 'drop': False}, shape_a=(), subscripts='->'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_29_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 0, 'drop': True}, shape_a=(2, 3), subscripts='ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_30_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 0, 'drop': True}, shape_a=(2, 3), subscripts='...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_31_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 0, 'drop': True}, shape_a=(1, 3), subscripts='ji'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_32_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 0, 'drop': True}, shape_a=(1, 1), subscripts='ii->i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_33_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 0, 'drop': True}, shape_a=(3, 3, 3), subscripts='jii->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_34_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 0, 'drop': True}, shape_a=(3, 3, 3), subscripts='iji->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_35_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), subscripts='...ii->...i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_36_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), subscripts='iii->i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_37_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 0, 'drop': True}, shape_a=(1, 3, 4), subscripts='ijk->jik'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_38_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), subscripts='ijk->kij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_39_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), subscripts='ijk->ikj'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_40_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 0, 'drop': True}, shape_a=(2, 3, 1), subscripts='kji->ikj'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_41_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 0, 'drop': True}, shape_a=(2, 1, 1), subscripts='j...i->i...j'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_42_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 0, 'drop': True}, shape_a=(3,), subscripts='i->'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_43_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 0, 'drop': True}, shape_a=(3, 3), subscripts='ii'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_44_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 0, 'drop': True}, shape_a=(2, 2, 2, 2), subscripts='ijkj->kij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_45_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ijij->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_46_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='jiji->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_47_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 0, 'drop': True}, shape_a=(2, 2, 2, 2), subscripts='ii...->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_48_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='i...i->...'}] | 2.02 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_49_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='...ii->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_50_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='j...i->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_51_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1), subscripts='ij->ij...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_52_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 0, 'drop': True}, shape_a=(2, 3), subscripts='ij->i...j'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_53_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 0, 'drop': True}, shape_a=(2, 3), subscripts='ij->...ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_54_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 0, 'drop': True}, shape_a=(1, 3), subscripts='ij...->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_55_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 0, 'drop': True}, shape_a=(2, 1), subscripts='i...j->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_56_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 0, 'drop': True}, shape_a=(), subscripts=''}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_57_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 0, 'drop': True}, shape_a=(), subscripts='->'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_58_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_59_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_60_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ji'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_61_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 1, 'drop': False}, shape_a=(2, 2), subscripts='ii->i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_62_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 2), subscripts='jii->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_63_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 2), subscripts='iji->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_64_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 2), subscripts='...ii->...i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_65_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 2), subscripts='iii->i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_66_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='ijk->jik'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_67_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='ijk->kij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_68_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='ijk->ikj'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_69_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='kji->ikj'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_70_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), subscripts='j...i->i...j'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_71_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 1, 'drop': False}, shape_a=(2,), subscripts='i->'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_72_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 1, 'drop': False}, shape_a=(2, 2), subscripts='ii'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_73_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='ijkj->kij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_74_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='ijij->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_75_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='jiji->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_76_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='ii...->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_77_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='i...i->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_78_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='...ii->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_79_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1), subscripts='j...i->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_80_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij->ij...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_81_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij->i...j'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_82_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij->...ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_83_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='ij...->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_84_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), subscripts='i...j->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_85_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 1, 'drop': False}, shape_a=(), subscripts=''}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_86_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 1, 'drop': False}, shape_a=(), subscripts='->'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_87_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_88_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_89_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='ji'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_90_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='ii->i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_91_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 2), subscripts='jii->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_92_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 2), subscripts='iji->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_93_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 2), subscripts='...ii->...i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_94_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 2), subscripts='iii->i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_95_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1), subscripts='ijk->jik'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_96_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1), subscripts='ijk->kij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_97_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 1, 'drop': True}, shape_a=(1, 2, 1), subscripts='ijk->ikj'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_98_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1), subscripts='kji->ikj'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_99_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 1, 'drop': True}, shape_a=(1, 2, 3), subscripts='j...i->i...j'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_100_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 1, 'drop': True}, shape_a=(2,), subscripts='i->'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_101_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='ii'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_102_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ijkj->kij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_103_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ijij->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_104_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='jiji->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_105_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ii...->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_106_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='i...i->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_107_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='...ii->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_108_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='j...i->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_109_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='ij->ij...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_110_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='ij->i...j'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_111_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), subscripts='ij->...ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_112_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='ij...->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_113_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), subscripts='i...j->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_114_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 1, 'drop': True}, shape_a=(), subscripts=''}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_115_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 1, 'drop': True}, shape_a=(), subscripts='->'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_116_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_117_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_118_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ji'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_119_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 2, 'drop': False}, shape_a=(1, 1), subscripts='ii->i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_120_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1), subscripts='jii->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_121_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1), subscripts='iji->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_122_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1), subscripts='...ii->...i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_123_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1), subscripts='iii->i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_124_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='ijk->jik'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_125_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='ijk->kij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_126_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='ijk->ikj'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_127_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='kji->ikj'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_128_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), subscripts='j...i->i...j'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_129_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 2, 'drop': False}, shape_a=(1,), subscripts='i->'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_130_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 2, 'drop': False}, shape_a=(1, 1), subscripts='ii'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_131_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='ijkj->kij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_132_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='ijij->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_133_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='jiji->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_134_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='ii...->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_135_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='i...i->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_136_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='...ii->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_137_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 2, 'drop': False}, shape_a=(0, 0, 0, 0), subscripts='j...i->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_138_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij->ij...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_139_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij->i...j'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_140_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij->...ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_141_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='ij...->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_142_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), subscripts='i...j->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_143_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 2, 'drop': False}, shape_a=(), subscripts=''}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_144_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 2, 'drop': False}, shape_a=(), subscripts='->'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_145_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_146_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': '...'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), subscripts='...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_147_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ji'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), subscripts='ji'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_148_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii->i'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ii->i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_149_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'jii->ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='jii->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_150_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iji->ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='iji->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_151_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': '...ii->...i'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='...ii->...i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_152_{_raw_params={'orig': {'shape_a': (3, 3, 3), 'subscripts': 'iii->i'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='iii->i'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_153_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->jik'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 2), subscripts='ijk->jik'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_154_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->kij'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 1), subscripts='ijk->kij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_155_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'ijk->ikj'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 1), subscripts='ijk->ikj'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_156_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'kji->ikj'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), subscripts='kji->ikj'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_157_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'subscripts': 'j...i->i...j'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 2), subscripts='j...i->i...j'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_158_{_raw_params={'orig': {'shape_a': (3,), 'subscripts': 'i->'}, 'dec': 2, 'drop': True}, shape_a=(1,), subscripts='i->'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_159_{_raw_params={'orig': {'shape_a': (3, 3), 'subscripts': 'ii'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ii'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_160_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijkj->kij'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='ijkj->kij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_161_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ijij->ij'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='ijij->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_162_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'jiji->ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='jiji->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_163_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'ii...->...'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1, 1), subscripts='ii...->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_164_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'i...i->...'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='i...i->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_165_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': '...ii->...'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='...ii->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_166_{_raw_params={'orig': {'shape_a': (2, 2, 2, 2), 'subscripts': 'j...i->...'}, 'dec': 2, 'drop': True}, shape_a=(0, 0, 0, 0), subscripts='j...i->...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_167_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->ij...'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), subscripts='ij->ij...'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_168_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->i...j'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ij->i...j'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_169_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij->...ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='ij->...ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_170_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'ij...->ij'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), subscripts='ij...->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_171_{_raw_params={'orig': {'shape_a': (2, 3), 'subscripts': 'i...j->ij'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), subscripts='i...j->ij'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_172_{_raw_params={'orig': {'shape_a': (), 'subscripts': ''}, 'dec': 2, 'drop': True}, shape_a=(), subscripts=''}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperation::test_einsum_unary_dtype[_param_173_{_raw_params={'orig': {'shape_a': (), 'subscripts': '->'}, 'dec': 2, 'drop': True}, shape_a=(), subscripts='->'}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype_a = <class 'numpy.int32'>, dtype_out = <class 'numpy.uint32'> () skipped: dtype_a = <class 'numpy.uint16'>, dtype_out = <class 'numpy.uint8'> () skipped: dtype_a = <class 'numpy.uint64'>, dtype_out = <class 'numpy.bool_'> () skipped: dtype_a = <class 'numpy.uint32'>, dtype_out = <class 'numpy.int16'> () skipped: dtype_a = <class 'numpy.int8'>, dtype_out = <class 'numpy.uint64'> () skipped: dtype_a = <class 'numpy.longlong'>, dtype_out = <class 'numpy.float16'> () skipped: dtype_a = <class 'numpy.float16'>, dtype_out = <class 'numpy.int8'> () skipped: dtype_a = <class 'numpy.ulonglong'>, dtype_out = <class 'numpy.int32'> () skipped: dtype_a = <class 'numpy.int64'>, dtype_out = <class 'numpy.uint16'> () skipped: dtype_a = <class 'numpy.float64'>, dtype_out = <class 'numpy.ulonglong'> () | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperationWithScalar::test_scalar_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumUnaryOperationWithScalar::test_scalar_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_0_{_raw_params={'orig': {'shape_a': (3,), 'shape_b': (3,), 'subscripts': 'i,i'}, 'dec': 0, 'drop': False}, shape_a=(3,), shape_b=(3,), subscripts='i,i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_1_{_raw_params={'orig': {'shape_a': (2,), 'shape_b': (3,), 'subscripts': 'i,j'}, 'dec': 0, 'drop': False}, shape_a=(2,), shape_b=(3,), subscripts='i,j'}] | 5.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_2_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3,), 'subscripts': 'ij,j'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), shape_b=(3,), subscripts='ij,j'}] | 2.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_3_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (2,), 'subscripts': 'ij,i'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), shape_b=(2,), subscripts='ij,i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_4_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3, 4), 'subscripts': 'ij,jk'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), shape_b=(3, 4), subscripts='ij,jk'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_5_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 3...pts': 'ijk, jil -> kl'}, 'dec': 0, 'drop': False}, shape_a=(3, 4, 2), shape_b=(4, 3, 2), subscripts='ijk, jil -> kl'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_6_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 2...s': 'i...,...k->ki...'}, 'dec': 0, 'drop': False}, shape_a=(3, 4, 2), shape_b=(4, 2, 3), subscripts='i...,...k->ki...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_7_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 3...': 'ij...,ji...->i...'}, 'dec': 0, 'drop': False}, shape_a=(3, 4, 2), shape_b=(4, 3, 2), subscripts='ij...,ji...->i...'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_8_{_raw_params={'orig': {'shape_a': (2, 3, 2, 4), 'shape_b': (3...ripts': 'ijil,jkk->kj'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 2, 4), shape_b=(3, 2, 2), subscripts='ijil,jkk->kj'}] | 8.41 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_9_{_raw_params={'orig': {'shape_a': (2, 4, 2, 3), 'shape_b': (3...: 'i...ij,ji...->...j'}, 'dec': 0, 'drop': False}, shape_a=(2, 4, 2, 3), shape_b=(3, 2, 4), subscripts='i...ij,ji...->...j'}] | 6.19 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_10_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...': 'ij...,j...->ij...'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), shape_b=(3,), subscripts='ij...,j...->ij...'}] | 8.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_11_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...': 'ij...,...j->ij...'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), shape_b=(3,), subscripts='ij...,...j->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_12_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...pts': 'ij...,j->ij...'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), shape_b=(3,), subscripts='ij...,j->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_13_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...s': 'ik...,k...->i...'}, 'dec': 0, 'drop': False}, shape_a=(4, 3), shape_b=(3, 2), subscripts='ik...,k...->i...'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_14_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...: 'ik...,...kj->i...j'}, 'dec': 0, 'drop': False}, shape_a=(4, 3), shape_b=(3, 2), subscripts='ik...,...kj->i...j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_15_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), 'subscripts': '...k,kj'}, 'dec': 0, 'drop': False}, shape_a=(4, 3), shape_b=(3, 2), subscripts='...k,kj'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_16_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...ipts': 'ik,k...->i...'}, 'dec': 0, 'drop': False}, shape_a=(4, 3), shape_b=(3, 2), subscripts='ik,k...->i...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_17_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...'subscripts': 'ijkl,k'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4, 5), shape_b=(4,), subscripts='ijkl,k'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_18_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...subscripts': '...kl,k'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4, 5), shape_b=(4,), subscripts='...kl,k'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_19_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...scripts': '...kl,k...'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4, 5), shape_b=(4,), subscripts='...kl,k...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_20_{_raw_params={'orig': {'shape_a': (1, 1, 1, 2, 3, 2), 'shape_...': '...lmn,lmno->...o'}, 'dec': 0, 'drop': False}, shape_a=(1, 1, 1, 2, 3, 2), shape_b=(2, 3, 2, 2), subscripts='...lmn,lmno->...o'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_21_{_raw_params={'orig': {'shape_a': (3,), 'shape_b': (3,), 'subscripts': 'i,i'}, 'dec': 0, 'drop': True}, shape_a=(3,), shape_b=(3,), subscripts='i,i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_22_{_raw_params={'orig': {'shape_a': (2,), 'shape_b': (3,), 'subscripts': 'i,j'}, 'dec': 0, 'drop': True}, shape_a=(1,), shape_b=(3,), subscripts='i,j'}] | 3.90 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_23_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3,), 'subscripts': 'ij,j'}, 'dec': 0, 'drop': True}, shape_a=(1, 1), shape_b=(1,), subscripts='ij,j'}] | 11.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_24_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (2,), 'subscripts': 'ij,i'}, 'dec': 0, 'drop': True}, shape_a=(1, 1), shape_b=(2,), subscripts='ij,i'}] | 5.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_25_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3, 4), 'subscripts': 'ij,jk'}, 'dec': 0, 'drop': True}, shape_a=(2, 1), shape_b=(1, 1), subscripts='ij,jk'}] | 9.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_26_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 3...ipts': 'ijk, jil -> kl'}, 'dec': 0, 'drop': True}, shape_a=(3, 4, 2), shape_b=(1, 1, 1), subscripts='ijk, jil -> kl'}] | 6.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_27_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 2...ts': 'i...,...k->ki...'}, 'dec': 0, 'drop': True}, shape_a=(1, 4, 2), shape_b=(4, 2, 3), subscripts='i...,...k->ki...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_28_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 3...s': 'ij...,ji...->i...'}, 'dec': 0, 'drop': True}, shape_a=(3, 4, 2), shape_b=(4, 3, 1), subscripts='ij...,ji...->i...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_29_{_raw_params={'orig': {'shape_a': (2, 3, 2, 4), 'shape_b': (3...cripts': 'ijil,jkk->kj'}, 'dec': 0, 'drop': True}, shape_a=(2, 3, 2, 4), shape_b=(1, 2, 2), subscripts='ijil,jkk->kj'}] | 3.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_30_{_raw_params={'orig': {'shape_a': (2, 4, 2, 3), 'shape_b': (3...': 'i...ij,ji...->...j'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), shape_b=(1, 2, 4), subscripts='i...ij,ji...->...j'}] | 4.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_31_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...s': 'ij...,j...->ij...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), shape_b=(1,), subscripts='ij...,j...->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_32_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...s': 'ij...,...j->ij...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 4), shape_b=(3,), subscripts='ij...,...j->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_33_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...ipts': 'ij...,j->ij...'}, 'dec': 0, 'drop': True}, shape_a=(1, 3, 1), shape_b=(3,), subscripts='ij...,j->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_34_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...ts': 'ik...,k...->i...'}, 'dec': 0, 'drop': True}, shape_a=(1, 3), shape_b=(3, 2), subscripts='ik...,k...->i...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_35_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...': 'ik...,...kj->i...j'}, 'dec': 0, 'drop': True}, shape_a=(1, 1), shape_b=(3, 2), subscripts='ik...,...kj->i...j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_36_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), 'subscripts': '...k,kj'}, 'dec': 0, 'drop': True}, shape_a=(4, 3), shape_b=(3, 2), subscripts='...k,kj'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_37_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...ripts': 'ik,k...->i...'}, 'dec': 0, 'drop': True}, shape_a=(4, 3), shape_b=(3, 1), subscripts='ik,k...->i...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_38_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4,), 'subscripts': 'ijkl,k'}, 'dec': 0, 'drop': True}, shape_a=(2, 3, 4, 1), shape_b=(1,), subscripts='ijkl,k'}] | 12.59 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_39_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...'subscripts': '...kl,k'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1), shape_b=(4,), subscripts='...kl,k'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_40_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...bscripts': '...kl,k...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 4, 5), shape_b=(1,), subscripts='...kl,k...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_41_{_raw_params={'orig': {'shape_a': (1, 1, 1, 2, 3, 2), 'shape_...s': '...lmn,lmno->...o'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1, 1, 3, 1), shape_b=(2, 1, 2, 2), subscripts='...lmn,lmno->...o'}] | 5.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_42_{_raw_params={'orig': {'shape_a': (3,), 'shape_b': (3,), 'subscripts': 'i,i'}, 'dec': 1, 'drop': False}, shape_a=(2,), shape_b=(2,), subscripts='i,i'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_43_{_raw_params={'orig': {'shape_a': (2,), 'shape_b': (3,), 'subscripts': 'i,j'}, 'dec': 1, 'drop': False}, shape_a=(1,), shape_b=(2,), subscripts='i,j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_44_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3,), 'subscripts': 'ij,j'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), shape_b=(2,), subscripts='ij,j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_45_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (2,), 'subscripts': 'ij,i'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), shape_b=(1,), subscripts='ij,i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_46_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3, 4), 'subscripts': 'ij,jk'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), shape_b=(2, 3), subscripts='ij,jk'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_47_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 3...pts': 'ijk, jil -> kl'}, 'dec': 1, 'drop': False}, shape_a=(2, 3, 1), shape_b=(3, 2, 1), subscripts='ijk, jil -> kl'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_48_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 2...s': 'i...,...k->ki...'}, 'dec': 1, 'drop': False}, shape_a=(2, 3, 1), shape_b=(3, 1, 2), subscripts='i...,...k->ki...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_49_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 3...': 'ij...,ji...->i...'}, 'dec': 1, 'drop': False}, shape_a=(2, 3, 1), shape_b=(3, 2, 1), subscripts='ij...,ji...->i...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_50_{_raw_params={'orig': {'shape_a': (2, 3, 2, 4), 'shape_b': (3...ripts': 'ijil,jkk->kj'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 1, 3), shape_b=(2, 1, 1), subscripts='ijil,jkk->kj'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_51_{_raw_params={'orig': {'shape_a': (2, 4, 2, 3), 'shape_b': (3...: 'i...ij,ji...->...j'}, 'dec': 1, 'drop': False}, shape_a=(1, 3, 1, 2), shape_b=(2, 1, 3), subscripts='i...ij,ji...->...j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_52_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...': 'ij...,j...->ij...'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), shape_b=(2,), subscripts='ij...,j...->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_53_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...': 'ij...,...j->ij...'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), shape_b=(2,), subscripts='ij...,...j->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_54_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...pts': 'ij...,j->ij...'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), shape_b=(2,), subscripts='ij...,j->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_55_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...s': 'ik...,k...->i...'}, 'dec': 1, 'drop': False}, shape_a=(3, 2), shape_b=(2, 1), subscripts='ik...,k...->i...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_56_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...: 'ik...,...kj->i...j'}, 'dec': 1, 'drop': False}, shape_a=(3, 2), shape_b=(2, 1), subscripts='ik...,...kj->i...j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_57_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), 'subscripts': '...k,kj'}, 'dec': 1, 'drop': False}, shape_a=(3, 2), shape_b=(2, 1), subscripts='...k,kj'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_58_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...ipts': 'ik,k...->i...'}, 'dec': 1, 'drop': False}, shape_a=(3, 2), shape_b=(2, 1), subscripts='ik,k...->i...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_59_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...'subscripts': 'ijkl,k'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3, 4), shape_b=(3,), subscripts='ijkl,k'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_60_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...subscripts': '...kl,k'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3, 4), shape_b=(3,), subscripts='...kl,k'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_61_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...scripts': '...kl,k...'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3, 4), shape_b=(3,), subscripts='...kl,k...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_62_{_raw_params={'orig': {'shape_a': (1, 1, 1, 2, 3, 2), 'shape_...': '...lmn,lmno->...o'}, 'dec': 1, 'drop': False}, shape_a=(1, 1, 1, 1, 2, 1), shape_b=(1, 2, 1, 1), subscripts='...lmn,lmno->...o'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_63_{_raw_params={'orig': {'shape_a': (3,), 'shape_b': (3,), 'subscripts': 'i,i'}, 'dec': 1, 'drop': True}, shape_a=(1,), shape_b=(1,), subscripts='i,i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_64_{_raw_params={'orig': {'shape_a': (2,), 'shape_b': (3,), 'subscripts': 'i,j'}, 'dec': 1, 'drop': True}, shape_a=(1,), shape_b=(2,), subscripts='i,j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_65_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3,), 'subscripts': 'ij,j'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), shape_b=(2,), subscripts='ij,j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_66_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (2,), 'subscripts': 'ij,i'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), shape_b=(1,), subscripts='ij,i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_67_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3, 4), 'subscripts': 'ij,jk'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), shape_b=(1, 1), subscripts='ij,jk'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_68_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 3...ipts': 'ijk, jil -> kl'}, 'dec': 1, 'drop': True}, shape_a=(2, 3, 1), shape_b=(3, 2, 1), subscripts='ijk, jil -> kl'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_69_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 2...ts': 'i...,...k->ki...'}, 'dec': 1, 'drop': True}, shape_a=(2, 3, 1), shape_b=(1, 1, 1), subscripts='i...,...k->ki...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_70_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 3...s': 'ij...,ji...->i...'}, 'dec': 1, 'drop': True}, shape_a=(2, 3, 1), shape_b=(1, 2, 1), subscripts='ij...,ji...->i...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_71_{_raw_params={'orig': {'shape_a': (2, 3, 2, 4), 'shape_b': (3...cripts': 'ijil,jkk->kj'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), shape_b=(1, 1, 1), subscripts='ijil,jkk->kj'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_72_{_raw_params={'orig': {'shape_a': (2, 4, 2, 3), 'shape_b': (3...': 'i...ij,ji...->...j'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1), shape_b=(2, 1, 3), subscripts='i...ij,ji...->...j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_73_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...s': 'ij...,j...->ij...'}, 'dec': 1, 'drop': True}, shape_a=(1, 2, 3), shape_b=(1,), subscripts='ij...,j...->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_74_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...s': 'ij...,...j->ij...'}, 'dec': 1, 'drop': True}, shape_a=(1, 2, 3), shape_b=(1,), subscripts='ij...,...j->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_75_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...ipts': 'ij...,j->ij...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1), shape_b=(1,), subscripts='ij...,j->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_76_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...ts': 'ik...,k...->i...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1), shape_b=(1, 1), subscripts='ik...,k...->i...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_77_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...': 'ik...,...kj->i...j'}, 'dec': 1, 'drop': True}, shape_a=(3, 1), shape_b=(1, 1), subscripts='ik...,...kj->i...j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_78_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), 'subscripts': '...k,kj'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), shape_b=(1, 1), subscripts='...k,kj'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_79_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...ripts': 'ik,k...->i...'}, 'dec': 1, 'drop': True}, shape_a=(3, 2), shape_b=(2, 1), subscripts='ik,k...->i...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_80_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4,), 'subscripts': 'ijkl,k'}, 'dec': 1, 'drop': True}, shape_a=(1, 2, 3, 4), shape_b=(3,), subscripts='ijkl,k'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_81_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...'subscripts': '...kl,k'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 4), shape_b=(1,), subscripts='...kl,k'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_82_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...bscripts': '...kl,k...'}, 'dec': 1, 'drop': True}, shape_a=(1, 2, 1, 1), shape_b=(3,), subscripts='...kl,k...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_83_{_raw_params={'orig': {'shape_a': (1, 1, 1, 2, 3, 2), 'shape_...s': '...lmn,lmno->...o'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1, 1, 2, 1), shape_b=(1, 2, 1, 1), subscripts='...lmn,lmno->...o'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_84_{_raw_params={'orig': {'shape_a': (3,), 'shape_b': (3,), 'subscripts': 'i,i'}, 'dec': 2, 'drop': False}, shape_a=(1,), shape_b=(1,), subscripts='i,i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_85_{_raw_params={'orig': {'shape_a': (2,), 'shape_b': (3,), 'subscripts': 'i,j'}, 'dec': 2, 'drop': False}, shape_a=(0,), shape_b=(1,), subscripts='i,j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_86_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3,), 'subscripts': 'ij,j'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), shape_b=(1,), subscripts='ij,j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_87_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (2,), 'subscripts': 'ij,i'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), shape_b=(0,), subscripts='ij,i'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_88_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3, 4), 'subscripts': 'ij,jk'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), shape_b=(1, 2), subscripts='ij,jk'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_89_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 3...pts': 'ijk, jil -> kl'}, 'dec': 2, 'drop': False}, shape_a=(1, 2, 0), shape_b=(2, 1, 0), subscripts='ijk, jil -> kl'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_90_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 2...s': 'i...,...k->ki...'}, 'dec': 2, 'drop': False}, shape_a=(1, 2, 0), shape_b=(2, 0, 1), subscripts='i...,...k->ki...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_91_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 3...': 'ij...,ji...->i...'}, 'dec': 2, 'drop': False}, shape_a=(1, 2, 0), shape_b=(2, 1, 0), subscripts='ij...,ji...->i...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_92_{_raw_params={'orig': {'shape_a': (2, 3, 2, 4), 'shape_b': (3...ripts': 'ijil,jkk->kj'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 0, 2), shape_b=(1, 0, 0), subscripts='ijil,jkk->kj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_93_{_raw_params={'orig': {'shape_a': (2, 4, 2, 3), 'shape_b': (3...: 'i...ij,ji...->...j'}, 'dec': 2, 'drop': False}, shape_a=(0, 2, 0, 1), shape_b=(1, 0, 2), subscripts='i...ij,ji...->...j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_94_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...': 'ij...,j...->ij...'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), shape_b=(1,), subscripts='ij...,j...->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_95_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...': 'ij...,...j->ij...'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), shape_b=(1,), subscripts='ij...,...j->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_96_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...pts': 'ij...,j->ij...'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), shape_b=(1,), subscripts='ij...,j->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_97_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...s': 'ik...,k...->i...'}, 'dec': 2, 'drop': False}, shape_a=(2, 1), shape_b=(1, 0), subscripts='ik...,k...->i...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_98_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...: 'ik...,...kj->i...j'}, 'dec': 2, 'drop': False}, shape_a=(2, 1), shape_b=(1, 0), subscripts='ik...,...kj->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_99_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), 'subscripts': '...k,kj'}, 'dec': 2, 'drop': False}, shape_a=(2, 1), shape_b=(1, 0), subscripts='...k,kj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_100_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...ipts': 'ik,k...->i...'}, 'dec': 2, 'drop': False}, shape_a=(2, 1), shape_b=(1, 0), subscripts='ik,k...->i...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_101_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...'subscripts': 'ijkl,k'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2, 3), shape_b=(2,), subscripts='ijkl,k'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_102_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...subscripts': '...kl,k'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2, 3), shape_b=(2,), subscripts='...kl,k'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_103_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...scripts': '...kl,k...'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2, 3), shape_b=(2,), subscripts='...kl,k...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_104_{_raw_params={'orig': {'shape_a': (1, 1, 1, 2, 3, 2), 'shape_...': '...lmn,lmno->...o'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 1, 0, 1, 0), shape_b=(0, 1, 0, 0), subscripts='...lmn,lmno->...o'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_105_{_raw_params={'orig': {'shape_a': (3,), 'shape_b': (3,), 'subscripts': 'i,i'}, 'dec': 2, 'drop': True}, shape_a=(1,), shape_b=(1,), subscripts='i,i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_106_{_raw_params={'orig': {'shape_a': (2,), 'shape_b': (3,), 'subscripts': 'i,j'}, 'dec': 2, 'drop': True}, shape_a=(1,), shape_b=(1,), subscripts='i,j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_107_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3,), 'subscripts': 'ij,j'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), shape_b=(1,), subscripts='ij,j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_108_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (2,), 'subscripts': 'ij,i'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), shape_b=(0,), subscripts='ij,i'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_109_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3, 4), 'subscripts': 'ij,jk'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), shape_b=(1, 1), subscripts='ij,jk'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_110_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 3...ipts': 'ijk, jil -> kl'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), shape_b=(1, 1, 0), subscripts='ijk, jil -> kl'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_111_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 2...ts': 'i...,...k->ki...'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), shape_b=(2, 1, 1), subscripts='i...,...k->ki...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_112_{_raw_params={'orig': {'shape_a': (3, 4, 2), 'shape_b': (4, 3...s': 'ij...,ji...->i...'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), shape_b=(2, 1, 0), subscripts='ij...,ji...->i...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_113_{_raw_params={'orig': {'shape_a': (2, 3, 2, 4), 'shape_b': (3...cripts': 'ijil,jkk->kj'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1, 1), shape_b=(1, 1, 1), subscripts='ijil,jkk->kj'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_114_{_raw_params={'orig': {'shape_a': (2, 4, 2, 3), 'shape_b': (3...': 'i...ij,ji...->...j'}, 'dec': 2, 'drop': True}, shape_a=(0, 2, 0, 1), shape_b=(1, 0, 2), subscripts='i...ij,ji...->...j'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_115_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...s': 'ij...,j...->ij...'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 2), shape_b=(1,), subscripts='ij...,j...->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_116_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...s': 'ij...,...j->ij...'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), shape_b=(1,), subscripts='ij...,...j->ij...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_117_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3,),...ipts': 'ij...,j->ij...'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 2), shape_b=(1,), subscripts='ij...,j->ij...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_118_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...ts': 'ik...,k...->i...'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), shape_b=(1, 1), subscripts='ik...,k...->i...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_119_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...': 'ik...,...kj->i...j'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), shape_b=(1, 0), subscripts='ik...,...kj->i...j'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_120_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), 'subscripts': '...k,kj'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), shape_b=(1, 1), subscripts='...k,kj'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_121_{_raw_params={'orig': {'shape_a': (4, 3), 'shape_b': (3, 2), ...ripts': 'ik,k...->i...'}, 'dec': 2, 'drop': True}, shape_a=(1, 1), shape_b=(1, 1), subscripts='ik,k...->i...'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_122_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4,), 'subscripts': 'ijkl,k'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 2, 1), shape_b=(2,), subscripts='ijkl,k'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_123_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...'subscripts': '...kl,k'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 2, 3), shape_b=(2,), subscripts='...kl,k'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_124_{_raw_params={'orig': {'shape_a': (2, 3, 4, 5), 'shape_b': (4...bscripts': '...kl,k...'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 2, 3), shape_b=(2,), subscripts='...kl,k...'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperation::test_einsum_binary[_param_125_{_raw_params={'orig': {'shape_a': (1, 1, 1, 2, 3, 2), 'shape_...s': '...lmn,lmno->...o'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1, 1, 1, 1), shape_b=(1, 1, 1, 1), subscripts='...lmn,lmno->...o'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperationWithScalar::test_scalar_1 | 3.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumBinaryOperationWithScalar::test_scalar_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_0_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3, 4), ...ubscripts': 'ij,jk,kl'}, 'dec': 0, 'drop': False}, shape_a=(2, 3), shape_b=(3, 4), shape_c=(4, 5), subscripts='ij,jk,kl'}] | 10.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_1_{_raw_params={'orig': {'shape_a': (2, 4), 'shape_b': (2, 3), ...ripts': 'ij,ik,i->ijk'}, 'dec': 0, 'drop': False}, shape_a=(2, 4), shape_b=(2, 3), shape_c=(2,), subscripts='ij,ik,i->ijk'}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_2_{_raw_params={'orig': {'shape_a': (2, 4), 'shape_b': (3, 2), ...cripts': 'ij,ki,i->jk'}, 'dec': 0, 'drop': False}, shape_a=(2, 4), shape_b=(3, 2), shape_c=(2,), subscripts='ij,ki,i->jk'}] | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_3_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (2,),...': 'i...,i,...i->...i'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), shape_b=(2,), shape_c=(3, 4, 2), subscripts='i...,i,...i->...i'}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_4_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (4, 3......,...b,c...->abc...'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), shape_b=(4, 3), shape_c=(3, 3, 4), subscripts='a...,...b,c...->abc...'}] | 10.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_5_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3, 4...'a...,...,c...->ac...'}, 'dec': 0, 'drop': False}, shape_a=(2, 3, 4), shape_b=(3, 4), shape_c=(3, 3, 4), subscripts='a...,...,c...->ac...'}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_6_{_raw_params={'orig': {'shape_a': (3, 3, 4), 'shape_b': (4, 3......,...b,c...->abc...'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 4), shape_b=(4, 3), shape_c=(2, 3, 4), subscripts='a...,...b,c...->abc...'}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_7_{_raw_params={'orig': {'shape_a': (3, 3, 4), 'shape_b': (3, 4...'a...,...,c...->ac...'}, 'dec': 0, 'drop': False}, shape_a=(3, 3, 4), shape_b=(3, 4), shape_c=(2, 3, 4), subscripts='a...,...,c...->ac...'}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_8_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3, 4), ...subscripts': 'ij,jk,kl'}, 'dec': 0, 'drop': True}, shape_a=(1, 1), shape_b=(3, 1), shape_c=(1, 1), subscripts='ij,jk,kl'}] | 6.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_9_{_raw_params={'orig': {'shape_a': (2, 4), 'shape_b': (2, 3), ...cripts': 'ij,ik,i->ijk'}, 'dec': 0, 'drop': True}, shape_a=(1, 1), shape_b=(2, 1), shape_c=(1,), subscripts='ij,ik,i->ijk'}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_10_{_raw_params={'orig': {'shape_a': (2, 4), 'shape_b': (3, 2), ...scripts': 'ij,ki,i->jk'}, 'dec': 0, 'drop': True}, shape_a=(1, 4), shape_b=(1, 1), shape_c=(1,), subscripts='ij,ki,i->jk'}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_11_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (2,),...s': 'i...,i,...i->...i'}, 'dec': 0, 'drop': True}, shape_a=(2, 3, 4), shape_b=(2,), shape_c=(1, 1, 2), subscripts='i...,i,...i->...i'}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_12_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (4, 3...a...,...b,c...->abc...'}, 'dec': 0, 'drop': True}, shape_a=(2, 3, 1), shape_b=(1, 1), shape_c=(1, 1, 1), subscripts='a...,...b,c...->abc...'}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_13_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3, 4... 'a...,...,c...->ac...'}, 'dec': 0, 'drop': True}, shape_a=(1, 1, 1), shape_b=(1, 4), shape_c=(3, 3, 4), subscripts='a...,...,c...->ac...'}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_14_{_raw_params={'orig': {'shape_a': (3, 3, 4), 'shape_b': (4, 3...a...,...b,c...->abc...'}, 'dec': 0, 'drop': True}, shape_a=(3, 3, 1), shape_b=(1, 3), shape_c=(1, 1, 1), subscripts='a...,...b,c...->abc...'}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_15_{_raw_params={'orig': {'shape_a': (3, 3, 4), 'shape_b': (3, 4... 'a...,...,c...->ac...'}, 'dec': 0, 'drop': True}, shape_a=(3, 3, 4), shape_b=(3, 4), shape_c=(2, 3, 1), subscripts='a...,...,c...->ac...'}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_16_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3, 4), ...ubscripts': 'ij,jk,kl'}, 'dec': 1, 'drop': False}, shape_a=(1, 2), shape_b=(2, 3), shape_c=(3, 4), subscripts='ij,jk,kl'}] | 0.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_17_{_raw_params={'orig': {'shape_a': (2, 4), 'shape_b': (2, 3), ...ripts': 'ij,ik,i->ijk'}, 'dec': 1, 'drop': False}, shape_a=(1, 3), shape_b=(1, 2), shape_c=(1,), subscripts='ij,ik,i->ijk'}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_18_{_raw_params={'orig': {'shape_a': (2, 4), 'shape_b': (3, 2), ...cripts': 'ij,ki,i->jk'}, 'dec': 1, 'drop': False}, shape_a=(1, 3), shape_b=(2, 1), shape_c=(1,), subscripts='ij,ki,i->jk'}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_19_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (2,),...': 'i...,i,...i->...i'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), shape_b=(1,), shape_c=(2, 3, 1), subscripts='i...,i,...i->...i'}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_20_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (4, 3......,...b,c...->abc...'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), shape_b=(3, 2), shape_c=(2, 2, 3), subscripts='a...,...b,c...->abc...'}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_21_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3, 4...'a...,...,c...->ac...'}, 'dec': 1, 'drop': False}, shape_a=(1, 2, 3), shape_b=(2, 3), shape_c=(2, 2, 3), subscripts='a...,...,c...->ac...'}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_22_{_raw_params={'orig': {'shape_a': (3, 3, 4), 'shape_b': (4, 3......,...b,c...->abc...'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 3), shape_b=(3, 2), shape_c=(1, 2, 3), subscripts='a...,...b,c...->abc...'}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_23_{_raw_params={'orig': {'shape_a': (3, 3, 4), 'shape_b': (3, 4...'a...,...,c...->ac...'}, 'dec': 1, 'drop': False}, shape_a=(2, 2, 3), shape_b=(2, 3), shape_c=(1, 2, 3), subscripts='a...,...,c...->ac...'}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_24_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3, 4), ...subscripts': 'ij,jk,kl'}, 'dec': 1, 'drop': True}, shape_a=(1, 2), shape_b=(1, 1), shape_c=(3, 1), subscripts='ij,jk,kl'}] | 4.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_25_{_raw_params={'orig': {'shape_a': (2, 4), 'shape_b': (2, 3), ...cripts': 'ij,ik,i->ijk'}, 'dec': 1, 'drop': True}, shape_a=(1, 3), shape_b=(1, 1), shape_c=(1,), subscripts='ij,ik,i->ijk'}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_26_{_raw_params={'orig': {'shape_a': (2, 4), 'shape_b': (3, 2), ...scripts': 'ij,ki,i->jk'}, 'dec': 1, 'drop': True}, shape_a=(1, 3), shape_b=(2, 1), shape_c=(1,), subscripts='ij,ki,i->jk'}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_27_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (2,),...s': 'i...,i,...i->...i'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 3), shape_b=(1,), shape_c=(1, 1, 1), subscripts='i...,i,...i->...i'}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_28_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (4, 3...a...,...b,c...->abc...'}, 'dec': 1, 'drop': True}, shape_a=(1, 2, 3), shape_b=(1, 1), shape_c=(2, 2, 3), subscripts='a...,...b,c...->abc...'}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_29_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3, 4... 'a...,...,c...->ac...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 1), shape_b=(2, 3), shape_c=(1, 1, 3), subscripts='a...,...,c...->ac...'}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_30_{_raw_params={'orig': {'shape_a': (3, 3, 4), 'shape_b': (4, 3...a...,...b,c...->abc...'}, 'dec': 1, 'drop': True}, shape_a=(2, 2, 3), shape_b=(3, 2), shape_c=(1, 2, 1), subscripts='a...,...b,c...->abc...'}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_31_{_raw_params={'orig': {'shape_a': (3, 3, 4), 'shape_b': (3, 4... 'a...,...,c...->ac...'}, 'dec': 1, 'drop': True}, shape_a=(1, 1, 3), shape_b=(2, 1), shape_c=(1, 2, 3), subscripts='a...,...,c...->ac...'}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_32_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3, 4), ...ubscripts': 'ij,jk,kl'}, 'dec': 2, 'drop': False}, shape_a=(0, 1), shape_b=(1, 2), shape_c=(2, 3), subscripts='ij,jk,kl'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_33_{_raw_params={'orig': {'shape_a': (2, 4), 'shape_b': (2, 3), ...ripts': 'ij,ik,i->ijk'}, 'dec': 2, 'drop': False}, shape_a=(0, 2), shape_b=(0, 1), shape_c=(0,), subscripts='ij,ik,i->ijk'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_34_{_raw_params={'orig': {'shape_a': (2, 4), 'shape_b': (3, 2), ...cripts': 'ij,ki,i->jk'}, 'dec': 2, 'drop': False}, shape_a=(0, 2), shape_b=(1, 0), shape_c=(0,), subscripts='ij,ki,i->jk'}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_35_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (2,),...': 'i...,i,...i->...i'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), shape_b=(0,), shape_c=(1, 2, 0), subscripts='i...,i,...i->...i'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_36_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (4, 3......,...b,c...->abc...'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), shape_b=(2, 1), shape_c=(1, 1, 2), subscripts='a...,...b,c...->abc...'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_37_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3, 4...'a...,...,c...->ac...'}, 'dec': 2, 'drop': False}, shape_a=(0, 1, 2), shape_b=(1, 2), shape_c=(1, 1, 2), subscripts='a...,...,c...->ac...'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_38_{_raw_params={'orig': {'shape_a': (3, 3, 4), 'shape_b': (4, 3......,...b,c...->abc...'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 2), shape_b=(2, 1), shape_c=(0, 1, 2), subscripts='a...,...b,c...->abc...'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_39_{_raw_params={'orig': {'shape_a': (3, 3, 4), 'shape_b': (3, 4...'a...,...,c...->ac...'}, 'dec': 2, 'drop': False}, shape_a=(1, 1, 2), shape_b=(1, 2), shape_c=(0, 1, 2), subscripts='a...,...,c...->ac...'}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_40_{_raw_params={'orig': {'shape_a': (2, 3), 'shape_b': (3, 4), ...subscripts': 'ij,jk,kl'}, 'dec': 2, 'drop': True}, shape_a=(0, 1), shape_b=(1, 2), shape_c=(2, 1), subscripts='ij,jk,kl'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_41_{_raw_params={'orig': {'shape_a': (2, 4), 'shape_b': (2, 3), ...cripts': 'ij,ik,i->ijk'}, 'dec': 2, 'drop': True}, shape_a=(0, 2), shape_b=(0, 1), shape_c=(0,), subscripts='ij,ik,i->ijk'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_42_{_raw_params={'orig': {'shape_a': (2, 4), 'shape_b': (3, 2), ...scripts': 'ij,ki,i->jk'}, 'dec': 2, 'drop': True}, shape_a=(0, 2), shape_b=(1, 0), shape_c=(0,), subscripts='ij,ki,i->jk'}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_43_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (2,),...s': 'i...,i,...i->...i'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 2), shape_b=(1,), shape_c=(1, 2, 0), subscripts='i...,i,...i->...i'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_44_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (4, 3...a...,...b,c...->abc...'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 2), shape_b=(2, 1), shape_c=(1, 1, 1), subscripts='a...,...b,c...->abc...'}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_45_{_raw_params={'orig': {'shape_a': (2, 3, 4), 'shape_b': (3, 4... 'a...,...,c...->ac...'}, 'dec': 2, 'drop': True}, shape_a=(0, 1, 1), shape_b=(1, 2), shape_c=(1, 1, 2), subscripts='a...,...,c...->ac...'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_46_{_raw_params={'orig': {'shape_a': (3, 3, 4), 'shape_b': (4, 3...a...,...b,c...->abc...'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), shape_b=(1, 1), shape_c=(1, 1, 2), subscripts='a...,...b,c...->abc...'}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumTernaryOperation::test_einsum_ternary[_param_47_{_raw_params={'orig': {'shape_a': (3, 3, 4), 'shape_b': (3, 4... 'a...,...,c...->ac...'}, 'dec': 2, 'drop': True}, shape_a=(1, 1, 1), shape_b=(1, 1), shape_c=(0, 1, 1), subscripts='a...,...,c...->ac...'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_0_{opt=('greedy', 0), subscript='a,b,c->abc'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_1_{opt=('greedy', 0), subscript='acdf,jbje,gihb,hfac'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_2_{opt='greedy', subscript='acdf,jbje,gihb,hfac,gfac,gifabc,hfac'}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_3_{opt='greedy', subscript='chd,bde,agbc,hiad,bdi,cgh,agdb'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_4_{opt='greedy', subscript='eb,cb,fb->cef'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_5_{opt='greedy', subscript='dd,fb,be,cdb->cef'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_6_{opt='greedy', subscript='bca,cdb,dbf,afc->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_7_{opt='greedy', subscript='dcc,fce,ea,dbf->ab'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_8_{opt='greedy', subscript='a,ac,ab,ad,cd,bd,bc->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_9_{opt='optimal', subscript='acdf,jbje,gihb,hfac,gfac,gifabc,hfac'}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_10_{opt='optimal', subscript='chd,bde,agbc,hiad,bdi,cgh,agdb'}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_11_{opt='optimal', subscript='eb,cb,fb->cef'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_12_{opt='optimal', subscript='dd,fb,be,cdb->cef'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_13_{opt='optimal', subscript='bca,cdb,dbf,afc->'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_14_{opt='optimal', subscript='dcc,fce,ea,dbf->ab'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_einsum.py::TestEinSumLarge::test_einsum[_param_15_{opt='optimal', subscript='a,ac,ab,ad,cd,bd,bc->'}] | 0.54 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_0_{axis=0, keepdims=True, ord=-inf, shape=(1,)}::test_norm | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_1_{axis=0, keepdims=True, ord=-inf, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_2_{axis=0, keepdims=True, ord=-2, shape=(1,)}::test_norm | 1.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_3_{axis=0, keepdims=True, ord=-2, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_4_{axis=0, keepdims=True, ord=-1, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_5_{axis=0, keepdims=True, ord=-1, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_6_{axis=0, keepdims=True, ord=0, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_7_{axis=0, keepdims=True, ord=0, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_8_{axis=0, keepdims=True, ord=1, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_9_{axis=0, keepdims=True, ord=1, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_10_{axis=0, keepdims=True, ord=2, shape=(1,)}::test_norm | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_11_{axis=0, keepdims=True, ord=2, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_12_{axis=0, keepdims=True, ord=3, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_13_{axis=0, keepdims=True, ord=3, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_14_{axis=0, keepdims=True, ord=inf, shape=(1,)}::test_norm | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_15_{axis=0, keepdims=True, ord=inf, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_16_{axis=0, keepdims=False, ord=-inf, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_17_{axis=0, keepdims=False, ord=-inf, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_18_{axis=0, keepdims=False, ord=-2, shape=(1,)}::test_norm | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_19_{axis=0, keepdims=False, ord=-2, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_20_{axis=0, keepdims=False, ord=-1, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_21_{axis=0, keepdims=False, ord=-1, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_22_{axis=0, keepdims=False, ord=0, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_23_{axis=0, keepdims=False, ord=0, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_24_{axis=0, keepdims=False, ord=1, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_25_{axis=0, keepdims=False, ord=1, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_26_{axis=0, keepdims=False, ord=2, shape=(1,)}::test_norm | 2.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_27_{axis=0, keepdims=False, ord=2, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_28_{axis=0, keepdims=False, ord=3, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_29_{axis=0, keepdims=False, ord=3, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_30_{axis=0, keepdims=False, ord=inf, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_31_{axis=0, keepdims=False, ord=inf, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_32_{axis=None, keepdims=True, ord=-inf, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_33_{axis=None, keepdims=True, ord=-inf, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_34_{axis=None, keepdims=True, ord=-2, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_35_{axis=None, keepdims=True, ord=-2, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_36_{axis=None, keepdims=True, ord=-1, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_37_{axis=None, keepdims=True, ord=-1, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_38_{axis=None, keepdims=True, ord=0, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_39_{axis=None, keepdims=True, ord=0, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_40_{axis=None, keepdims=True, ord=1, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_41_{axis=None, keepdims=True, ord=1, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_42_{axis=None, keepdims=True, ord=2, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_43_{axis=None, keepdims=True, ord=2, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_44_{axis=None, keepdims=True, ord=3, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_45_{axis=None, keepdims=True, ord=3, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_46_{axis=None, keepdims=True, ord=inf, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_47_{axis=None, keepdims=True, ord=inf, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_48_{axis=None, keepdims=False, ord=-inf, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_49_{axis=None, keepdims=False, ord=-inf, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_50_{axis=None, keepdims=False, ord=-2, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_51_{axis=None, keepdims=False, ord=-2, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_52_{axis=None, keepdims=False, ord=-1, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_53_{axis=None, keepdims=False, ord=-1, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_54_{axis=None, keepdims=False, ord=0, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_55_{axis=None, keepdims=False, ord=0, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_56_{axis=None, keepdims=False, ord=1, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_57_{axis=None, keepdims=False, ord=1, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_58_{axis=None, keepdims=False, ord=2, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_59_{axis=None, keepdims=False, ord=2, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_60_{axis=None, keepdims=False, ord=3, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_61_{axis=None, keepdims=False, ord=3, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_62_{axis=None, keepdims=False, ord=inf, shape=(1,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_63_{axis=None, keepdims=False, ord=inf, shape=(2,)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_64_{axis=(0, 1), keepdims=True, ord=-inf, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_65_{axis=(0, 1), keepdims=True, ord=-inf, shape=(2, 2)}::test_norm | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_66_{axis=(0, 1), keepdims=True, ord=-2, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_67_{axis=(0, 1), keepdims=True, ord=-2, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_68_{axis=(0, 1), keepdims=True, ord=-1, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_69_{axis=(0, 1), keepdims=True, ord=-1, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_70_{axis=(0, 1), keepdims=True, ord=1, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_71_{axis=(0, 1), keepdims=True, ord=1, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_72_{axis=(0, 1), keepdims=True, ord=2, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_73_{axis=(0, 1), keepdims=True, ord=2, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_74_{axis=(0, 1), keepdims=True, ord=inf, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_75_{axis=(0, 1), keepdims=True, ord=inf, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_76_{axis=(0, 1), keepdims=True, ord='fro', shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_77_{axis=(0, 1), keepdims=True, ord='fro', shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_78_{axis=(0, 1), keepdims=True, ord='nuc', shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_79_{axis=(0, 1), keepdims=True, ord='nuc', shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_80_{axis=(0, 1), keepdims=False, ord=-inf, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_81_{axis=(0, 1), keepdims=False, ord=-inf, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_82_{axis=(0, 1), keepdims=False, ord=-2, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_83_{axis=(0, 1), keepdims=False, ord=-2, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_84_{axis=(0, 1), keepdims=False, ord=-1, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_85_{axis=(0, 1), keepdims=False, ord=-1, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_86_{axis=(0, 1), keepdims=False, ord=1, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_87_{axis=(0, 1), keepdims=False, ord=1, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_88_{axis=(0, 1), keepdims=False, ord=2, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_89_{axis=(0, 1), keepdims=False, ord=2, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_90_{axis=(0, 1), keepdims=False, ord=inf, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_91_{axis=(0, 1), keepdims=False, ord=inf, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_92_{axis=(0, 1), keepdims=False, ord='fro', shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_93_{axis=(0, 1), keepdims=False, ord='fro', shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_94_{axis=(0, 1), keepdims=False, ord='nuc', shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_95_{axis=(0, 1), keepdims=False, ord='nuc', shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_96_{axis=None, keepdims=True, ord=-inf, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_97_{axis=None, keepdims=True, ord=-inf, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_98_{axis=None, keepdims=True, ord=-2, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_99_{axis=None, keepdims=True, ord=-2, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_100_{axis=None, keepdims=True, ord=-1, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_101_{axis=None, keepdims=True, ord=-1, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_102_{axis=None, keepdims=True, ord=1, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_103_{axis=None, keepdims=True, ord=1, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_104_{axis=None, keepdims=True, ord=2, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_105_{axis=None, keepdims=True, ord=2, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_106_{axis=None, keepdims=True, ord=inf, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_107_{axis=None, keepdims=True, ord=inf, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_108_{axis=None, keepdims=True, ord='fro', shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_109_{axis=None, keepdims=True, ord='fro', shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_110_{axis=None, keepdims=True, ord='nuc', shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_111_{axis=None, keepdims=True, ord='nuc', shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_112_{axis=None, keepdims=False, ord=-inf, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_113_{axis=None, keepdims=False, ord=-inf, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_114_{axis=None, keepdims=False, ord=-2, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_115_{axis=None, keepdims=False, ord=-2, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_116_{axis=None, keepdims=False, ord=-1, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_117_{axis=None, keepdims=False, ord=-1, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_118_{axis=None, keepdims=False, ord=1, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_119_{axis=None, keepdims=False, ord=1, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_120_{axis=None, keepdims=False, ord=2, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_121_{axis=None, keepdims=False, ord=2, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_122_{axis=None, keepdims=False, ord=inf, shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_123_{axis=None, keepdims=False, ord=inf, shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_124_{axis=None, keepdims=False, ord='fro', shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_125_{axis=None, keepdims=False, ord='fro', shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_126_{axis=None, keepdims=False, ord='nuc', shape=(1, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_127_{axis=None, keepdims=False, ord='nuc', shape=(2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_128_{axis=0, keepdims=True, ord=-inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_129_{axis=0, keepdims=True, ord=-2, shape=(2, 2, 2)}::test_norm | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_130_{axis=0, keepdims=True, ord=-1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_131_{axis=0, keepdims=True, ord=0, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_132_{axis=0, keepdims=True, ord=1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_133_{axis=0, keepdims=True, ord=2, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_134_{axis=0, keepdims=True, ord=3, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_135_{axis=0, keepdims=True, ord=inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_136_{axis=0, keepdims=False, ord=-inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_137_{axis=0, keepdims=False, ord=-2, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_138_{axis=0, keepdims=False, ord=-1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_139_{axis=0, keepdims=False, ord=0, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_140_{axis=0, keepdims=False, ord=1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_141_{axis=0, keepdims=False, ord=2, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_142_{axis=0, keepdims=False, ord=3, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_143_{axis=0, keepdims=False, ord=inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_144_{axis=1, keepdims=True, ord=-inf, shape=(2, 2, 2)}::test_norm | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_145_{axis=1, keepdims=True, ord=-2, shape=(2, 2, 2)}::test_norm | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_146_{axis=1, keepdims=True, ord=-1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_147_{axis=1, keepdims=True, ord=0, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_148_{axis=1, keepdims=True, ord=1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_149_{axis=1, keepdims=True, ord=2, shape=(2, 2, 2)}::test_norm | 2.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_150_{axis=1, keepdims=True, ord=3, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_151_{axis=1, keepdims=True, ord=inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_152_{axis=1, keepdims=False, ord=-inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_153_{axis=1, keepdims=False, ord=-2, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_154_{axis=1, keepdims=False, ord=-1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_155_{axis=1, keepdims=False, ord=0, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_156_{axis=1, keepdims=False, ord=1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_157_{axis=1, keepdims=False, ord=2, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_158_{axis=1, keepdims=False, ord=3, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_159_{axis=1, keepdims=False, ord=inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_160_{axis=2, keepdims=True, ord=-inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_161_{axis=2, keepdims=True, ord=-2, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_162_{axis=2, keepdims=True, ord=-1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_163_{axis=2, keepdims=True, ord=0, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_164_{axis=2, keepdims=True, ord=1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_165_{axis=2, keepdims=True, ord=2, shape=(2, 2, 2)}::test_norm | 2.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_166_{axis=2, keepdims=True, ord=3, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_167_{axis=2, keepdims=True, ord=inf, shape=(2, 2, 2)}::test_norm | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_168_{axis=2, keepdims=False, ord=-inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_169_{axis=2, keepdims=False, ord=-2, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_170_{axis=2, keepdims=False, ord=-1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_171_{axis=2, keepdims=False, ord=0, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_172_{axis=2, keepdims=False, ord=1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_173_{axis=2, keepdims=False, ord=2, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_174_{axis=2, keepdims=False, ord=3, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_175_{axis=2, keepdims=False, ord=inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_176_{axis=(0, 1), keepdims=True, ord=-inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_177_{axis=(0, 1), keepdims=True, ord=-1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_178_{axis=(0, 1), keepdims=True, ord=1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_179_{axis=(0, 1), keepdims=True, ord=inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_180_{axis=(0, 1), keepdims=True, ord='fro', shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_181_{axis=(0, 1), keepdims=False, ord=-inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_182_{axis=(0, 1), keepdims=False, ord=-1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_183_{axis=(0, 1), keepdims=False, ord=1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_184_{axis=(0, 1), keepdims=False, ord=inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_185_{axis=(0, 1), keepdims=False, ord='fro', shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_186_{axis=(0, 2), keepdims=True, ord=-inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_187_{axis=(0, 2), keepdims=True, ord=-1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_188_{axis=(0, 2), keepdims=True, ord=1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_189_{axis=(0, 2), keepdims=True, ord=inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_190_{axis=(0, 2), keepdims=True, ord='fro', shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_191_{axis=(0, 2), keepdims=False, ord=-inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_192_{axis=(0, 2), keepdims=False, ord=-1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_193_{axis=(0, 2), keepdims=False, ord=1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_194_{axis=(0, 2), keepdims=False, ord=inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_195_{axis=(0, 2), keepdims=False, ord='fro', shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_196_{axis=(1, 2), keepdims=True, ord=-inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_197_{axis=(1, 2), keepdims=True, ord=-1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_198_{axis=(1, 2), keepdims=True, ord=1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_199_{axis=(1, 2), keepdims=True, ord=inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_200_{axis=(1, 2), keepdims=True, ord='fro', shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_201_{axis=(1, 2), keepdims=False, ord=-inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_202_{axis=(1, 2), keepdims=False, ord=-1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_203_{axis=(1, 2), keepdims=False, ord=1, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_204_{axis=(1, 2), keepdims=False, ord=inf, shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestNorm_param_205_{axis=(1, 2), keepdims=False, ord='fro', shape=(2, 2, 2)}::test_norm | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestMatrixRank_param_0_{array=[[1, 2], [3, 4]], tol=None}::test_matrix_rank | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestMatrixRank_param_1_{array=[[1, 2], [3, 4]], tol=1}::test_matrix_rank | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestMatrixRank_param_2_{array=[[1, 2], [1, 2]], tol=None}::test_matrix_rank | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestMatrixRank_param_3_{array=[[1, 2], [1, 2]], tol=1}::test_matrix_rank | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestMatrixRank_param_4_{array=[[0, 0], [0, 0]], tol=None}::test_matrix_rank | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestMatrixRank_param_5_{array=[[0, 0], [0, 0]], tol=1}::test_matrix_rank | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestMatrixRank_param_6_{array=[1, 2], tol=None}::test_matrix_rank | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestMatrixRank_param_7_{array=[1, 2], tol=1}::test_matrix_rank | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestMatrixRank_param_8_{array=[0, 1], tol=None}::test_matrix_rank | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestMatrixRank_param_9_{array=[0, 1], tol=1}::test_matrix_rank | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestMatrixRank_param_10_{array=[0, 0], tol=None}::test_matrix_rank | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestMatrixRank_param_11_{array=[0, 0], tol=1}::test_matrix_rank | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestTrace::test_external_trace | 7.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestTrace::test_trace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestDet::test_det | 5.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestDet::test_det_3 | 4.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestDet::test_det_4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestDet::test_det_different_last_two_dims | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestDet::test_det_different_last_two_dims_empty_batch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestDet::test_det_empty_batch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestDet::test_det_empty_matrices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestDet::test_det_empty_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestDet::test_det_one_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestDet::test_det_singular | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestDet::test_det_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestSlogdet::test_slogdet | 5.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestSlogdet::test_slogdet_3 | 6.85 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestSlogdet::test_slogdet_4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestSlogdet::test_slogdet_one_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestSlogdet::test_slogdet_singular | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_norms.py::TestSlogdet::test_slogdet_singular_errstate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_0_{shape=((2, 3, 4), (3, 4, 2)), trans_a=True, trans_b=True}::test_dot | 9.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_0_{shape=((2, 3, 4), (3, 4, 2)), trans_a=True, trans_b=True}::test_dot_with_out | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_1_{shape=((2, 3, 4), (3, 4, 2)), trans_a=True, trans_b=False}::test_dot | 3.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_1_{shape=((2, 3, 4), (3, 4, 2)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_2_{shape=((2, 3, 4), (3, 4, 2)), trans_a=False, trans_b=True}::test_dot | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_2_{shape=((2, 3, 4), (3, 4, 2)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_3_{shape=((2, 3, 4), (3, 4, 2)), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_3_{shape=((2, 3, 4), (3, 4, 2)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_4_{shape=((1, 1), (1, 1)), trans_a=True, trans_b=True}::test_dot | 17.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_4_{shape=((1, 1), (1, 1)), trans_a=True, trans_b=True}::test_dot_with_out | 4.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_5_{shape=((1, 1), (1, 1)), trans_a=True, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_5_{shape=((1, 1), (1, 1)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_6_{shape=((1, 1), (1, 1)), trans_a=False, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_6_{shape=((1, 1), (1, 1)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_7_{shape=((1, 1), (1, 1)), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_7_{shape=((1, 1), (1, 1)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_8_{shape=((1, 1), (1, 2)), trans_a=True, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_8_{shape=((1, 1), (1, 2)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_9_{shape=((1, 1), (1, 2)), trans_a=True, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_9_{shape=((1, 1), (1, 2)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_10_{shape=((1, 1), (1, 2)), trans_a=False, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_10_{shape=((1, 1), (1, 2)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_11_{shape=((1, 1), (1, 2)), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_11_{shape=((1, 1), (1, 2)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_12_{shape=((1, 2), (2, 1)), trans_a=True, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_12_{shape=((1, 2), (2, 1)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_13_{shape=((1, 2), (2, 1)), trans_a=True, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_13_{shape=((1, 2), (2, 1)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_14_{shape=((1, 2), (2, 1)), trans_a=False, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_14_{shape=((1, 2), (2, 1)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_15_{shape=((1, 2), (2, 1)), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_15_{shape=((1, 2), (2, 1)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_16_{shape=((2, 1), (1, 1)), trans_a=True, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_16_{shape=((2, 1), (1, 1)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_17_{shape=((2, 1), (1, 1)), trans_a=True, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_17_{shape=((2, 1), (1, 1)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_18_{shape=((2, 1), (1, 1)), trans_a=False, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_18_{shape=((2, 1), (1, 1)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_19_{shape=((2, 1), (1, 1)), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_19_{shape=((2, 1), (1, 1)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_20_{shape=((1, 2), (2, 3)), trans_a=True, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_20_{shape=((1, 2), (2, 3)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_21_{shape=((1, 2), (2, 3)), trans_a=True, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_21_{shape=((1, 2), (2, 3)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_22_{shape=((1, 2), (2, 3)), trans_a=False, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_22_{shape=((1, 2), (2, 3)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_23_{shape=((1, 2), (2, 3)), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_23_{shape=((1, 2), (2, 3)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_24_{shape=((2, 1), (1, 3)), trans_a=True, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_24_{shape=((2, 1), (1, 3)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_25_{shape=((2, 1), (1, 3)), trans_a=True, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_25_{shape=((2, 1), (1, 3)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_26_{shape=((2, 1), (1, 3)), trans_a=False, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_26_{shape=((2, 1), (1, 3)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_27_{shape=((2, 1), (1, 3)), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_27_{shape=((2, 1), (1, 3)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_28_{shape=((2, 3), (3, 1)), trans_a=True, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_28_{shape=((2, 3), (3, 1)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_29_{shape=((2, 3), (3, 1)), trans_a=True, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_29_{shape=((2, 3), (3, 1)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_30_{shape=((2, 3), (3, 1)), trans_a=False, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_30_{shape=((2, 3), (3, 1)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_31_{shape=((2, 3), (3, 1)), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_31_{shape=((2, 3), (3, 1)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_32_{shape=((2, 3), (3, 4)), trans_a=True, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_32_{shape=((2, 3), (3, 4)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_33_{shape=((2, 3), (3, 4)), trans_a=True, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_33_{shape=((2, 3), (3, 4)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_34_{shape=((2, 3), (3, 4)), trans_a=False, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_34_{shape=((2, 3), (3, 4)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_35_{shape=((2, 3), (3, 4)), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_35_{shape=((2, 3), (3, 4)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_36_{shape=((0, 3), (3, 4)), trans_a=True, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_36_{shape=((0, 3), (3, 4)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_37_{shape=((0, 3), (3, 4)), trans_a=True, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_37_{shape=((0, 3), (3, 4)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_38_{shape=((0, 3), (3, 4)), trans_a=False, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_38_{shape=((0, 3), (3, 4)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_39_{shape=((0, 3), (3, 4)), trans_a=False, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_39_{shape=((0, 3), (3, 4)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_40_{shape=((2, 3), (3, 0)), trans_a=True, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_40_{shape=((2, 3), (3, 0)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_41_{shape=((2, 3), (3, 0)), trans_a=True, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_41_{shape=((2, 3), (3, 0)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_42_{shape=((2, 3), (3, 0)), trans_a=False, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_42_{shape=((2, 3), (3, 0)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_43_{shape=((2, 3), (3, 0)), trans_a=False, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_43_{shape=((2, 3), (3, 0)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_44_{shape=((0, 3), (3, 0)), trans_a=True, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_44_{shape=((0, 3), (3, 0)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_45_{shape=((0, 3), (3, 0)), trans_a=True, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_45_{shape=((0, 3), (3, 0)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_46_{shape=((0, 3), (3, 0)), trans_a=False, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_46_{shape=((0, 3), (3, 0)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_47_{shape=((0, 3), (3, 0)), trans_a=False, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_47_{shape=((0, 3), (3, 0)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_48_{shape=((3, 0), (0, 4)), trans_a=True, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_48_{shape=((3, 0), (0, 4)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_49_{shape=((3, 0), (0, 4)), trans_a=True, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_49_{shape=((3, 0), (0, 4)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_50_{shape=((3, 0), (0, 4)), trans_a=False, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_50_{shape=((3, 0), (0, 4)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_51_{shape=((3, 0), (0, 4)), trans_a=False, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_51_{shape=((3, 0), (0, 4)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_52_{shape=((2, 3, 0), (3, 0, 2)), trans_a=True, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_52_{shape=((2, 3, 0), (3, 0, 2)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_53_{shape=((2, 3, 0), (3, 0, 2)), trans_a=True, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_53_{shape=((2, 3, 0), (3, 0, 2)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_54_{shape=((2, 3, 0), (3, 0, 2)), trans_a=False, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_54_{shape=((2, 3, 0), (3, 0, 2)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_55_{shape=((2, 3, 0), (3, 0, 2)), trans_a=False, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_55_{shape=((2, 3, 0), (3, 0, 2)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_56_{shape=((0, 0), (0, 0)), trans_a=True, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_56_{shape=((0, 0), (0, 0)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_57_{shape=((0, 0), (0, 0)), trans_a=True, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_57_{shape=((0, 0), (0, 0)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_58_{shape=((0, 0), (0, 0)), trans_a=False, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_58_{shape=((0, 0), (0, 0)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_59_{shape=((0, 0), (0, 0)), trans_a=False, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_59_{shape=((0, 0), (0, 0)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_60_{shape=((3,), (3,)), trans_a=True, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_60_{shape=((3,), (3,)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_61_{shape=((3,), (3,)), trans_a=True, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_61_{shape=((3,), (3,)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_62_{shape=((3,), (3,)), trans_a=False, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_62_{shape=((3,), (3,)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_63_{shape=((3,), (3,)), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_63_{shape=((3,), (3,)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_64_{shape=((2,), (2, 4)), trans_a=True, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_64_{shape=((2,), (2, 4)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_65_{shape=((2,), (2, 4)), trans_a=True, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_65_{shape=((2,), (2, 4)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_66_{shape=((2,), (2, 4)), trans_a=False, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_66_{shape=((2,), (2, 4)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_67_{shape=((2,), (2, 4)), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_67_{shape=((2,), (2, 4)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_68_{shape=((4, 2), (2,)), trans_a=True, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_68_{shape=((4, 2), (2,)), trans_a=True, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_69_{shape=((4, 2), (2,)), trans_a=True, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_69_{shape=((4, 2), (2,)), trans_a=True, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_70_{shape=((4, 2), (2,)), trans_a=False, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_70_{shape=((4, 2), (2,)), trans_a=False, trans_b=True}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_71_{shape=((4, 2), (2,)), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDot_param_71_{shape=((4, 2), (2,)), trans_a=False, trans_b=False}::test_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestCrossProduct_param_0_{params=((3,), (3,), -1, -1, -1)}::test_cross | 9.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestCrossProduct_param_1_{params=((1, 2), (1, 2), -1, -1, 1)}::test_cross | 7.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestCrossProduct_param_2_{params=((1, 3), (1, 3), 1, -1, -1)}::test_cross | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestCrossProduct_param_3_{params=((1, 2), (1, 3), -1, -1, 1)}::test_cross | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestCrossProduct_param_4_{params=((2, 2), (1, 3), -1, -1, 0)}::test_cross | 53.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestCrossProduct_param_5_{params=((3, 3), (1, 2), 0, -1, -1)}::test_cross | 27.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestCrossProduct_param_6_{params=((0, 3), (0, 3), -1, -1, -1)}::test_cross | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestCrossProduct_param_7_{params=((2, 0, 3), (2, 0, 3), 0, 0, 0)}::test_cross | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestCrossProduct_param_8_{params=((2, 4, 5, 3), (2, 4, 5, 3), -1, -1, 0)}::test_cross | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestCrossProduct_param_9_{params=((2, 4, 5, 2), (2, 4, 5, 2), 0, 0, -1)}::test_cross | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDotFor0Dim_param_0_{shape=((), ()), trans_a=True, trans_b=True}::test_dot | 7.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDotFor0Dim_param_1_{shape=((), ()), trans_a=True, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDotFor0Dim_param_2_{shape=((), ()), trans_a=False, trans_b=True}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDotFor0Dim_param_3_{shape=((), ()), trans_a=False, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDotFor0Dim_param_4_{shape=((), (2, 4)), trans_a=True, trans_b=True}::test_dot | 9.57 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDotFor0Dim_param_5_{shape=((), (2, 4)), trans_a=True, trans_b=False}::test_dot | 7.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDotFor0Dim_param_6_{shape=((), (2, 4)), trans_a=False, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDotFor0Dim_param_7_{shape=((), (2, 4)), trans_a=False, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDotFor0Dim_param_8_{shape=((4, 2), ()), trans_a=True, trans_b=True}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDotFor0Dim_param_9_{shape=((4, 2), ()), trans_a=True, trans_b=False}::test_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDotFor0Dim_param_10_{shape=((4, 2), ()), trans_a=False, trans_b=True}::test_dot | 8.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestDotFor0Dim_param_11_{shape=((4, 2), ()), trans_a=False, trans_b=False}::test_dot | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProductZeroLength_param_0_{params=((0, 0), 2)}::test_tensordot_zero_length | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProductZeroLength_param_1_{params=((0, 0), (1, 0))}::test_tensordot_zero_length | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProductZeroLength_param_2_{params=((0, 0, 0), 2)}::test_tensordot_zero_length | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProductZeroLength_param_3_{params=((0, 0, 0), 3)}::test_tensordot_zero_length | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProductZeroLength_param_4_{params=((0, 0, 0), ([2, 1], [0, 2]))}::test_tensordot_zero_length | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProductZeroLength_param_5_{params=((0, 0, 0), ([0, 2, 1], [1, 2, 0]))}::test_tensordot_zero_length | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_dot_vec1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_dot_vec2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_dot_vec3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_dot_with_single_elem_array1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_dot_with_single_elem_array2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_inner | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_kron | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_multidim_inner | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_multidim_kron | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_multidim_outer | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_multidim_vdot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_outer | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_reversed_inner | 9.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_reversed_kron | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_reversed_outer | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_reversed_vdot | 2.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_tensordot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_tensordot_with_int_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_tensordot_with_list_axes | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_tensordot_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_transposed_dot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_transposed_dot_with_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_transposed_dot_with_out_f_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_transposed_higher_order_inner | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_transposed_multidim_vdot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_transposed_tensordot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_transposed_tensordot_with_int_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_transposed_tensordot_with_list_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_vdot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestProduct::test_zerodim_kron | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPower::test_matrix_power_0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPower::test_matrix_power_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPower::test_matrix_power_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPower::test_matrix_power_3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPower::test_matrix_power_inv1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPower::test_matrix_power_inv2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPower::test_matrix_power_inv3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPower::test_matrix_power_invlarge | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPower::test_matrix_power_large | 0.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPower::test_matrix_power_of_two | 0.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPowerBatched::test_matrix_power_batched[0-shape0] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPowerBatched::test_matrix_power_batched[0-shape1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPowerBatched::test_matrix_power_batched[5-shape0] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPowerBatched::test_matrix_power_batched[5-shape1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPowerBatched::test_matrix_power_batched[-7-shape0] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_product.py::TestMatrixPowerBatched::test_matrix_power_batched[-7-shape1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestSolve_param_0_{batched_gesv_limit=None, order='C'}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestSolve_param_0_{batched_gesv_limit=None, order='C'}::test_solve | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestSolve_param_1_{batched_gesv_limit=None, order='F'}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestSolve_param_1_{batched_gesv_limit=None, order='F'}::test_solve | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestSolve_param_2_{batched_gesv_limit=0, order='C'}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestSolve_param_2_{batched_gesv_limit=0, order='C'}::test_solve | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestSolve_param_3_{batched_gesv_limit=0, order='F'}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestSolve_param_3_{batched_gesv_limit=0, order='F'}::test_solve | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestTensorSolve_param_0_{a_shape=(2, 3, 6), axes=None}::test_tensorsolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestTensorSolve_param_1_{a_shape=(2, 3, 6), axes=(0, 2)}::test_tensorsolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestTensorSolve_param_2_{a_shape=(3, 4, 4, 3), axes=None}::test_tensorsolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestTensorSolve_param_3_{a_shape=(3, 4, 4, 3), axes=(0, 2)}::test_tensorsolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestInv_param_0_{order='C'}::test_inv | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestInv_param_0_{order='C'}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestInv_param_1_{order='F'}::test_inv | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestInv_param_1_{order='F'}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestInvInvalid::test_batched_inv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestInvInvalid::test_inv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestPinv::test_pinv | 3.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestPinv::test_pinv_batched | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestPinv::test_pinv_batched_vector_rcond | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestPinv::test_pinv_size_0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_solutions | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-0-None--1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-0-None-None] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-0-None-0.5] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-0-0--1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-0-0-None] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-0-0-0.5] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-0-1--1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-0-1-None] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-0-1-0.5] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-0-4--1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-0-4-None] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-0-4-0.5] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[3-0-None--1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[3-0-None-None] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[3-0-None-0.5] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[3-0-0--1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[3-0-0-None] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[3-0-0-0.5] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[3-0-1--1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[3-0-1-None] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[3-0-1-0.5] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[3-0-4--1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[3-0-4-None] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[3-0-4-0.5] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-7-None--1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-7-None-None] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-7-None-0.5] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-7-0--1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-7-0-None] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-7-0-0.5] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-7-1--1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-7-1-None] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-7-1-0.5] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-7-4--1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-7-4-None] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_lstsq_empty_matrix[0-7-4-0.5] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_invalid_shapes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestLstsq::test_warn_rcond | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestTensorInv::test_invalid_index | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestTensorInv::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/linalg_tests/test_solve.py::TestTensorInv::test_tensorinv | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestComparison::test_equal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestComparison::test_greater | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestComparison::test_greater_equal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestComparison::test_less | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestComparison::test_less_equal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestComparison::test_not_equal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestComparisonOperator::test_binary_array_npscalar | 19.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestComparisonOperator::test_binary_array_pyscalar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestComparisonOperator::test_binary_npscalar_array | 3.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestComparisonOperator::test_binary_pyscalar_array | 9.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestArrayEqual::test_array_equal_broadcast_not_allowed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestArrayEqual::test_array_equal_complex_equal_nan | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestArrayEqual::test_array_equal_diff_dtypes_is_equal | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestArrayEqual::test_array_equal_diff_dtypes_not_equal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestArrayEqual::test_array_equal_diff_length | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestArrayEqual::test_array_equal_infinite_equal_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestArrayEqual::test_array_equal_is_equal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestArrayEqual::test_array_equal_not_equal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestAllclose::test_allclose_array_scalar | 9.41 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestAllclose::test_allclose_finite | 6.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestAllclose::test_allclose_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestAllclose::test_allclose_infinite_equal_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestAllclose::test_allclose_min_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestIsclose::test_is_close_array_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestIsclose::test_is_close_finite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestIsclose::test_is_close_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestIsclose::test_is_close_infinite_equal_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestIsclose::test_is_close_min_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_comparison.py::TestIsclose::test_is_close_scalar_scalar | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_content.py::TestContent::test_isfinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_content.py::TestContent::test_isinf | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_content.py::TestContent::test_isnan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_ops.py::TestOps::test_logical_and | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_ops.py::TestOps::test_logical_not | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_ops.py::TestOps::test_logical_or | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_ops.py::TestOps::test_logical_xor | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_0_{axis=None, f='all', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_1_{axis=None, f='all', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_2_{axis=None, f='all', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_3_{axis=None, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_4_{axis=None, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_5_{axis=None, f='all', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 9.61 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_6_{axis=None, f='all', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_7_{axis=None, f='all', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_8_{axis=None, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_9_{axis=None, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_10_{axis=None, f='any', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_11_{axis=None, f='any', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_12_{axis=None, f='any', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_13_{axis=None, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_14_{axis=None, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_15_{axis=None, f='any', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 9.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_16_{axis=None, f='any', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_17_{axis=None, f='any', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_18_{axis=None, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_19_{axis=None, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_20_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_21_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_22_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_23_{axis=(0, 1, 2), f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_24_{axis=(0, 1, 2), f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_25_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_26_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_27_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_28_{axis=(0, 1, 2), f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_29_{axis=(0, 1, 2), f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_30_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_31_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_32_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_33_{axis=(0, 1, 2), f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_34_{axis=(0, 1, 2), f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_35_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_36_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_37_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_38_{axis=(0, 1, 2), f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_39_{axis=(0, 1, 2), f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_40_{axis=0, f='all', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_41_{axis=0, f='all', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_42_{axis=0, f='all', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_43_{axis=0, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_44_{axis=0, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_45_{axis=0, f='all', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_46_{axis=0, f='all', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_47_{axis=0, f='all', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_48_{axis=0, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_49_{axis=0, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_50_{axis=0, f='any', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_51_{axis=0, f='any', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_52_{axis=0, f='any', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_53_{axis=0, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_54_{axis=0, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_55_{axis=0, f='any', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_56_{axis=0, f='any', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_57_{axis=0, f='any', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_58_{axis=0, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_59_{axis=0, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_60_{axis=1, f='all', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 10.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_61_{axis=1, f='all', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_62_{axis=1, f='all', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_63_{axis=1, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_64_{axis=1, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_65_{axis=1, f='all', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_66_{axis=1, f='all', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_67_{axis=1, f='all', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_68_{axis=1, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_69_{axis=1, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_70_{axis=1, f='any', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 10.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_71_{axis=1, f='any', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_72_{axis=1, f='any', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_73_{axis=1, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_74_{axis=1, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_75_{axis=1, f='any', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_76_{axis=1, f='any', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_77_{axis=1, f='any', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_78_{axis=1, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_79_{axis=1, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_80_{axis=2, f='all', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 10.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_81_{axis=2, f='all', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_82_{axis=2, f='all', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_83_{axis=2, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_84_{axis=2, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_85_{axis=2, f='all', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_86_{axis=2, f='all', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_87_{axis=2, f='all', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_88_{axis=2, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_89_{axis=2, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_90_{axis=2, f='any', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 10.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_91_{axis=2, f='any', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_92_{axis=2, f='any', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_93_{axis=2, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_94_{axis=2, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_95_{axis=2, f='any', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_96_{axis=2, f='any', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_97_{axis=2, f='any', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_98_{axis=2, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_99_{axis=2, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_100_{axis=(0, 1), f='all', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_101_{axis=(0, 1), f='all', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_102_{axis=(0, 1), f='all', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_103_{axis=(0, 1), f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_104_{axis=(0, 1), f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_105_{axis=(0, 1), f='all', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_106_{axis=(0, 1), f='all', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_107_{axis=(0, 1), f='all', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_108_{axis=(0, 1), f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_109_{axis=(0, 1), f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_110_{axis=(0, 1), f='any', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_111_{axis=(0, 1), f='any', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_112_{axis=(0, 1), f='any', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_113_{axis=(0, 1), f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_114_{axis=(0, 1), f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_115_{axis=(0, 1), f='any', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_116_{axis=(0, 1), f='any', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_117_{axis=(0, 1), f='any', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_118_{axis=(0, 1), f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_without_out[_param_119_{axis=(0, 1), f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_0_{axis=None, f='all', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 8.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_1_{axis=None, f='all', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_2_{axis=None, f='all', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_3_{axis=None, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_4_{axis=None, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_5_{axis=None, f='all', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 8.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_6_{axis=None, f='all', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_7_{axis=None, f='all', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_8_{axis=None, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_9_{axis=None, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_10_{axis=None, f='any', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 8.93 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_11_{axis=None, f='any', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_12_{axis=None, f='any', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_13_{axis=None, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_14_{axis=None, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_15_{axis=None, f='any', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 8.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_16_{axis=None, f='any', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_17_{axis=None, f='any', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_18_{axis=None, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_19_{axis=None, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_20_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_21_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_22_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_23_{axis=(0, 1, 2), f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_24_{axis=(0, 1, 2), f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_25_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_26_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_27_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_28_{axis=(0, 1, 2), f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_29_{axis=(0, 1, 2), f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_30_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_31_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_32_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_33_{axis=(0, 1, 2), f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_34_{axis=(0, 1, 2), f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_35_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_36_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_37_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_38_{axis=(0, 1, 2), f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_39_{axis=(0, 1, 2), f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_40_{axis=0, f='all', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_41_{axis=0, f='all', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_42_{axis=0, f='all', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_43_{axis=0, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_44_{axis=0, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_45_{axis=0, f='all', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_46_{axis=0, f='all', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_47_{axis=0, f='all', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_48_{axis=0, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_49_{axis=0, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_50_{axis=0, f='any', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_51_{axis=0, f='any', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_52_{axis=0, f='any', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_53_{axis=0, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_54_{axis=0, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_55_{axis=0, f='any', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_56_{axis=0, f='any', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_57_{axis=0, f='any', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_58_{axis=0, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_59_{axis=0, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_60_{axis=1, f='all', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 9.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_61_{axis=1, f='all', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_62_{axis=1, f='all', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_63_{axis=1, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_64_{axis=1, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_65_{axis=1, f='all', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_66_{axis=1, f='all', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_67_{axis=1, f='all', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_68_{axis=1, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_69_{axis=1, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_70_{axis=1, f='any', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 9.27 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_71_{axis=1, f='any', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_72_{axis=1, f='any', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_73_{axis=1, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_74_{axis=1, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_75_{axis=1, f='any', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_76_{axis=1, f='any', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_77_{axis=1, f='any', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_78_{axis=1, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_79_{axis=1, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_80_{axis=2, f='all', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 9.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_81_{axis=2, f='all', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_82_{axis=2, f='all', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_83_{axis=2, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_84_{axis=2, f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_85_{axis=2, f='all', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_86_{axis=2, f='all', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_87_{axis=2, f='all', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_88_{axis=2, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_89_{axis=2, f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_90_{axis=2, f='any', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 9.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_91_{axis=2, f='any', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_92_{axis=2, f='any', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_93_{axis=2, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_94_{axis=2, f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_95_{axis=2, f='any', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_96_{axis=2, f='any', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_97_{axis=2, f='any', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_98_{axis=2, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_99_{axis=2, f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_100_{axis=(0, 1), f='all', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_101_{axis=(0, 1), f='all', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_102_{axis=(0, 1), f='all', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_103_{axis=(0, 1), f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_104_{axis=(0, 1), f='all', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_105_{axis=(0, 1), f='all', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_106_{axis=(0, 1), f='all', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_107_{axis=(0, 1), f='all', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_108_{axis=(0, 1), f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_109_{axis=(0, 1), f='all', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_110_{axis=(0, 1), f='any', keepdims=False, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_111_{axis=(0, 1), f='any', keepdims=False, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_112_{axis=(0, 1), f='any', keepdims=False, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_113_{axis=(0, 1), f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_114_{axis=(0, 1), f='any', keepdims=False, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_115_{axis=(0, 1), f='any', keepdims=True, x=array([[[-10, -9, -8, -7], [ -6, -5,..., 7, 8, 9], [ 10, 11, 12, 13]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_116_{axis=(0, 1), f='any', keepdims=True, x=array([[[0., 0., 0., 0.], [0., 0., 0., 0... [0., 0., 0., 0.], [0., 0., 0., 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_117_{axis=(0, 1), f='any', keepdims=True, x=array([[[1., 1., 1., 1.], [1., 1., 1., 1... [1., 1., 1., 1.], [1., 1., 1., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_118_{axis=(0, 1), f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAny::test_with_out[_param_119_{axis=(0, 1), f='any', keepdims=True, x=array([], shape=(0, 3, 4), dtype=float64)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_0_{axis=None, f='all', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_1_{axis=None, f='all', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_2_{axis=None, f='all', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_3_{axis=None, f='all', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_4_{axis=None, f='all', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_5_{axis=None, f='all', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_6_{axis=None, f='all', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_7_{axis=None, f='all', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_8_{axis=None, f='any', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_9_{axis=None, f='any', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_10_{axis=None, f='any', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_11_{axis=None, f='any', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_12_{axis=None, f='any', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_13_{axis=None, f='any', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_14_{axis=None, f='any', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_15_{axis=None, f='any', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_16_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_17_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_18_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_19_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_20_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_21_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_22_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_23_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_24_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_25_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_26_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_27_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_28_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_29_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_30_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_31_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_32_{axis=0, f='all', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_33_{axis=0, f='all', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_34_{axis=0, f='all', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_35_{axis=0, f='all', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_36_{axis=0, f='all', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_37_{axis=0, f='all', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_38_{axis=0, f='all', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_39_{axis=0, f='all', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_40_{axis=0, f='any', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_41_{axis=0, f='any', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_42_{axis=0, f='any', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_43_{axis=0, f='any', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_44_{axis=0, f='any', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_45_{axis=0, f='any', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_46_{axis=0, f='any', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_47_{axis=0, f='any', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_48_{axis=1, f='all', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_49_{axis=1, f='all', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_50_{axis=1, f='all', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_51_{axis=1, f='all', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_52_{axis=1, f='all', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_53_{axis=1, f='all', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_54_{axis=1, f='all', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_55_{axis=1, f='all', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_56_{axis=1, f='any', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_57_{axis=1, f='any', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_58_{axis=1, f='any', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_59_{axis=1, f='any', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_60_{axis=1, f='any', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_61_{axis=1, f='any', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_62_{axis=1, f='any', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_63_{axis=1, f='any', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_64_{axis=2, f='all', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_65_{axis=2, f='all', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_66_{axis=2, f='all', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_67_{axis=2, f='all', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_68_{axis=2, f='all', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_69_{axis=2, f='all', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_70_{axis=2, f='all', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_71_{axis=2, f='all', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_72_{axis=2, f='any', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_73_{axis=2, f='any', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_74_{axis=2, f='any', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_75_{axis=2, f='any', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_76_{axis=2, f='any', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_77_{axis=2, f='any', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_78_{axis=2, f='any', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_79_{axis=2, f='any', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_80_{axis=(0, 1), f='all', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_81_{axis=(0, 1), f='all', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_82_{axis=(0, 1), f='all', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_83_{axis=(0, 1), f='all', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_84_{axis=(0, 1), f='all', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_85_{axis=(0, 1), f='all', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_86_{axis=(0, 1), f='all', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_87_{axis=(0, 1), f='all', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_88_{axis=(0, 1), f='any', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_89_{axis=(0, 1), f='any', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_90_{axis=(0, 1), f='any', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_91_{axis=(0, 1), f='any', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_92_{axis=(0, 1), f='any', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_93_{axis=(0, 1), f='any', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_94_{axis=(0, 1), f='any', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_without_out[_param_95_{axis=(0, 1), f='any', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_0_{axis=None, f='all', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_1_{axis=None, f='all', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_2_{axis=None, f='all', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_3_{axis=None, f='all', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_4_{axis=None, f='all', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_5_{axis=None, f='all', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_6_{axis=None, f='all', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_7_{axis=None, f='all', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_8_{axis=None, f='any', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_9_{axis=None, f='any', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_10_{axis=None, f='any', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_11_{axis=None, f='any', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_12_{axis=None, f='any', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_13_{axis=None, f='any', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_14_{axis=None, f='any', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_15_{axis=None, f='any', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_16_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_17_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_18_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_19_{axis=(0, 1, 2), f='all', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_20_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_21_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_22_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_23_{axis=(0, 1, 2), f='all', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_24_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_25_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_26_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_27_{axis=(0, 1, 2), f='any', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_28_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_29_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_30_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_31_{axis=(0, 1, 2), f='any', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_32_{axis=0, f='all', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_33_{axis=0, f='all', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_34_{axis=0, f='all', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_35_{axis=0, f='all', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_36_{axis=0, f='all', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_37_{axis=0, f='all', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_38_{axis=0, f='all', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_39_{axis=0, f='all', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_40_{axis=0, f='any', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_41_{axis=0, f='any', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_42_{axis=0, f='any', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_43_{axis=0, f='any', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_44_{axis=0, f='any', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_45_{axis=0, f='any', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_46_{axis=0, f='any', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_47_{axis=0, f='any', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_48_{axis=1, f='all', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_49_{axis=1, f='all', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_50_{axis=1, f='all', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_51_{axis=1, f='all', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_52_{axis=1, f='all', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_53_{axis=1, f='all', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_54_{axis=1, f='all', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_55_{axis=1, f='all', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_56_{axis=1, f='any', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_57_{axis=1, f='any', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_58_{axis=1, f='any', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_59_{axis=1, f='any', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_60_{axis=1, f='any', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_61_{axis=1, f='any', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_62_{axis=1, f='any', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_63_{axis=1, f='any', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_64_{axis=2, f='all', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_65_{axis=2, f='all', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_66_{axis=2, f='all', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_67_{axis=2, f='all', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_68_{axis=2, f='all', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_69_{axis=2, f='all', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_70_{axis=2, f='all', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_71_{axis=2, f='all', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_72_{axis=2, f='any', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_73_{axis=2, f='any', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_74_{axis=2, f='any', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_75_{axis=2, f='any', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_76_{axis=2, f='any', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_77_{axis=2, f='any', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_78_{axis=2, f='any', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_79_{axis=2, f='any', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_80_{axis=(0, 1), f='all', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_81_{axis=(0, 1), f='all', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_82_{axis=(0, 1), f='all', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_83_{axis=(0, 1), f='all', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_84_{axis=(0, 1), f='all', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_85_{axis=(0, 1), f='all', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_86_{axis=(0, 1), f='all', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_87_{axis=(0, 1), f='all', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_88_{axis=(0, 1), f='any', keepdims=False, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_89_{axis=(0, 1), f='any', keepdims=False, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_90_{axis=(0, 1), f='any', keepdims=False, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_91_{axis=(0, 1), f='any', keepdims=False, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_92_{axis=(0, 1), f='any', keepdims=True, x=array([[[nan]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_93_{axis=(0, 1), f='any', keepdims=True, x=array([[[nan, 0.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_94_{axis=(0, 1), f='any', keepdims=True, x=array([[[nan, 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestAllAnyWithNaN::test_with_out[_param_95_{axis=(0, 1), f='any', keepdims=True, x=array([[[nan, 0., 1.]]])}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_0_{assume_unique=False, f='in1d', invert=False, shape_x=(0,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_1_{assume_unique=False, f='in1d', invert=False, shape_x=(0,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_2_{assume_unique=False, f='in1d', invert=False, shape_x=(0,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_3_{assume_unique=False, f='in1d', invert=False, shape_x=(0,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_4_{assume_unique=False, f='in1d', invert=False, shape_x=(0,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_5_{assume_unique=False, f='in1d', invert=False, shape_x=(0,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_6_{assume_unique=False, f='in1d', invert=False, shape_x=(3,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_7_{assume_unique=False, f='in1d', invert=False, shape_x=(3,), shape_y=(3,)}] | 9.58 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_8_{assume_unique=False, f='in1d', invert=False, shape_x=(3,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_9_{assume_unique=False, f='in1d', invert=False, shape_x=(3,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_10_{assume_unique=False, f='in1d', invert=False, shape_x=(3,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_11_{assume_unique=False, f='in1d', invert=False, shape_x=(3,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_12_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_13_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_14_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_15_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_16_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_17_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_18_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 1, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_19_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 1, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_20_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 1, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_21_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 1, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_22_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 1, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_23_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 1, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_24_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 0, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_25_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 0, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_26_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 0, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_27_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 0, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_28_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 0, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_29_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 0, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_30_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 0, 1, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_31_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 0, 1, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_32_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_33_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_34_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_35_{assume_unique=False, f='in1d', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_36_{assume_unique=False, f='in1d', invert=True, shape_x=(0,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_37_{assume_unique=False, f='in1d', invert=True, shape_x=(0,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_38_{assume_unique=False, f='in1d', invert=True, shape_x=(0,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_39_{assume_unique=False, f='in1d', invert=True, shape_x=(0,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_40_{assume_unique=False, f='in1d', invert=True, shape_x=(0,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_41_{assume_unique=False, f='in1d', invert=True, shape_x=(0,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_42_{assume_unique=False, f='in1d', invert=True, shape_x=(3,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_43_{assume_unique=False, f='in1d', invert=True, shape_x=(3,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_44_{assume_unique=False, f='in1d', invert=True, shape_x=(3,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_45_{assume_unique=False, f='in1d', invert=True, shape_x=(3,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_46_{assume_unique=False, f='in1d', invert=True, shape_x=(3,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_47_{assume_unique=False, f='in1d', invert=True, shape_x=(3,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_48_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_49_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_50_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_51_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_52_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_53_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_54_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 1, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_55_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 1, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_56_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 1, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_57_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 1, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_58_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 1, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_59_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 1, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_60_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 0, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_61_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 0, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_62_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 0, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_63_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 0, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_64_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 0, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_65_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 0, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_66_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 0, 1, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_67_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 0, 1, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_68_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_69_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_70_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_71_{assume_unique=False, f='in1d', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_72_{assume_unique=False, f='isin', invert=False, shape_x=(0,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_73_{assume_unique=False, f='isin', invert=False, shape_x=(0,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_74_{assume_unique=False, f='isin', invert=False, shape_x=(0,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_75_{assume_unique=False, f='isin', invert=False, shape_x=(0,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_76_{assume_unique=False, f='isin', invert=False, shape_x=(0,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_77_{assume_unique=False, f='isin', invert=False, shape_x=(0,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_78_{assume_unique=False, f='isin', invert=False, shape_x=(3,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_79_{assume_unique=False, f='isin', invert=False, shape_x=(3,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_80_{assume_unique=False, f='isin', invert=False, shape_x=(3,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_81_{assume_unique=False, f='isin', invert=False, shape_x=(3,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_82_{assume_unique=False, f='isin', invert=False, shape_x=(3,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_83_{assume_unique=False, f='isin', invert=False, shape_x=(3,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_84_{assume_unique=False, f='isin', invert=False, shape_x=(2, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_85_{assume_unique=False, f='isin', invert=False, shape_x=(2, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_86_{assume_unique=False, f='isin', invert=False, shape_x=(2, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_87_{assume_unique=False, f='isin', invert=False, shape_x=(2, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_88_{assume_unique=False, f='isin', invert=False, shape_x=(2, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_89_{assume_unique=False, f='isin', invert=False, shape_x=(2, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_90_{assume_unique=False, f='isin', invert=False, shape_x=(2, 1, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_91_{assume_unique=False, f='isin', invert=False, shape_x=(2, 1, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_92_{assume_unique=False, f='isin', invert=False, shape_x=(2, 1, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_93_{assume_unique=False, f='isin', invert=False, shape_x=(2, 1, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_94_{assume_unique=False, f='isin', invert=False, shape_x=(2, 1, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_95_{assume_unique=False, f='isin', invert=False, shape_x=(2, 1, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_96_{assume_unique=False, f='isin', invert=False, shape_x=(2, 0, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_97_{assume_unique=False, f='isin', invert=False, shape_x=(2, 0, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_98_{assume_unique=False, f='isin', invert=False, shape_x=(2, 0, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_99_{assume_unique=False, f='isin', invert=False, shape_x=(2, 0, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_100_{assume_unique=False, f='isin', invert=False, shape_x=(2, 0, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_101_{assume_unique=False, f='isin', invert=False, shape_x=(2, 0, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_102_{assume_unique=False, f='isin', invert=False, shape_x=(2, 0, 1, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_103_{assume_unique=False, f='isin', invert=False, shape_x=(2, 0, 1, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_104_{assume_unique=False, f='isin', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_105_{assume_unique=False, f='isin', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_106_{assume_unique=False, f='isin', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_107_{assume_unique=False, f='isin', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_108_{assume_unique=False, f='isin', invert=True, shape_x=(0,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_109_{assume_unique=False, f='isin', invert=True, shape_x=(0,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_110_{assume_unique=False, f='isin', invert=True, shape_x=(0,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_111_{assume_unique=False, f='isin', invert=True, shape_x=(0,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_112_{assume_unique=False, f='isin', invert=True, shape_x=(0,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_113_{assume_unique=False, f='isin', invert=True, shape_x=(0,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_114_{assume_unique=False, f='isin', invert=True, shape_x=(3,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_115_{assume_unique=False, f='isin', invert=True, shape_x=(3,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_116_{assume_unique=False, f='isin', invert=True, shape_x=(3,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_117_{assume_unique=False, f='isin', invert=True, shape_x=(3,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_118_{assume_unique=False, f='isin', invert=True, shape_x=(3,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_119_{assume_unique=False, f='isin', invert=True, shape_x=(3,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_120_{assume_unique=False, f='isin', invert=True, shape_x=(2, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_121_{assume_unique=False, f='isin', invert=True, shape_x=(2, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_122_{assume_unique=False, f='isin', invert=True, shape_x=(2, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_123_{assume_unique=False, f='isin', invert=True, shape_x=(2, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_124_{assume_unique=False, f='isin', invert=True, shape_x=(2, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_125_{assume_unique=False, f='isin', invert=True, shape_x=(2, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_126_{assume_unique=False, f='isin', invert=True, shape_x=(2, 1, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_127_{assume_unique=False, f='isin', invert=True, shape_x=(2, 1, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_128_{assume_unique=False, f='isin', invert=True, shape_x=(2, 1, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_129_{assume_unique=False, f='isin', invert=True, shape_x=(2, 1, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_130_{assume_unique=False, f='isin', invert=True, shape_x=(2, 1, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_131_{assume_unique=False, f='isin', invert=True, shape_x=(2, 1, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_132_{assume_unique=False, f='isin', invert=True, shape_x=(2, 0, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_133_{assume_unique=False, f='isin', invert=True, shape_x=(2, 0, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_134_{assume_unique=False, f='isin', invert=True, shape_x=(2, 0, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_135_{assume_unique=False, f='isin', invert=True, shape_x=(2, 0, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_136_{assume_unique=False, f='isin', invert=True, shape_x=(2, 0, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_137_{assume_unique=False, f='isin', invert=True, shape_x=(2, 0, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_138_{assume_unique=False, f='isin', invert=True, shape_x=(2, 0, 1, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_139_{assume_unique=False, f='isin', invert=True, shape_x=(2, 0, 1, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_140_{assume_unique=False, f='isin', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_141_{assume_unique=False, f='isin', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_142_{assume_unique=False, f='isin', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_143_{assume_unique=False, f='isin', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_144_{assume_unique=True, f='in1d', invert=False, shape_x=(0,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_145_{assume_unique=True, f='in1d', invert=False, shape_x=(0,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_146_{assume_unique=True, f='in1d', invert=False, shape_x=(0,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_147_{assume_unique=True, f='in1d', invert=False, shape_x=(0,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_148_{assume_unique=True, f='in1d', invert=False, shape_x=(0,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_149_{assume_unique=True, f='in1d', invert=False, shape_x=(0,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_150_{assume_unique=True, f='in1d', invert=False, shape_x=(3,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_151_{assume_unique=True, f='in1d', invert=False, shape_x=(3,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_152_{assume_unique=True, f='in1d', invert=False, shape_x=(3,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_153_{assume_unique=True, f='in1d', invert=False, shape_x=(3,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_154_{assume_unique=True, f='in1d', invert=False, shape_x=(3,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_155_{assume_unique=True, f='in1d', invert=False, shape_x=(3,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_156_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_157_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_158_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_159_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_160_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_161_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_162_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 1, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_163_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 1, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_164_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 1, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_165_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 1, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_166_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 1, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_167_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 1, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_168_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 0, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_169_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 0, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_170_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 0, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_171_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 0, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_172_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 0, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_173_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 0, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_174_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 0, 1, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_175_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 0, 1, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_176_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_177_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_178_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_179_{assume_unique=True, f='in1d', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_180_{assume_unique=True, f='in1d', invert=True, shape_x=(0,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_181_{assume_unique=True, f='in1d', invert=True, shape_x=(0,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_182_{assume_unique=True, f='in1d', invert=True, shape_x=(0,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_183_{assume_unique=True, f='in1d', invert=True, shape_x=(0,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_184_{assume_unique=True, f='in1d', invert=True, shape_x=(0,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_185_{assume_unique=True, f='in1d', invert=True, shape_x=(0,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_186_{assume_unique=True, f='in1d', invert=True, shape_x=(3,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_187_{assume_unique=True, f='in1d', invert=True, shape_x=(3,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_188_{assume_unique=True, f='in1d', invert=True, shape_x=(3,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_189_{assume_unique=True, f='in1d', invert=True, shape_x=(3,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_190_{assume_unique=True, f='in1d', invert=True, shape_x=(3,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_191_{assume_unique=True, f='in1d', invert=True, shape_x=(3,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_192_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_193_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_194_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_195_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_196_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_197_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_198_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 1, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_199_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 1, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_200_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 1, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_201_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 1, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_202_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 1, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_203_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 1, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_204_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 0, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_205_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 0, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_206_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 0, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_207_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 0, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_208_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 0, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_209_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 0, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_210_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 0, 1, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_211_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 0, 1, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_212_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_213_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_214_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_215_{assume_unique=True, f='in1d', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_216_{assume_unique=True, f='isin', invert=False, shape_x=(0,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_217_{assume_unique=True, f='isin', invert=False, shape_x=(0,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_218_{assume_unique=True, f='isin', invert=False, shape_x=(0,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_219_{assume_unique=True, f='isin', invert=False, shape_x=(0,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_220_{assume_unique=True, f='isin', invert=False, shape_x=(0,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_221_{assume_unique=True, f='isin', invert=False, shape_x=(0,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_222_{assume_unique=True, f='isin', invert=False, shape_x=(3,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_223_{assume_unique=True, f='isin', invert=False, shape_x=(3,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_224_{assume_unique=True, f='isin', invert=False, shape_x=(3,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_225_{assume_unique=True, f='isin', invert=False, shape_x=(3,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_226_{assume_unique=True, f='isin', invert=False, shape_x=(3,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_227_{assume_unique=True, f='isin', invert=False, shape_x=(3,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_228_{assume_unique=True, f='isin', invert=False, shape_x=(2, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_229_{assume_unique=True, f='isin', invert=False, shape_x=(2, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_230_{assume_unique=True, f='isin', invert=False, shape_x=(2, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_231_{assume_unique=True, f='isin', invert=False, shape_x=(2, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_232_{assume_unique=True, f='isin', invert=False, shape_x=(2, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_233_{assume_unique=True, f='isin', invert=False, shape_x=(2, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_234_{assume_unique=True, f='isin', invert=False, shape_x=(2, 1, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_235_{assume_unique=True, f='isin', invert=False, shape_x=(2, 1, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_236_{assume_unique=True, f='isin', invert=False, shape_x=(2, 1, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_237_{assume_unique=True, f='isin', invert=False, shape_x=(2, 1, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_238_{assume_unique=True, f='isin', invert=False, shape_x=(2, 1, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_239_{assume_unique=True, f='isin', invert=False, shape_x=(2, 1, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_240_{assume_unique=True, f='isin', invert=False, shape_x=(2, 0, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_241_{assume_unique=True, f='isin', invert=False, shape_x=(2, 0, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_242_{assume_unique=True, f='isin', invert=False, shape_x=(2, 0, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_243_{assume_unique=True, f='isin', invert=False, shape_x=(2, 0, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_244_{assume_unique=True, f='isin', invert=False, shape_x=(2, 0, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_245_{assume_unique=True, f='isin', invert=False, shape_x=(2, 0, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_246_{assume_unique=True, f='isin', invert=False, shape_x=(2, 0, 1, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_247_{assume_unique=True, f='isin', invert=False, shape_x=(2, 0, 1, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_248_{assume_unique=True, f='isin', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_249_{assume_unique=True, f='isin', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_250_{assume_unique=True, f='isin', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_251_{assume_unique=True, f='isin', invert=False, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_252_{assume_unique=True, f='isin', invert=True, shape_x=(0,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_253_{assume_unique=True, f='isin', invert=True, shape_x=(0,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_254_{assume_unique=True, f='isin', invert=True, shape_x=(0,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_255_{assume_unique=True, f='isin', invert=True, shape_x=(0,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_256_{assume_unique=True, f='isin', invert=True, shape_x=(0,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_257_{assume_unique=True, f='isin', invert=True, shape_x=(0,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_258_{assume_unique=True, f='isin', invert=True, shape_x=(3,), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_259_{assume_unique=True, f='isin', invert=True, shape_x=(3,), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_260_{assume_unique=True, f='isin', invert=True, shape_x=(3,), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_261_{assume_unique=True, f='isin', invert=True, shape_x=(3,), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_262_{assume_unique=True, f='isin', invert=True, shape_x=(3,), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_263_{assume_unique=True, f='isin', invert=True, shape_x=(3,), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_264_{assume_unique=True, f='isin', invert=True, shape_x=(2, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_265_{assume_unique=True, f='isin', invert=True, shape_x=(2, 3), shape_y=(3,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_266_{assume_unique=True, f='isin', invert=True, shape_x=(2, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_267_{assume_unique=True, f='isin', invert=True, shape_x=(2, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_268_{assume_unique=True, f='isin', invert=True, shape_x=(2, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_269_{assume_unique=True, f='isin', invert=True, shape_x=(2, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_270_{assume_unique=True, f='isin', invert=True, shape_x=(2, 1, 3), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_271_{assume_unique=True, f='isin', invert=True, shape_x=(2, 1, 3), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_272_{assume_unique=True, f='isin', invert=True, shape_x=(2, 1, 3), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_273_{assume_unique=True, f='isin', invert=True, shape_x=(2, 1, 3), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_274_{assume_unique=True, f='isin', invert=True, shape_x=(2, 1, 3), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_275_{assume_unique=True, f='isin', invert=True, shape_x=(2, 1, 3), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_276_{assume_unique=True, f='isin', invert=True, shape_x=(2, 0, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_277_{assume_unique=True, f='isin', invert=True, shape_x=(2, 0, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_278_{assume_unique=True, f='isin', invert=True, shape_x=(2, 0, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_279_{assume_unique=True, f='isin', invert=True, shape_x=(2, 0, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_280_{assume_unique=True, f='isin', invert=True, shape_x=(2, 0, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_281_{assume_unique=True, f='isin', invert=True, shape_x=(2, 0, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_282_{assume_unique=True, f='isin', invert=True, shape_x=(2, 0, 1, 1), shape_y=(0,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_283_{assume_unique=True, f='isin', invert=True, shape_x=(2, 0, 1, 1), shape_y=(3,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_284_{assume_unique=True, f='isin', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_285_{assume_unique=True, f='isin', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 1, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_286_{assume_unique=True, f='isin', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_truth.py::TestIn1DIsIn::test[_param_287_{assume_unique=True, f='isin', invert=True, shape_x=(2, 0, 1, 1), shape_y=(2, 0, 1, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_0_{value=0}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_1_{value=0.0}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_2_{value=True}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_3_{value=1}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_4_{value=array([1, 2], dtype=int32)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_5_{value=(1+0j)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_6_{value=1j}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_7_{value=(1+1j)}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_8_{value=None}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_9_{value=<object object at 0x7f24dd6b71e0>}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_10_{value='abc'}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_11_{value=''}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_12_{value=int}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalarValues_param_13_{value=int32}::test_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsFortran_param_0_{value=array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1..., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsFortran_param_1_{value=array([[1., 1., 1., 1., 1., 1.], [1., 1.,...., 1., 1., 1.], [1., 1., 1., 1., 1., 1.]])}::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsFortran_param_2_{value=array([[1., 1., 1., 1., 1., 1.], [1., 1.,...., 1., 1., 1.], [1., 1., 1., 1., 1., 1.]])}::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsFortran_param_3_{value=array([[1., 1., 1., 1., 1., 1.]])}::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestTypeTestingFunctions_param_0_{func='iscomplex'}::test | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestTypeTestingFunctions_param_0_{func='iscomplex'}::test_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestTypeTestingFunctions_param_0_{func='iscomplex'}::test_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestTypeTestingFunctions_param_1_{func='isreal'}::test | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestTypeTestingFunctions_param_1_{func='isreal'}::test_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestTypeTestingFunctions_param_1_{func='isreal'}::test_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestTypeTestingObjFunctions_param_0_{func='iscomplexobj'}::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestTypeTestingObjFunctions_param_0_{func='iscomplexobj'}::test_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestTypeTestingObjFunctions_param_0_{func='iscomplexobj'}::test_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestTypeTestingObjFunctions_param_1_{func='isrealobj'}::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestTypeTestingObjFunctions_param_1_{func='isrealobj'}::test_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestTypeTestingObjFunctions_param_1_{func='isrealobj'}::test_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalar::test_argspec | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/logic_tests/test_type_test.py::TestIsScalar::test_docstring | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_0_{trim='fb'}::test_trim_all_zeros | 8.85 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_0_{trim='fb'}::test_trim_back_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_0_{trim='fb'}::test_trim_front_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_0_{trim='fb'}::test_trim_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_0_{trim='fb'}::test_trim_non_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_0_{trim='fb'}::test_trim_trimmed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_0_{trim='fb'}::test_trim_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_1_{trim='f'}::test_trim_all_zeros | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_1_{trim='f'}::test_trim_back_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_1_{trim='f'}::test_trim_front_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_1_{trim='f'}::test_trim_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_1_{trim='f'}::test_trim_non_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_1_{trim='f'}::test_trim_trimmed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_1_{trim='f'}::test_trim_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_2_{trim='b'}::test_trim_all_zeros | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_2_{trim='b'}::test_trim_back_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_2_{trim='b'}::test_trim_front_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_2_{trim='b'}::test_trim_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_2_{trim='b'}::test_trim_non_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_2_{trim='b'}::test_trim_trimmed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestTrim_zeros_param_2_{trim='b'}::test_trim_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestAppend::test | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestAppend::test_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestAppend::test_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestAppend::test_numpy_scalar_lhs | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestAppend::test_numpy_scalar_rhs | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestAppend::test_scalar_both | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestAppend::test_scalar_lhs | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestAppend::test_scalar_rhs | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestAppend::test_zerodim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestResize::test | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestResize::test_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestResize::test_remainder | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestResize::test_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestResize::test_scalar_shape_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestResize::test_shape_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestResize::test_typed_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestResize::test_zerodim | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestUnique::test_unique | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestUnique::test_unique_counts | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestUnique::test_unique_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestUnique::test_unique_empty_return_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestUnique::test_unique_index | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestUnique::test_unique_inverse | 1.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_add_remove.py::TestUnique::test_unique_return_all | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestBasic::test_copyto | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestBasic::test_copyto_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestBasic::test_copyto_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestBasic::test_copyto_where | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestBasic::test_copyto_where_raises[shape0] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestBasic::test_copyto_where_raises[shape1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestBasic::test_copyto_where_multigpu_raises | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestBasic::test_copyto_multigpu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestBasic::test_copyto_multigpu_noncontinguous | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_0_{dst_shape=(), src=3.2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_1_{dst_shape=(), src=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_2_{dst_shape=(), src=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_3_{dst_shape=(), src=-4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_4_{dst_shape=(), src=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_5_{dst_shape=(), src=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_6_{dst_shape=(), src=(1+1j)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_7_{dst_shape=(0,), src=3.2}] | 0.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_8_{dst_shape=(0,), src=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_9_{dst_shape=(0,), src=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_10_{dst_shape=(0,), src=-4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_11_{dst_shape=(0,), src=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_12_{dst_shape=(0,), src=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_13_{dst_shape=(0,), src=(1+1j)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_14_{dst_shape=(1,), src=3.2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_15_{dst_shape=(1,), src=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_16_{dst_shape=(1,), src=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_17_{dst_shape=(1,), src=-4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_18_{dst_shape=(1,), src=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_19_{dst_shape=(1,), src=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_20_{dst_shape=(1,), src=(1+1j)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_21_{dst_shape=(1, 1), src=3.2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_22_{dst_shape=(1, 1), src=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_23_{dst_shape=(1, 1), src=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_24_{dst_shape=(1, 1), src=-4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_25_{dst_shape=(1, 1), src=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_26_{dst_shape=(1, 1), src=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_27_{dst_shape=(1, 1), src=(1+1j)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_28_{dst_shape=(2, 2), src=3.2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_29_{dst_shape=(2, 2), src=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_30_{dst_shape=(2, 2), src=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_31_{dst_shape=(2, 2), src=-4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_32_{dst_shape=(2, 2), src=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_33_{dst_shape=(2, 2), src=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto[_param_34_{dst_shape=(2, 2), src=(1+1j)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_0_{dst_shape=(), src=3.2}] | 14.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_1_{dst_shape=(), src=0}] | 7.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_2_{dst_shape=(), src=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_3_{dst_shape=(), src=-4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_4_{dst_shape=(), src=True}] | 7.90 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_5_{dst_shape=(), src=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_6_{dst_shape=(), src=(1+1j)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_7_{dst_shape=(0,), src=3.2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_8_{dst_shape=(0,), src=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_9_{dst_shape=(0,), src=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_10_{dst_shape=(0,), src=-4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_11_{dst_shape=(0,), src=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_12_{dst_shape=(0,), src=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_13_{dst_shape=(0,), src=(1+1j)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_14_{dst_shape=(1,), src=3.2}] | 1.99 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_15_{dst_shape=(1,), src=0}] | 7.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_16_{dst_shape=(1,), src=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_17_{dst_shape=(1,), src=-4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_18_{dst_shape=(1,), src=True}] | 8.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_19_{dst_shape=(1,), src=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_20_{dst_shape=(1,), src=(1+1j)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_21_{dst_shape=(1, 1), src=3.2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_22_{dst_shape=(1, 1), src=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_23_{dst_shape=(1, 1), src=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_24_{dst_shape=(1, 1), src=-4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_25_{dst_shape=(1, 1), src=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_26_{dst_shape=(1, 1), src=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_27_{dst_shape=(1, 1), src=(1+1j)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_28_{dst_shape=(2, 2), src=3.2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_29_{dst_shape=(2, 2), src=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_30_{dst_shape=(2, 2), src=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_31_{dst_shape=(2, 2), src=-4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_32_{dst_shape=(2, 2), src=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_33_{dst_shape=(2, 2), src=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::TestCopytoFromScalar::test_copyto_where[_param_34_{dst_shape=(2, 2), src=(1+1j)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[3.2-shape0] | 9.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[3.2-shape1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[0-shape0] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[0-shape1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[4-shape0] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[4-shape1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[-4-shape0] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[-4-shape1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[True-shape0] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[True-shape1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[False-shape0] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[False-shape1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[where6-shape0] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_basic.py::test_copyto_scalarwhere[where6-shape1] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_0_{shapes=[(), ()]}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_0_{shapes=[(), ()]}::test_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_1_{shapes=[(0,), (0,)]}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_1_{shapes=[(0,), (0,)]}::test_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_2_{shapes=[(1,), (1,)]}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_3_{shapes=[(2,), (2,)]}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_4_{shapes=[(0,), (1,)]}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_4_{shapes=[(0,), (1,)]}::test_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_5_{shapes=[(2, 3), (1, 3)]}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_5_{shapes=[(2, 3), (1, 3)]}::test_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_6_{shapes=[(2, 1, 3, 4), (3, 1, 4)]}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_6_{shapes=[(2, 1, 3, 4), (3, 1, 4)]}::test_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_7_{shapes=[(4, 3, 2, 3), (2, 3)]}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_7_{shapes=[(4, 3, 2, 3), (2, 3)]}::test_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_8_{shapes=[(2, 0, 1, 1, 3), (2, 1, 0, 0, 3)]}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_8_{shapes=[(2, 0, 1, 1, 3), (2, 1, 0, 0, 3)]}::test_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_9_{shapes=[(0, 1, 1, 3), (2, 1, 0, 0, 3)]}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_9_{shapes=[(0, 1, 1, 3), (2, 1, 0, 0, 3)]}::test_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_10_{shapes=[(0, 1, 1, 0, 3), (5, 2, 0, 1, 0, 0, 3), (2, 1, 0, 0, 0, 3)]}::test_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestBroadcast_param_10_{shapes=[(0, 1, 1, 0, 3), (5, 2, 0, 1, 0, 0, 3), (2, 1, 0, 0, 0, 3)]}::test_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestInvalidBroadcast_param_0_{shapes=[(3,), (2,)]}::test_invalid_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestInvalidBroadcast_param_0_{shapes=[(3,), (2,)]}::test_invalid_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestInvalidBroadcast_param_1_{shapes=[(3, 2), (2, 3)]}::test_invalid_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestInvalidBroadcast_param_1_{shapes=[(3, 2), (2, 3)]}::test_invalid_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestInvalidBroadcast_param_2_{shapes=[(3, 2), (3, 4)]}::test_invalid_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestInvalidBroadcast_param_2_{shapes=[(3, 2), (3, 4)]}::test_invalid_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestInvalidBroadcast_param_3_{shapes=[(0,), (2,)]}::test_invalid_broadcast | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestInvalidBroadcast_param_3_{shapes=[(0,), (2,)]}::test_invalid_broadcast_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_atleast_1d1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_atleast_1d2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_atleast_2d1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_atleast_2d2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_atleast_3d1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_atleast_3d2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_broadcast_to | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_broadcast_to_fail | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_broadcast_to_fail_numpy19 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_broadcast_to_numpy19 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_broadcast_to_short_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_broadcast_to_short_shape_numpy19 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_expand_dims0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_expand_dims1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_expand_dims2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_expand_dims_negative1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_expand_dims_negative2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_expand_dims_out_of_range | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_expand_dims_repeated_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_expand_dims_tuple_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_external_squeeze | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_int_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_int_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_int_axis_failure1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_int_axis_failure2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_scalar1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_scalar2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_scalar_failure1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_scalar_failure2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_scalar_failure3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_scalar_failure4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_tuple_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_tuple_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_tuple_axis3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_tuple_axis4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_tuple_axis_failure1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_tuple_axis_failure2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_dims.py::TestDims::test_squeeze_tuple_axis_failure3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_column_stack | 44.49 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_column_stack_wrong_ndim1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_column_stack_wrong_ndim2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_column_stack_wrong_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_axis_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_different_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_f_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_large_2 | 9.99 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_large_3 | 8.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_large_4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_large_5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_large_different_devices | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_large_f_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_many_multi_dptye | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_out_different_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_out_invalid_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_out_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_out_invalid_shape_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_out_same_kind | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_wrong_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_concatenate_wrong_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_dstack | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_dstack_single_element | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_dstack_single_element_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_dstack_single_element_3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_hstack | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_hstack_scalars | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_hstack_vectors | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_different_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_out_invalid_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_out_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_out_invalid_shape_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_out_of_bounds1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_out_of_bounds2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_out_same_kind | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_with_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_with_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_with_axis_over | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_with_axis_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_with_negative_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_stack_with_negative_axis_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_vstack_single_element | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_vstack_vectors | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_join.py::TestJoin::test_vstack_wrong_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_kind.py::TestKind::test_asfortranarray1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_kind.py::TestKind::test_asfortranarray2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_kind.py::TestKind::test_asfortranarray3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_kind.py::TestKind::test_asfortranarray4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_kind.py::TestKind::test_asfortranarray5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_kind.py::TestKind::test_require_C_and_F_flags | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_kind.py::TestKind::test_require_empty_requirements | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_kind.py::TestKind::test_require_flag_check | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_kind.py::TestKind::test_require_incorrect_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_kind.py::TestKind::test_require_incorrect_requirments | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_kind.py::TestKind::test_require_owndata | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_0_{axis=None, shape=(10,), shift=2}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_0_{axis=None, shape=(10,), shift=2}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_1_{axis=None, shape=(5, 2), shift=1}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_1_{axis=None, shape=(5, 2), shift=1}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_2_{axis=None, shape=(5, 2), shift=-2}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_2_{axis=None, shape=(5, 2), shift=-2}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_3_{axis=0, shape=(5, 2), shift=1}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_3_{axis=0, shape=(5, 2), shift=1}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_4_{axis=-1, shape=(5, 2), shift=1}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_4_{axis=-1, shape=(5, 2), shift=1}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_5_{axis=None, shape=(10,), shift=35}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_5_{axis=None, shape=(10,), shift=35}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_6_{axis=0, shape=(5, 2), shift=11}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_6_{axis=0, shape=(5, 2), shift=11}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_7_{axis=None, shape=(), shift=5}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_7_{axis=None, shape=(), shift=5}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_8_{axis=(0, 1), shape=(5, 2), shift=1}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_8_{axis=(0, 1), shape=(5, 2), shift=1}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_9_{axis=(0, 0), shape=(5, 2), shift=1}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_9_{axis=(0, 0), shape=(5, 2), shift=1}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_10_{axis=0, shape=(5, 2), shift=50}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_10_{axis=0, shape=(5, 2), shift=50}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_11_{axis=(0, 1), shape=(5, 2), shift=(2, 1)}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_11_{axis=(0, 1), shape=(5, 2), shift=(2, 1)}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_12_{axis=(0, -1), shape=(5, 2), shift=(2, 1)}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_12_{axis=(0, -1), shape=(5, 2), shift=(2, 1)}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_13_{axis=(1, -1), shape=(5, 2), shift=(2, 1)}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_13_{axis=(1, -1), shape=(5, 2), shift=(2, 1)}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_14_{axis=0, shape=(5, 2), shift=(2, 1, 3)}::test_roll | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_14_{axis=0, shape=(5, 2), shift=(2, 1, 3)}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_15_{axis=None, shape=(5, 2), shift=(2, 1, 3)}::test_roll | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRoll_param_15_{axis=None, shape=(5, 2), shift=(2, 1, 3)}::test_roll_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollValueError_param_0_{axis=(0, 1), shape=(5, 2, 3), shift=(2, 2, 2)}::test_roll_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollValueError_param_0_{axis=(0, 1), shape=(5, 2, 3), shift=(2, 2, 2)}::test_roll_invalid_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollValueError_param_1_{axis=2, shape=(5, 2), shift=1}::test_roll_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollValueError_param_1_{axis=2, shape=(5, 2), shift=1}::test_roll_invalid_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollValueError_param_2_{axis=-3, shape=(5, 2), shift=1}::test_roll_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollValueError_param_2_{axis=-3, shape=(5, 2), shift=1}::test_roll_invalid_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollValueError_param_3_{axis=(0, 1, 2), shape=(5, 2, 2), shift=(1, 0)}::test_roll_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollValueError_param_3_{axis=(0, 1, 2), shape=(5, 2, 2), shift=(1, 0)}::test_roll_invalid_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollValueError_param_4_{axis=-3, shape=(5, 2), shift=1}::test_roll_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollValueError_param_4_{axis=-3, shape=(5, 2), shift=1}::test_roll_invalid_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollValueError_param_5_{axis=(1, -3), shape=(5, 2), shift=1}::test_roll_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollValueError_param_5_{axis=(1, -3), shape=(5, 2), shift=1}::test_roll_invalid_cupy_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollTypeError::test_roll_invalid_axis_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRollTypeError::test_roll_invalid_shift | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFliplr::test_fliplr_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFliplr::test_fliplr_3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFliplr::test_fliplr_insufficient_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlipud::test_flipud_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlipud::test_flipud_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlipud::test_flipud_insufficient_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlip::test_flip_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlip::test_flip_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlip::test_flip_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlip::test_flip_empty_dim_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlip::test_flip_empty_dim_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlip::test_flip_empty_dim_3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlip::test_flip_empty_dim_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlip::test_flip_insufficient_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlip::test_flip_invalid_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlip::test_flip_invalid_negative_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlip::test_flip_with_axis_tuple | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestFlip::test_flip_with_negative_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRot90::test_rot90_insufficient_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRot90::test_rot90_invalid_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRot90::test_rot90_invalid_negative_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRot90::test_rot90_negative | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRot90::test_rot90_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRot90::test_rot90_too_much_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRot90::test_rot90_twice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRot90::test_rot90_with_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_rearrange.py::TestRot90::test_rot90_with_negative_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestShape_param_0_{shape=(2, 3)}::test_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestShape_param_0_{shape=(2, 3)}::test_shape_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestShape_param_1_{shape=()}::test_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestShape_param_1_{shape=()}::test_shape_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestShape_param_2_{shape=(4,)}::test_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestShape_param_2_{shape=(4,)}::test_shape_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_0_{order_init='C', order_reshape='C', shape_in_out=((2, 3), (1, 6, 1))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_1_{order_init='C', order_reshape='C', shape_in_out=((6,), (2, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_2_{order_init='C', order_reshape='C', shape_in_out=((3, 3, 3), (9, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_3_{order_init='C', order_reshape='F', shape_in_out=((2, 3), (1, 6, 1))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_4_{order_init='C', order_reshape='F', shape_in_out=((6,), (2, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_5_{order_init='C', order_reshape='F', shape_in_out=((3, 3, 3), (9, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_6_{order_init='C', order_reshape='A', shape_in_out=((2, 3), (1, 6, 1))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_7_{order_init='C', order_reshape='A', shape_in_out=((6,), (2, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_8_{order_init='C', order_reshape='A', shape_in_out=((3, 3, 3), (9, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_9_{order_init='C', order_reshape='c', shape_in_out=((2, 3), (1, 6, 1))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_10_{order_init='C', order_reshape='c', shape_in_out=((6,), (2, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_11_{order_init='C', order_reshape='c', shape_in_out=((3, 3, 3), (9, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_12_{order_init='C', order_reshape='f', shape_in_out=((2, 3), (1, 6, 1))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_13_{order_init='C', order_reshape='f', shape_in_out=((6,), (2, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_14_{order_init='C', order_reshape='f', shape_in_out=((3, 3, 3), (9, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_15_{order_init='C', order_reshape='a', shape_in_out=((2, 3), (1, 6, 1))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_16_{order_init='C', order_reshape='a', shape_in_out=((6,), (2, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_17_{order_init='C', order_reshape='a', shape_in_out=((3, 3, 3), (9, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_18_{order_init='F', order_reshape='C', shape_in_out=((2, 3), (1, 6, 1))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_19_{order_init='F', order_reshape='C', shape_in_out=((6,), (2, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_20_{order_init='F', order_reshape='C', shape_in_out=((3, 3, 3), (9, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_21_{order_init='F', order_reshape='F', shape_in_out=((2, 3), (1, 6, 1))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_22_{order_init='F', order_reshape='F', shape_in_out=((6,), (2, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_23_{order_init='F', order_reshape='F', shape_in_out=((3, 3, 3), (9, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_24_{order_init='F', order_reshape='A', shape_in_out=((2, 3), (1, 6, 1))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_25_{order_init='F', order_reshape='A', shape_in_out=((6,), (2, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_26_{order_init='F', order_reshape='A', shape_in_out=((3, 3, 3), (9, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_27_{order_init='F', order_reshape='c', shape_in_out=((2, 3), (1, 6, 1))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_28_{order_init='F', order_reshape='c', shape_in_out=((6,), (2, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_29_{order_init='F', order_reshape='c', shape_in_out=((3, 3, 3), (9, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_30_{order_init='F', order_reshape='f', shape_in_out=((2, 3), (1, 6, 1))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_31_{order_init='F', order_reshape='f', shape_in_out=((6,), (2, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_32_{order_init='F', order_reshape='f', shape_in_out=((3, 3, 3), (9, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_33_{order_init='F', order_reshape='a', shape_in_out=((2, 3), (1, 6, 1))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_34_{order_init='F', order_reshape='a', shape_in_out=((6,), (2, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshapeOrder_param_35_{order_init='F', order_reshape='a', shape_in_out=((3, 3, 3), (9, 3))}::test_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_external_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_nocopy_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_nocopy_reshape_with_order | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_reshape2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_reshape_invalid_order | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_reshape_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_reshape_with_changed_arraysize | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_reshape_with_multiple_unknown_dimensions | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_reshape_with_unknown_dimension | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_reshape_zerosize | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_reshape_zerosize2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_reshape_zerosize_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_reshape_zerosize_invalid_unknown | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestReshape::test_transposed_reshape2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestRavel::test_external_ravel | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestRavel::test_ravel | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestRavel::test_ravel2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_shape.py::TestRavel::test_ravel3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_array_split1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_array_split2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_array_split_empty_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_array_split_empty_sections | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_array_split_non_divisible | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_array_split_out_of_bound1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_array_split_out_of_bound2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_array_split_unordered_sections | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_dsplit | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_hsplit | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_hsplit_vectors | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_split_by_sections1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_split_by_sections2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_split_by_sections3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_split_out_of_bound1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_split_out_of_bound2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_split_unordered_sections | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_split.py::TestSplit::test_vsplit | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat_param_0_{axis=None, repeats=0}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat_param_1_{axis=None, repeats=2}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat_param_2_{axis=1, repeats=2}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat_param_3_{axis=-1, repeats=2}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat_param_4_{axis=1, repeats=[0, 0, 0]}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat_param_5_{axis=1, repeats=[1, 2, 3]}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat_param_6_{axis=-2, repeats=[1, 2, 3]}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeatListBroadcast_param_0_{axis=None, repeats=[2]}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeatListBroadcast_param_1_{axis=1, repeats=[2]}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat1D_param_0_{axis=None, repeats=0}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat1D_param_1_{axis=None, repeats=2}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat1D_param_2_{axis=0, repeats=2}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat1D_param_3_{axis=None, repeats=[1, 2, 3, 4]}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat1D_param_4_{axis=0, repeats=[1, 2, 3, 4]}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat1DListBroadcast_param_0_{axis=None, repeats=[2]}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeat1DListBroadcast_param_1_{axis=0, repeats=[2]}::test_array_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeatFailure_param_0_{axis=None, repeats=-3}::test_repeat_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeatFailure_param_1_{axis=0, repeats=[-3, -3]}::test_repeat_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeatFailure_param_2_{axis=None, repeats=[1, 2, 3]}::test_repeat_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeatFailure_param_3_{axis=1, repeats=[1, 2]}::test_repeat_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeatFailure_param_4_{axis=-4, repeats=2}::test_repeat_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeatFailure_param_5_{axis=3, repeats=2}::test_repeat_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestTile_param_0_{reps=0}::test_array_tile | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestTile_param_1_{reps=1}::test_array_tile | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestTile_param_2_{reps=2}::test_array_tile | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestTile_param_3_{reps=(0, 1)}::test_array_tile | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestTile_param_4_{reps=(2, 3)}::test_array_tile | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestTile_param_5_{reps=(2, 3, 4, 5)}::test_array_tile | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestTileFailure_param_0_{reps=-1}::test_tile_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestTileFailure_param_1_{reps=(-1, -2)}::test_tile_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeatRepeatsNdarray::test_func | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_tiling.py::TestRepeatRepeatsNdarray::test_method | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_external_transpose | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_external_transpose_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis6 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid1_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid1_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid1_3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid2_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid2_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid2_3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid3_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid3_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid4_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid4_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid5_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid5_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_moveaxis_invalid5_3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_rollaxis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_rollaxis_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_swapaxes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_swapaxes_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_transpose | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_transpose_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/manipulation_tests/test_transpose.py::TestTranspose::test_transpose_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_0_{name='reciprocal', nargs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_1_{name='conj', nargs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_2_{name='conjugate', nargs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_3_{name='angle', nargs=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_4_{name='add', nargs=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_5_{name='multiply', nargs=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_6_{name='divide', nargs=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_7_{name='power', nargs=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_8_{name='subtract', nargs=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_9_{name='true_divide', nargs=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_10_{name='floor_divide', nargs=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_11_{name='fmod', nargs=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticRaisesWithNumpyInput::test_raises_with_numpy_input[_param_12_{name='remainder', nargs=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_0_{arg1=array([[False, True, False], [ True, False, True]]), name='conj'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_1_{arg1=array([[False, True, False], [ True, False, True]]), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_2_{arg1=array([[False, True, False], [ True, False, True]]), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_3_{arg1=array([[False, True, False], [ True, False, True]]), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_4_{arg1=array([[False, True, False], [ True, False, True]]), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_5_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_6_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_7_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_8_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_9_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_10_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_11_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_12_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_13_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_14_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_15_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_16_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_17_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_18_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_19_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_20_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_21_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_22_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_23_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_24_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_25_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_26_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_27_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_28_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_29_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_30_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_31_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_32_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_33_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_34_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_35_{arg1=array([[1, 2, 3], [4, 5, 6]]), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_36_{arg1=array([[1, 2, 3], [4, 5, 6]]), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_37_{arg1=array([[1, 2, 3], [4, 5, 6]]), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_38_{arg1=array([[1, 2, 3], [4, 5, 6]]), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_39_{arg1=array([[1, 2, 3], [4, 5, 6]]), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_40_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_41_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_42_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_43_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_44_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_45_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_46_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_47_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_48_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_49_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_50_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_51_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_52_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_53_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_54_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_55_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_56_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_57_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_58_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_59_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_60_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_61_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_62_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_63_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_64_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_65_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_66_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_67_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_68_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_69_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_70_{arg1=0, name='conj'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_71_{arg1=0, name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_72_{arg1=0, name='angle'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_73_{arg1=0, name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_74_{arg1=0, name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_75_{arg1=0j, name='conj'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_76_{arg1=0j, name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_77_{arg1=0j, name='angle'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_78_{arg1=0j, name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_79_{arg1=0j, name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_80_{arg1=0j, name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_81_{arg1=0j, name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_82_{arg1=0j, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_83_{arg1=0j, name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_84_{arg1=0j, name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_85_{arg1=2, name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_86_{arg1=2, name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_87_{arg1=2, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_88_{arg1=2, name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_89_{arg1=2, name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_90_{arg1=2.0, name='conj'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_91_{arg1=2.0, name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_92_{arg1=2.0, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_93_{arg1=2.0, name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_94_{arg1=2.0, name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_95_{arg1=2j, name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_96_{arg1=2j, name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_97_{arg1=2j, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_98_{arg1=2j, name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_99_{arg1=2j, name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_100_{arg1=True, name='conj'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_101_{arg1=True, name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_102_{arg1=True, name='angle'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_103_{arg1=True, name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_104_{arg1=True, name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_105_{arg1=False, name='conj'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_106_{arg1=False, name='conjugate'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_107_{arg1=False, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_108_{arg1=False, name='real'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_109_{arg1=False, name='imag'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_110_{arg1=array([ True, True, True, True, True, True]), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_111_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_112_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_113_{arg1=array([-3., -2., -1., 1., 2., 3.]), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_114_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_115_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_116_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_117_{arg1=array([-3, -2, -1, 1, 2, 3]), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_118_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_119_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_120_{arg1=0, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_121_{arg1=0j, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_122_{arg1=0j, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_123_{arg1=2, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_124_{arg1=2.0, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_125_{arg1=2j, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_126_{arg1=-2, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_127_{arg1=-2.0, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_128_{arg1=(-0-2j), name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_129_{arg1=True, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_130_{arg1=False, name='angle'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_131_{arg1=array([[1, 2, 1], [2, 1, 2]]), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_132_{arg1=array([[2., 3., 4.], [5., 6., 7.]], dtype=float16), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_133_{arg1=array([[2., 3., 4.], [5., 6., 7.]], dtype=float32), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_134_{arg1=array([[2., 3., 4.], [5., 6., 7.]]), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_135_{arg1=array([[2, 3, 4], [5, 6, 7]], dtype=int8), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_136_{arg1=array([[2, 3, 4], [5, 6, 7]], dtype=int16), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_137_{arg1=array([[2, 3, 4], [5, 6, 7]], dtype=int32), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_138_{arg1=array([[2, 3, 4], [5, 6, 7]]), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_139_{arg1=array([[2, 3, 4], [5, 6, 7]], dtype=uint8), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_140_{arg1=array([[2, 3, 4], [5, 6, 7]], dtype=uint16), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_141_{arg1=array([[2, 3, 4], [5, 6, 7]], dtype=uint32), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_142_{arg1=array([[2, 3, 4], [5, 6, 7]], dtype=uint64), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_143_{arg1=array([[2.+1.j, 3.+2.j, 4.+3.j], [5.+4.j, 6.+5.j, 7.+6.j]], dtype=complex64), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_144_{arg1=array([[2.+1.j, 3.+2.j, 4.+3.j], [5.+4.j, 6.+5.j, 7.+6.j]]), name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_145_{arg1=2, name='reciprocal'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_146_{arg1=2.0, name='reciprocal'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_147_{arg1=2j, name='reciprocal'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticUnary::test_unary[_param_148_{arg1=True, name='reciprocal'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_real_ndarray_nocomplex[_param_0_{shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_real_ndarray_nocomplex[_param_1_{shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_real_ndarray_nocomplex[_param_2_{shape=(3, 0, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_real_nocomplex[_param_0_{shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_real_nocomplex[_param_1_{shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_real_nocomplex[_param_2_{shape=(3, 0, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_imag_ndarray_nocomplex[_param_0_{shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_imag_ndarray_nocomplex[_param_1_{shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_imag_ndarray_nocomplex[_param_2_{shape=(3, 0, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_imag_nocomplex[_param_0_{shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_imag_nocomplex[_param_1_{shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_imag_nocomplex[_param_2_{shape=(3, 0, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_real_ndarray_complex[_param_0_{shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_real_ndarray_complex[_param_1_{shape=()}] | 2.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_real_ndarray_complex[_param_2_{shape=(3, 0, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_real_complex[_param_0_{shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_real_complex[_param_1_{shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_real_complex[_param_2_{shape=(3, 0, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_imag_ndarray_complex[_param_0_{shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_imag_ndarray_complex[_param_1_{shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_imag_ndarray_complex[_param_2_{shape=(3, 0, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_imag_complex[_param_0_{shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_imag_complex[_param_1_{shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestComplex::test_imag_complex[_param_2_{shape=(3, 0, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_0_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_4_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_5_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_6_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_7_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_8_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_9_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_10_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_11_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_12_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_13_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_14_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_15_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_16_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_17_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_18_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_19_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_20_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_21_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_22_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_23_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_24_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_25_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_26_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_27_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_28_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_29_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_30_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_31_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_32_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_33_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_34_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_35_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_36_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_37_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_38_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_39_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_40_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_41_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_42_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_43_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_44_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_45_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_46_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_47_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_48_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_49_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_50_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_51_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_52_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_53_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_54_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_55_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_56_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_57_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0, name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_58_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0, name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_59_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0, name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_60_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_61_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0.0, name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_62_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0.0, name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_63_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0.0, name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_64_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0j, name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_65_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0j, name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_66_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_67_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0j, name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_68_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_69_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_70_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_71_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_72_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_73_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_74_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_75_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_76_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_77_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_78_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_79_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_80_{arg1=array([[False, True, False], [ True, False, True]]), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_81_{arg1=array([[False, True, False], [ True, False, True]]), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_82_{arg1=array([[False, True, False], [ True, False, True]]), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_83_{arg1=array([[False, True, False], [ True, False, True]]), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_84_{arg1=array([[False, True, False], [ True, False, True]]), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_85_{arg1=array([[False, True, False], [ True, False, True]]), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_86_{arg1=array([[False, True, False], [ True, False, True]]), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_87_{arg1=array([[False, True, False], [ True, False, True]]), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_88_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_89_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_90_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_91_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_92_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_93_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_94_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_95_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_96_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_97_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_98_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_99_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_100_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_101_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_102_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_103_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_104_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_105_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_106_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_107_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_108_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_109_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_110_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_111_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_112_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_113_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_114_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_115_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_116_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_117_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_118_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_119_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_120_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_121_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_122_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_123_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_124_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_125_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_126_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_127_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_128_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_129_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_130_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_131_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_132_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_133_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_134_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_135_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_136_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_137_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_138_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_139_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_140_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_141_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_142_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_143_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_144_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_145_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_146_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_147_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_148_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_149_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_150_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_151_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_152_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_153_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0j, name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_154_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0j, name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_155_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0j, name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_156_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_157_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_158_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_159_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_160_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_161_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_162_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_163_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_164_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_165_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_166_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_167_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_168_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_169_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_170_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_171_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_172_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_173_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_174_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_175_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_176_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_177_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_178_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_179_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_180_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_181_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_182_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_183_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_184_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_185_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_186_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_187_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_188_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_189_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_190_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_191_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_192_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_193_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_194_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_195_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_196_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_197_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_198_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_199_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_200_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_201_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_202_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_203_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_204_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_205_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_206_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_207_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_208_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_209_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_210_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_211_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_212_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_213_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_214_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_215_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_216_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_217_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_218_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_219_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_220_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_221_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_222_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_223_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_224_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_225_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_226_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_227_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_228_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_229_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_230_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_231_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_232_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_233_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_234_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_235_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_236_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_237_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_238_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_239_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_240_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_241_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0j, name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_242_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0j, name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_243_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0j, name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_244_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_245_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_246_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_247_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_248_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_249_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_250_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_251_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_252_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_253_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_254_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_255_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_256_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_257_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_258_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_259_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_260_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_261_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_262_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_263_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_264_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_265_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_266_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_267_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_268_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_269_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_270_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_271_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_272_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_273_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_274_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_275_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_276_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_277_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_278_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_279_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_280_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_281_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_282_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_283_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_284_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_285_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_286_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_287_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_288_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_289_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_290_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_291_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_292_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_293_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_294_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_295_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_296_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_297_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_298_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_299_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_300_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_301_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_302_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_303_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_304_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_305_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_306_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_307_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_308_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_309_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_310_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_311_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_312_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_313_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_314_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_315_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_316_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_317_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_318_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_319_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_320_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_321_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_322_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_323_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_324_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_325_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_326_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_327_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_328_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_329_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_330_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_331_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_332_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_333_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_334_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_335_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_336_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_337_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_338_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_339_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_340_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_341_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_342_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_343_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_344_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_345_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_346_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_347_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_348_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_349_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_350_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_351_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_352_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_353_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_354_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_355_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_356_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_357_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_358_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_359_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_360_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_361_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_362_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_363_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_364_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_365_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_366_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_367_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_368_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_369_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_370_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_371_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_372_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_373_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_374_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_375_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_376_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_377_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_378_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_379_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_380_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_381_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_382_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_383_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_384_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_385_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_386_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_387_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_388_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_389_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_390_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_391_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_392_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_393_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_394_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_395_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_396_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_397_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_398_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_399_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_400_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_401_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_402_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_403_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_404_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_405_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_406_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_407_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_408_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_409_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_410_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_411_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_412_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_413_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_414_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0.0, name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_415_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0.0, name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_416_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0j, name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_417_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0j, name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_418_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0j, name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_419_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0j, name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_420_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_421_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_422_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_423_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_424_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_425_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_426_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_427_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_428_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_429_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_430_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_431_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_432_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_433_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_434_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_435_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_436_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_437_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_438_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_439_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_440_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_441_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_442_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_443_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_444_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_445_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_446_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_447_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_448_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_449_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_450_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_451_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_452_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_453_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_454_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_455_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_456_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_457_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_458_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_459_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_460_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_461_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_462_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_463_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_464_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_465_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_466_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_467_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_468_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_469_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_470_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_471_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_472_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_473_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_474_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_475_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_476_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_477_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_478_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_479_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_480_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_481_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_482_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_483_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_484_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_485_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_486_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_487_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_488_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_489_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_490_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_491_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_492_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_493_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_494_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_495_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_496_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_497_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_498_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_499_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_500_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_501_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_502_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0.0, name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_503_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0.0, name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_504_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0j, name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_505_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0j, name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_506_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0j, name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_507_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0j, name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_508_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_509_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_510_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_511_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_512_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_513_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_514_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_515_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_516_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_517_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_518_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_519_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_520_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_521_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_522_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_523_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_524_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_525_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_526_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_527_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_528_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_529_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_530_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_531_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_532_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_533_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_534_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_535_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_536_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_537_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_538_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_539_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_540_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_541_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_542_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_543_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_544_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_545_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_546_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_547_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_548_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_549_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_550_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_551_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_552_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_553_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_554_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_555_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_556_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_557_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_558_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_559_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_560_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_561_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_562_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_563_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_564_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_565_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_566_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_567_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_568_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_569_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_570_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_571_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_572_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_573_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_574_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_575_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_576_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_577_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_578_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_579_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_580_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_581_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_582_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_583_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_584_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_585_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_586_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_587_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_588_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0.0, name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_589_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_590_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0.0, name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_591_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0.0, name='subtract'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_592_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0j, name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_593_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0j, name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_594_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0j, name='power'}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_595_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0j, name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_596_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_597_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_598_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_599_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_600_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_601_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_602_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_603_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_604_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_605_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_606_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_607_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_608_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_609_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_610_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_611_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_612_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_613_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_614_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_615_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_616_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_617_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_618_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_619_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_620_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_621_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_622_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_623_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_624_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_625_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_626_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_627_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_628_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_629_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_630_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_631_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_632_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_633_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_634_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_635_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_636_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_637_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_638_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_639_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_640_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_641_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_642_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_643_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_644_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_645_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_646_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_647_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_648_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_649_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_650_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_651_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_652_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_653_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_654_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_655_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_656_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_657_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_658_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_659_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_660_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_661_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_662_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_663_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_664_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_665_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_666_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_667_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_668_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_669_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_670_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_671_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_672_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_673_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_674_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_675_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_676_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_677_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_678_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_679_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_680_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_681_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0j, name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_682_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0j, name='power'}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_683_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0j, name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_684_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_685_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_686_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_687_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_688_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_689_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_690_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_691_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_692_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_693_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_694_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_695_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_696_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_697_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_698_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_699_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_700_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_701_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_702_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_703_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_704_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_705_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_706_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_707_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_708_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_709_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_710_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_711_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_712_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_713_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_714_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_715_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_716_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_717_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_718_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_719_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_720_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_721_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_722_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_723_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_724_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_725_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_726_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_727_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_728_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_729_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_730_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_731_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_732_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_733_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_734_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_735_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_736_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_737_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_738_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_739_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_740_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_741_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_742_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_743_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_744_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_745_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_746_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_747_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_748_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_749_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_750_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_751_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_752_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_753_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_754_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_755_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_756_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_757_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_758_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_759_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_760_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_761_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_762_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_763_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_764_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_765_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_766_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_767_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_768_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_769_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_770_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_771_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_772_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_773_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_774_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_775_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_776_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_777_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_778_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_779_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_780_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_781_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_782_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_783_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_784_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_785_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_786_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_787_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_788_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_789_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_790_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_791_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_792_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_793_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_794_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_795_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_796_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_797_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_798_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_799_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_800_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_801_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_802_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_803_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_804_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_805_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_806_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_807_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_808_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_809_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_810_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_811_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_812_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_813_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_814_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_815_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_816_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_817_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_818_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_819_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_820_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_821_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_822_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_823_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_824_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_825_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_826_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_827_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_828_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_829_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_830_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_831_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_832_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_833_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_834_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_835_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_836_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_837_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_838_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_839_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_840_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_841_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_842_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_843_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_844_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_845_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_846_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_847_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_848_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_849_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_850_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_851_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_852_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0.0, name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_853_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_854_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0.0, name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_855_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0.0, name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_856_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0j, name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_857_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0j, name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_858_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0j, name='power'}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_859_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0j, name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_860_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_861_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_862_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_863_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_864_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_865_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_866_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_867_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_868_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_869_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_870_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_871_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_872_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_873_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_874_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_875_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_876_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_877_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_878_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_879_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_880_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_881_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_882_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_883_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_884_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_885_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_886_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_887_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_888_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_889_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_890_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_891_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_892_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_893_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_894_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_895_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_896_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_897_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_898_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_899_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_900_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_901_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_902_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_903_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_904_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_905_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_906_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_907_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_908_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_909_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_910_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_911_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_912_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_913_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_914_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_915_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_916_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_917_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_918_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_919_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_920_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_921_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_922_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_923_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_924_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_925_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_926_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_927_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_928_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_929_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_930_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_931_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_932_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_933_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_934_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_935_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_936_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_937_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_938_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_939_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_940_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_941_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_942_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_943_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_944_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0j, name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_945_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0j, name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_946_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0j, name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_947_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0j, name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_948_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_949_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_950_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_951_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_952_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_953_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_954_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_955_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_956_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_957_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_958_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_959_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_960_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_961_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_962_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_963_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_964_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_965_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_966_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_967_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_968_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_969_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_970_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_971_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_972_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_973_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_974_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_975_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_976_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_977_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_978_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_979_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_980_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_981_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_982_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_983_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_984_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_985_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_986_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_987_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_988_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_989_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_990_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_991_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_992_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_993_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_994_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_995_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_996_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_997_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_998_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_999_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1000_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1001_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1002_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1003_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1004_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1005_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1006_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1007_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1008_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1009_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1010_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1011_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1012_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1013_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1014_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1015_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1016_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1017_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1018_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1019_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1020_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1021_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1022_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1023_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1024_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1025_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1026_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1027_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1028_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1029_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1030_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0.0, name='power'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1031_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0.0, name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1032_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1033_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0j, name='multiply'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1034_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0j, name='power'}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1035_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0j, name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1036_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1037_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1038_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1039_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1040_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1041_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1042_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1043_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1044_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1045_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1046_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1047_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1048_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1049_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1050_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1051_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1052_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1053_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1054_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1055_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1056_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1057_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1058_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1059_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1060_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1061_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1062_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1063_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1064_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1065_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1066_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1067_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1068_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1069_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1070_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1071_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1072_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1073_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1074_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1075_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1076_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1077_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1078_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1079_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1080_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1081_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1082_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1083_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1084_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1085_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1086_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1087_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1088_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1089_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1090_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1091_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1092_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1093_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1094_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1095_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1096_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1097_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1098_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1099_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1100_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1101_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1102_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1103_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1104_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1105_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1106_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1107_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1108_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1109_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1110_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1111_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1112_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1113_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1114_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1115_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1116_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1117_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1118_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1119_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1120_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1121_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=0j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1122_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1123_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1124_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1125_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1126_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1127_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1128_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1129_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1130_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1131_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1132_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1133_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1134_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1135_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1136_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1137_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1138_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1139_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1140_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1141_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1142_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1143_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]], dtype=complex64), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1144_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1145_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1146_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1147_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1148_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1149_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1150_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1151_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1152_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1153_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1154_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1155_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1156_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1157_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1158_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1159_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1160_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1161_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1162_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1163_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1164_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1165_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1166_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1167_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1168_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1169_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1170_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1171_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1172_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1173_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1174_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1175_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1176_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1177_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1178_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1179_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1180_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1181_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1182_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1183_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1184_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1185_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1186_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1187_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1188_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1189_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1190_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1191_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1192_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1193_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1194_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1195_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1196_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1197_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1198_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1199_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1200_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1201_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1202_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1203_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1204_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1205_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1206_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1207_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1208_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1209_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=0j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1210_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1211_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1212_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1213_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1214_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1215_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1216_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1217_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1218_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1219_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1220_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1221_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1222_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1223_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1224_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1225_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1226_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1227_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1228_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1229_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1230_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1231_{arg1=array([[1.+1.j, 2.+2.j, 3.+3.j], [4.+4.j, 5.+5.j, 6.+6.j]]), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1232_{arg1=0, arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1233_{arg1=0, arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1234_{arg1=0, arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1235_{arg1=0, arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1236_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1237_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1238_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1239_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1240_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1241_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1242_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1243_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1244_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1245_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1246_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1247_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1248_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1249_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1250_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1251_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1252_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1253_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1254_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1255_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1256_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1257_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1258_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1259_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1260_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1261_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1262_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1263_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1264_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1265_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1266_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1267_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1268_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1269_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1270_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1271_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1272_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1273_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1274_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1275_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1276_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1277_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1278_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1279_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1280_{arg1=0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1281_{arg1=0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1282_{arg1=0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1283_{arg1=0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1284_{arg1=0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1285_{arg1=0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1286_{arg1=0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1287_{arg1=0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1288_{arg1=0, arg2=0, name='add'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1289_{arg1=0, arg2=0, name='multiply'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1290_{arg1=0, arg2=0, name='power'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1291_{arg1=0, arg2=0, name='subtract'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1292_{arg1=0, arg2=0.0, name='add'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1293_{arg1=0, arg2=0.0, name='multiply'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1294_{arg1=0, arg2=0.0, name='power'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1295_{arg1=0, arg2=0.0, name='subtract'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1296_{arg1=0, arg2=0j, name='add'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1297_{arg1=0, arg2=0j, name='multiply'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1298_{arg1=0, arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1299_{arg1=0, arg2=0j, name='subtract'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1300_{arg1=0, arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1301_{arg1=0, arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1302_{arg1=0, arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1303_{arg1=0, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1304_{arg1=0, arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1305_{arg1=0, arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1306_{arg1=0, arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1307_{arg1=0, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1308_{arg1=0, arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1309_{arg1=0, arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1310_{arg1=0, arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1311_{arg1=0, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1312_{arg1=0, arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1313_{arg1=0, arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1314_{arg1=0, arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1315_{arg1=0, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1316_{arg1=0, arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1317_{arg1=0, arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1318_{arg1=0, arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1319_{arg1=0, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1320_{arg1=0.0, arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1321_{arg1=0.0, arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1322_{arg1=0.0, arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1323_{arg1=0.0, arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1324_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1325_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1326_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1327_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1328_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1329_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1330_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1331_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1332_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1333_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1334_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1335_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1336_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1337_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1338_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1339_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1340_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1341_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1342_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1343_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1344_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1345_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1346_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1347_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1348_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1349_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1350_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1351_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1352_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1353_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1354_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1355_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1356_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1357_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1358_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1359_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1360_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1361_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1362_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1363_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1364_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1365_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1366_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1367_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1368_{arg1=0.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1369_{arg1=0.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1370_{arg1=0.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1371_{arg1=0.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1372_{arg1=0.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1373_{arg1=0.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1374_{arg1=0.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1375_{arg1=0.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1376_{arg1=0.0, arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1377_{arg1=0.0, arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1378_{arg1=0.0, arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1379_{arg1=0.0, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1380_{arg1=0.0, arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1381_{arg1=0.0, arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1382_{arg1=0.0, arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1383_{arg1=0.0, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1384_{arg1=0.0, arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1385_{arg1=0.0, arg2=0j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1386_{arg1=0.0, arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1387_{arg1=0.0, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1388_{arg1=0.0, arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1389_{arg1=0.0, arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1390_{arg1=0.0, arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1391_{arg1=0.0, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1392_{arg1=0.0, arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1393_{arg1=0.0, arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1394_{arg1=0.0, arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1395_{arg1=0.0, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1396_{arg1=0.0, arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1397_{arg1=0.0, arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1398_{arg1=0.0, arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1399_{arg1=0.0, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1400_{arg1=0.0, arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1401_{arg1=0.0, arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1402_{arg1=0.0, arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1403_{arg1=0.0, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1404_{arg1=0.0, arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1405_{arg1=0.0, arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1406_{arg1=0.0, arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1407_{arg1=0.0, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1408_{arg1=0j, arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1409_{arg1=0j, arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1410_{arg1=0j, arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1411_{arg1=0j, arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1412_{arg1=0j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1413_{arg1=0j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1414_{arg1=0j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1415_{arg1=0j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1416_{arg1=0j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1417_{arg1=0j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1418_{arg1=0j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1419_{arg1=0j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1420_{arg1=0j, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1421_{arg1=0j, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1422_{arg1=0j, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1423_{arg1=0j, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1424_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1425_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1426_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1427_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1428_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1429_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1430_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1431_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1432_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1433_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1434_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1435_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1436_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1437_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1438_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1439_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1440_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1441_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1442_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1443_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1444_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1445_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1446_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1447_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1448_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1449_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1450_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1451_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1452_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1453_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1454_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1455_{arg1=0j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1456_{arg1=0j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1457_{arg1=0j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1458_{arg1=0j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1459_{arg1=0j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1460_{arg1=0j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1461_{arg1=0j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1462_{arg1=0j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1463_{arg1=0j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1464_{arg1=0j, arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1465_{arg1=0j, arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1466_{arg1=0j, arg2=0, name='power'}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1467_{arg1=0j, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1468_{arg1=0j, arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1469_{arg1=0j, arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1470_{arg1=0j, arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1471_{arg1=0j, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1472_{arg1=0j, arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1473_{arg1=0j, arg2=0j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1474_{arg1=0j, arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1475_{arg1=0j, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1476_{arg1=0j, arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1477_{arg1=0j, arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1478_{arg1=0j, arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1479_{arg1=0j, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1480_{arg1=0j, arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1481_{arg1=0j, arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1482_{arg1=0j, arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1483_{arg1=0j, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1484_{arg1=0j, arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1485_{arg1=0j, arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1486_{arg1=0j, arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1487_{arg1=0j, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1488_{arg1=0j, arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1489_{arg1=0j, arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1490_{arg1=0j, arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1491_{arg1=0j, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1492_{arg1=0j, arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1493_{arg1=0j, arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1494_{arg1=0j, arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1495_{arg1=0j, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1496_{arg1=2, arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1497_{arg1=2, arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1498_{arg1=2, arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1499_{arg1=2, arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1500_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1501_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1502_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1503_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1504_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1505_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1506_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1507_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1508_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1509_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1510_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1511_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1512_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1513_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1514_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1515_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1516_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1517_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1518_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1519_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1520_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1521_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1522_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1523_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1524_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1525_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1526_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1527_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1528_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1529_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1530_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1531_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1532_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1533_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1534_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1535_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1536_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1537_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1538_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1539_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1540_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1541_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1542_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1543_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1544_{arg1=2, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1545_{arg1=2, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1546_{arg1=2, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1547_{arg1=2, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1548_{arg1=2, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1549_{arg1=2, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1550_{arg1=2, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1551_{arg1=2, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1552_{arg1=2, arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1553_{arg1=2, arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1554_{arg1=2, arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1555_{arg1=2, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1556_{arg1=2, arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1557_{arg1=2, arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1558_{arg1=2, arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1559_{arg1=2, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1560_{arg1=2, arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1561_{arg1=2, arg2=0j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1562_{arg1=2, arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1563_{arg1=2, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1564_{arg1=2, arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1565_{arg1=2, arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1566_{arg1=2, arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1567_{arg1=2, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1568_{arg1=2, arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1569_{arg1=2, arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1570_{arg1=2, arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1571_{arg1=2, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1572_{arg1=2, arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1573_{arg1=2, arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1574_{arg1=2, arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1575_{arg1=2, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1576_{arg1=2, arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1577_{arg1=2, arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1578_{arg1=2, arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1579_{arg1=2, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1580_{arg1=2, arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1581_{arg1=2, arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1582_{arg1=2, arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1583_{arg1=2, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1584_{arg1=2.0, arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1585_{arg1=2.0, arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1586_{arg1=2.0, arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1587_{arg1=2.0, arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1588_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1589_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1590_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1591_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1592_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1593_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1594_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1595_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1596_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1597_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1598_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1599_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1600_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1601_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1602_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1603_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1604_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1605_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1606_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1607_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1608_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1609_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1610_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1611_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1612_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1613_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1614_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1615_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1616_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1617_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1618_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1619_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1620_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1621_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1622_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1623_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1624_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1625_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1626_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1627_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1628_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1629_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1630_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1631_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1632_{arg1=2.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1633_{arg1=2.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1634_{arg1=2.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1635_{arg1=2.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1636_{arg1=2.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1637_{arg1=2.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1638_{arg1=2.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1639_{arg1=2.0, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1640_{arg1=2.0, arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1641_{arg1=2.0, arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1642_{arg1=2.0, arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1643_{arg1=2.0, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1644_{arg1=2.0, arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1645_{arg1=2.0, arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1646_{arg1=2.0, arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1647_{arg1=2.0, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1648_{arg1=2.0, arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1649_{arg1=2.0, arg2=0j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1650_{arg1=2.0, arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1651_{arg1=2.0, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1652_{arg1=2.0, arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1653_{arg1=2.0, arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1654_{arg1=2.0, arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1655_{arg1=2.0, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1656_{arg1=2.0, arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1657_{arg1=2.0, arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1658_{arg1=2.0, arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1659_{arg1=2.0, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1660_{arg1=2.0, arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1661_{arg1=2.0, arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1662_{arg1=2.0, arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1663_{arg1=2.0, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1664_{arg1=2.0, arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1665_{arg1=2.0, arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1666_{arg1=2.0, arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1667_{arg1=2.0, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1668_{arg1=2.0, arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1669_{arg1=2.0, arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1670_{arg1=2.0, arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1671_{arg1=2.0, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1672_{arg1=2j, arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1673_{arg1=2j, arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1674_{arg1=2j, arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1675_{arg1=2j, arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1676_{arg1=2j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1677_{arg1=2j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1678_{arg1=2j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1679_{arg1=2j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1680_{arg1=2j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1681_{arg1=2j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1682_{arg1=2j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1683_{arg1=2j, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1684_{arg1=2j, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1685_{arg1=2j, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1686_{arg1=2j, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1687_{arg1=2j, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1688_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1689_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1690_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1691_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1692_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1693_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1694_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1695_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1696_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1697_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1698_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1699_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1700_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1701_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1702_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1703_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1704_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1705_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1706_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1707_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1708_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1709_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1710_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1711_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1712_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1713_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1714_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1715_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1716_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1717_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1718_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1719_{arg1=2j, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1720_{arg1=2j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1721_{arg1=2j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1722_{arg1=2j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1723_{arg1=2j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1724_{arg1=2j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1725_{arg1=2j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1726_{arg1=2j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1727_{arg1=2j, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1728_{arg1=2j, arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1729_{arg1=2j, arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1730_{arg1=2j, arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1731_{arg1=2j, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1732_{arg1=2j, arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1733_{arg1=2j, arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1734_{arg1=2j, arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1735_{arg1=2j, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1736_{arg1=2j, arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1737_{arg1=2j, arg2=0j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1738_{arg1=2j, arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1739_{arg1=2j, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1740_{arg1=2j, arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1741_{arg1=2j, arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1742_{arg1=2j, arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1743_{arg1=2j, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1744_{arg1=2j, arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1745_{arg1=2j, arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1746_{arg1=2j, arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1747_{arg1=2j, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1748_{arg1=2j, arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1749_{arg1=2j, arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1750_{arg1=2j, arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1751_{arg1=2j, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1752_{arg1=2j, arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1753_{arg1=2j, arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1754_{arg1=2j, arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1755_{arg1=2j, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1756_{arg1=2j, arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1757_{arg1=2j, arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1758_{arg1=2j, arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1759_{arg1=2j, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1760_{arg1=True, arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1761_{arg1=True, arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1762_{arg1=True, arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1763_{arg1=True, arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1764_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1765_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1766_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1767_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1768_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1769_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1770_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1771_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1772_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1773_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1774_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1775_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1776_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1777_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1778_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1779_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1780_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1781_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1782_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1783_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1784_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1785_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1786_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1787_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1788_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1789_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1790_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1791_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1792_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1793_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1794_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1795_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1796_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1797_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1798_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1799_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1800_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1801_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1802_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1803_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1804_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1805_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1806_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1807_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1808_{arg1=True, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1809_{arg1=True, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1810_{arg1=True, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1811_{arg1=True, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1812_{arg1=True, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1813_{arg1=True, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1814_{arg1=True, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1815_{arg1=True, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1816_{arg1=True, arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1817_{arg1=True, arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1818_{arg1=True, arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1819_{arg1=True, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1820_{arg1=True, arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1821_{arg1=True, arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1822_{arg1=True, arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1823_{arg1=True, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1824_{arg1=True, arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1825_{arg1=True, arg2=0j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1826_{arg1=True, arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1827_{arg1=True, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1828_{arg1=True, arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1829_{arg1=True, arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1830_{arg1=True, arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1831_{arg1=True, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1832_{arg1=True, arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1833_{arg1=True, arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1834_{arg1=True, arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1835_{arg1=True, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1836_{arg1=True, arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1837_{arg1=True, arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1838_{arg1=True, arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1839_{arg1=True, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1840_{arg1=True, arg2=True, name='add'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1841_{arg1=True, arg2=True, name='multiply'}] | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1842_{arg1=True, arg2=True, name='power'}] | 0.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1843_{arg1=True, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1844_{arg1=True, arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1845_{arg1=True, arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1846_{arg1=True, arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1847_{arg1=True, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1848_{arg1=False, arg2=array([[ True, False, True], [False, True, False]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1849_{arg1=False, arg2=array([[ True, False, True], [False, True, False]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1850_{arg1=False, arg2=array([[ True, False, True], [False, True, False]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1851_{arg1=False, arg2=array([[ True, False, True], [False, True, False]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1852_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1853_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1854_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1855_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1856_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1857_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1858_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1859_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1860_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1861_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1862_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1863_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1864_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1865_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1866_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1867_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1868_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1869_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1870_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1871_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1872_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1873_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1874_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1875_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1876_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1877_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1878_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1879_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1880_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1881_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1882_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1883_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1884_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1885_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1886_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1887_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1888_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1889_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1890_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1891_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1892_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1893_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1894_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1895_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1896_{arg1=False, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1897_{arg1=False, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1898_{arg1=False, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1899_{arg1=False, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1900_{arg1=False, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1901_{arg1=False, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1902_{arg1=False, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1903_{arg1=False, arg2=array([[6.+6.j, 5.+5.j, 4.+4.j], [3.+3.j, 2.+2.j, 1.+1.j]]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1904_{arg1=False, arg2=0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1905_{arg1=False, arg2=0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1906_{arg1=False, arg2=0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1907_{arg1=False, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1908_{arg1=False, arg2=0.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1909_{arg1=False, arg2=0.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1910_{arg1=False, arg2=0.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1911_{arg1=False, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1912_{arg1=False, arg2=0j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1913_{arg1=False, arg2=0j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1914_{arg1=False, arg2=0j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1915_{arg1=False, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1916_{arg1=False, arg2=2, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1917_{arg1=False, arg2=2, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1918_{arg1=False, arg2=2, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1919_{arg1=False, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1920_{arg1=False, arg2=2.0, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1921_{arg1=False, arg2=2.0, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1922_{arg1=False, arg2=2.0, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1923_{arg1=False, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1924_{arg1=False, arg2=2j, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1925_{arg1=False, arg2=2j, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1926_{arg1=False, arg2=2j, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1927_{arg1=False, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1928_{arg1=False, arg2=True, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1929_{arg1=False, arg2=True, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1930_{arg1=False, arg2=True, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1931_{arg1=False, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1932_{arg1=False, arg2=False, name='add'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1933_{arg1=False, arg2=False, name='multiply'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1934_{arg1=False, arg2=False, name='power'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1935_{arg1=False, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1936_{arg1=array([ True, True, True, True, True, True]), arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1937_{arg1=array([ True, True, True, True, True, True]), arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1938_{arg1=array([ True, True, True, True, True, True]), arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1939_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1940_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1941_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1942_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1943_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1944_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1945_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1946_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1947_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1948_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1949_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1950_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1951_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1952_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1953_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1954_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1955_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1956_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1957_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1958_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1959_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1960_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1961_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1962_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1963_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1964_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1965_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1966_{arg1=array([ True, True, True, True, True, True]), arg2=0, name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1967_{arg1=array([ True, True, True, True, True, True]), arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1968_{arg1=array([ True, True, True, True, True, True]), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1969_{arg1=array([ True, True, True, True, True, True]), arg2=0.0, name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1970_{arg1=array([ True, True, True, True, True, True]), arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1971_{arg1=array([ True, True, True, True, True, True]), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1972_{arg1=array([ True, True, True, True, True, True]), arg2=0j, name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1973_{arg1=array([ True, True, True, True, True, True]), arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1974_{arg1=array([ True, True, True, True, True, True]), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1975_{arg1=array([ True, True, True, True, True, True]), arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1976_{arg1=array([ True, True, True, True, True, True]), arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1977_{arg1=array([ True, True, True, True, True, True]), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1978_{arg1=array([ True, True, True, True, True, True]), arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1979_{arg1=array([ True, True, True, True, True, True]), arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1980_{arg1=array([ True, True, True, True, True, True]), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1981_{arg1=array([ True, True, True, True, True, True]), arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1982_{arg1=array([ True, True, True, True, True, True]), arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1983_{arg1=array([ True, True, True, True, True, True]), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1984_{arg1=array([ True, True, True, True, True, True]), arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1985_{arg1=array([ True, True, True, True, True, True]), arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1986_{arg1=array([ True, True, True, True, True, True]), arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1987_{arg1=array([ True, True, True, True, True, True]), arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1988_{arg1=array([ True, True, True, True, True, True]), arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1989_{arg1=array([ True, True, True, True, True, True]), arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1990_{arg1=array([ True, True, True, True, True, True]), arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1991_{arg1=array([ True, True, True, True, True, True]), arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1992_{arg1=array([ True, True, True, True, True, True]), arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1993_{arg1=array([ True, True, True, True, True, True]), arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1994_{arg1=array([ True, True, True, True, True, True]), arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1995_{arg1=array([ True, True, True, True, True, True]), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1996_{arg1=array([ True, True, True, True, True, True]), arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1997_{arg1=array([ True, True, True, True, True, True]), arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1998_{arg1=array([ True, True, True, True, True, True]), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_1999_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2000_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2001_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2002_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2003_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2004_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2005_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2006_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2007_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2008_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2009_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2010_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2011_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2012_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2013_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2014_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2015_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2016_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2017_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2018_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2019_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2020_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2021_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2022_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2023_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2024_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2025_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2026_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2027_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2028_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2029_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2030_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2031_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2032_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2033_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2034_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2035_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0j, name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2036_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2037_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2038_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2039_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2040_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2041_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2042_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2043_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2044_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2045_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2046_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2047_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2048_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2049_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2050_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2051_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2052_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2053_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2054_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2055_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2056_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2057_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2058_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2059_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2060_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2061_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2062_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2063_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2064_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2065_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2066_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2067_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2068_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2069_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2070_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2071_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2072_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2073_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2074_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2075_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2076_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2077_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2078_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2079_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2080_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2081_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2082_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2083_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2084_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2085_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2086_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2087_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2088_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2089_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2090_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2091_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2092_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2093_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2094_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2095_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2096_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2097_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2098_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0j, name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2099_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2100_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2101_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2102_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2103_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2104_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2105_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2106_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2107_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2108_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2109_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2110_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2111_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2112_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2113_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2114_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2115_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2116_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2117_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2118_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2119_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2120_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2121_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2122_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2123_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2124_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2125_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2126_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2127_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2128_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2129_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2130_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2131_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2132_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2133_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2134_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2135_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2136_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2137_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2138_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2139_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2140_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2141_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2142_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2143_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2144_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2145_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2146_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2147_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2148_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2149_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2150_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2151_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2152_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2153_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2154_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2155_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2156_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2157_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2158_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2159_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2160_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2161_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2162_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2163_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2164_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2165_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2166_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2167_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2168_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2169_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2170_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2171_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2172_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2173_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2174_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2175_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2176_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2177_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2178_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2179_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2180_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2181_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2182_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2183_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2184_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2185_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2186_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2187_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2188_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2189_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2190_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2191_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2192_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2193_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2194_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2195_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2196_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2197_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2198_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2199_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2200_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2201_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2202_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2203_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2204_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2205_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2206_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2207_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2208_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2209_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2210_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2211_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2212_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2213_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2214_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2215_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2216_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2217_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2218_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2219_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2220_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2221_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0.0, name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2222_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2223_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2224_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0j, name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2225_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2226_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2227_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2228_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2229_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2230_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2231_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2232_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2233_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2234_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2235_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2236_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2237_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2238_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2239_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2240_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2241_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2242_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2243_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2244_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2245_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2246_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2247_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2248_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2249_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2250_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2251_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2252_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2253_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2254_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2255_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2256_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2257_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2258_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2259_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2260_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2261_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2262_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2263_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2264_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2265_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2266_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2267_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2268_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2269_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2270_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2271_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2272_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2273_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2274_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2275_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2276_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2277_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2278_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2279_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2280_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2281_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2282_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2283_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2284_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0.0, name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2285_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2286_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2287_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0j, name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2288_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2289_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2290_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2291_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2292_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2293_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2294_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2295_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2296_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2297_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2298_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2299_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2300_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2301_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2302_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2303_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2304_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2305_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2306_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2307_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2308_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2309_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2310_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2311_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2312_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2313_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2314_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2315_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2316_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2317_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2318_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2319_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2320_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2321_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2322_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2323_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2324_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2325_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2326_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2327_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2328_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2329_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2330_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2331_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2332_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2333_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2334_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2335_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2336_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2337_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2338_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2339_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2340_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2341_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2342_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2343_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2344_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2345_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2346_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2347_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0.0, name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2348_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2349_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2350_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0j, name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2351_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2352_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2353_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2354_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2355_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2356_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2357_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2358_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2359_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2360_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2361_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2362_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2363_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2364_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2365_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2366_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2367_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2368_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2369_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2370_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2371_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2372_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2373_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2374_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2375_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2376_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2377_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2378_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2379_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2380_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2381_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2382_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2383_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2384_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2385_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2386_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2387_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2388_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2389_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2390_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2391_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2392_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2393_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2394_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2395_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2396_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2397_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2398_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2399_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2400_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2401_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2402_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2403_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2404_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2405_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2406_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2407_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2408_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2409_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2410_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2411_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2412_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2413_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0j, name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2414_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2415_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2416_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2417_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2418_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2419_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2420_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2421_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2422_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2423_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2424_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2425_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2426_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2427_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2428_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2429_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2430_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2431_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2432_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2433_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2434_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2435_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2436_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2437_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2438_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2439_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2440_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2441_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2442_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2443_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2444_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2445_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2446_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2447_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2448_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2449_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2450_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2451_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2452_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2453_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2454_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2455_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2456_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2457_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2458_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2459_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2460_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2461_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2462_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2463_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2464_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2465_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2466_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2467_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2468_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2469_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2470_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2471_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2472_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2473_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2474_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2475_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2476_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2477_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2478_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2479_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2480_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2481_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2482_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2483_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2484_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2485_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2486_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2487_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2488_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2489_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2490_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2491_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2492_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2493_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2494_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2495_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2496_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2497_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2498_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2499_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2500_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2501_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2502_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2503_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2504_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2505_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2506_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2507_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2508_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2509_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2510_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2511_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2512_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2513_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2514_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2515_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2516_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2517_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2518_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2519_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2520_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2521_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2522_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2523_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2524_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2525_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2526_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2527_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2528_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2529_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2530_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2531_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2532_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2533_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2534_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2535_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2536_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2537_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2538_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2539_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2540_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2541_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2542_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2543_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2544_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2545_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2546_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2547_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2548_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2549_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2550_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2551_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2552_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2553_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2554_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2555_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2556_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2557_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2558_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2559_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2560_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2561_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2562_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2563_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2564_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2565_{arg1=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2566_{arg1=0, arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2567_{arg1=0, arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2568_{arg1=0, arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2569_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2570_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2571_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2572_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2573_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2574_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2575_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2576_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2577_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2578_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2579_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2580_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2581_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2582_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2583_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2584_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2585_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2586_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2587_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2588_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2589_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2590_{arg1=0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2591_{arg1=0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2592_{arg1=0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2593_{arg1=0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2594_{arg1=0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2595_{arg1=0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2596_{arg1=0, arg2=0, name='divide'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2597_{arg1=0, arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2598_{arg1=0, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2599_{arg1=0, arg2=0.0, name='divide'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2600_{arg1=0, arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2601_{arg1=0, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2602_{arg1=0, arg2=0j, name='divide'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2603_{arg1=0, arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2604_{arg1=0, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2605_{arg1=0, arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2606_{arg1=0, arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2607_{arg1=0, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2608_{arg1=0, arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2609_{arg1=0, arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2610_{arg1=0, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2611_{arg1=0, arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2612_{arg1=0, arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2613_{arg1=0, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2614_{arg1=0, arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2615_{arg1=0, arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2616_{arg1=0, arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2617_{arg1=0, arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2618_{arg1=0, arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2619_{arg1=0, arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2620_{arg1=0, arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2621_{arg1=0, arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2622_{arg1=0, arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2623_{arg1=0, arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2624_{arg1=0, arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2625_{arg1=0, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2626_{arg1=0, arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2627_{arg1=0, arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2628_{arg1=0, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2629_{arg1=0.0, arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2630_{arg1=0.0, arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2631_{arg1=0.0, arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2632_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2633_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2634_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2635_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2636_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2637_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2638_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2639_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2640_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2641_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2642_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2643_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2644_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2645_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2646_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2647_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2648_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2649_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2650_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2651_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2652_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2653_{arg1=0.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2654_{arg1=0.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2655_{arg1=0.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2656_{arg1=0.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2657_{arg1=0.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2658_{arg1=0.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2659_{arg1=0.0, arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2660_{arg1=0.0, arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2661_{arg1=0.0, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2662_{arg1=0.0, arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2663_{arg1=0.0, arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2664_{arg1=0.0, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2665_{arg1=0.0, arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2666_{arg1=0.0, arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2667_{arg1=0.0, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2668_{arg1=0.0, arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2669_{arg1=0.0, arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2670_{arg1=0.0, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2671_{arg1=0.0, arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2672_{arg1=0.0, arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2673_{arg1=0.0, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2674_{arg1=0.0, arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2675_{arg1=0.0, arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2676_{arg1=0.0, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2677_{arg1=0.0, arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2678_{arg1=0.0, arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2679_{arg1=0.0, arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2680_{arg1=0.0, arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2681_{arg1=0.0, arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2682_{arg1=0.0, arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2683_{arg1=0.0, arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2684_{arg1=0.0, arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2685_{arg1=0.0, arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2686_{arg1=0.0, arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2687_{arg1=0.0, arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2688_{arg1=0.0, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2689_{arg1=0.0, arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2690_{arg1=0.0, arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2691_{arg1=0.0, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2692_{arg1=0j, arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2693_{arg1=0j, arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2694_{arg1=0j, arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2695_{arg1=0j, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2696_{arg1=0j, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2697_{arg1=0j, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2698_{arg1=0j, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2699_{arg1=0j, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2700_{arg1=0j, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2701_{arg1=0j, arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2702_{arg1=0j, arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2703_{arg1=0j, arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2704_{arg1=0j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2705_{arg1=0j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2706_{arg1=0j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2707_{arg1=0j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2708_{arg1=0j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2709_{arg1=0j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2710_{arg1=0j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2711_{arg1=0j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2712_{arg1=0j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2713_{arg1=0j, arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2714_{arg1=0j, arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2715_{arg1=0j, arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2716_{arg1=0j, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2717_{arg1=0j, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2718_{arg1=0j, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2719_{arg1=0j, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2720_{arg1=0j, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2721_{arg1=0j, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2722_{arg1=0j, arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2723_{arg1=0j, arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2724_{arg1=0j, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2725_{arg1=0j, arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2726_{arg1=0j, arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2727_{arg1=0j, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2728_{arg1=0j, arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2729_{arg1=0j, arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2730_{arg1=0j, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2731_{arg1=0j, arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2732_{arg1=0j, arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2733_{arg1=0j, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2734_{arg1=0j, arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2735_{arg1=0j, arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2736_{arg1=0j, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2737_{arg1=0j, arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2738_{arg1=0j, arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2739_{arg1=0j, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2740_{arg1=0j, arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2741_{arg1=0j, arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2742_{arg1=0j, arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2743_{arg1=0j, arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2744_{arg1=0j, arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2745_{arg1=0j, arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2746_{arg1=0j, arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2747_{arg1=0j, arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2748_{arg1=0j, arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2749_{arg1=0j, arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2750_{arg1=0j, arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2751_{arg1=0j, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2752_{arg1=0j, arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2753_{arg1=0j, arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2754_{arg1=0j, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2755_{arg1=2, arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2756_{arg1=2, arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2757_{arg1=2, arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2758_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2759_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2760_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2761_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2762_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2763_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2764_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2765_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2766_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2767_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2768_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2769_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2770_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2771_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2772_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2773_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2774_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2775_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2776_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2777_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2778_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2779_{arg1=2, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2780_{arg1=2, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2781_{arg1=2, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2782_{arg1=2, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2783_{arg1=2, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2784_{arg1=2, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2785_{arg1=2, arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2786_{arg1=2, arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2787_{arg1=2, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2788_{arg1=2, arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2789_{arg1=2, arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2790_{arg1=2, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2791_{arg1=2, arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2792_{arg1=2, arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2793_{arg1=2, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2794_{arg1=2, arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2795_{arg1=2, arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2796_{arg1=2, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2797_{arg1=2, arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2798_{arg1=2, arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2799_{arg1=2, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2800_{arg1=2, arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2801_{arg1=2, arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2802_{arg1=2, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2803_{arg1=2, arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2804_{arg1=2, arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2805_{arg1=2, arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2806_{arg1=2, arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2807_{arg1=2, arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2808_{arg1=2, arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2809_{arg1=2, arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2810_{arg1=2, arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2811_{arg1=2, arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2812_{arg1=2, arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2813_{arg1=2, arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2814_{arg1=2, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2815_{arg1=2, arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2816_{arg1=2, arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2817_{arg1=2, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2818_{arg1=2.0, arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2819_{arg1=2.0, arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2820_{arg1=2.0, arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2821_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2822_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2823_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2824_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2825_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2826_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2827_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2828_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2829_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2830_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2831_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2832_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2833_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2834_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2835_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2836_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2837_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2838_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2839_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2840_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2841_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2842_{arg1=2.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2843_{arg1=2.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2844_{arg1=2.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2845_{arg1=2.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2846_{arg1=2.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2847_{arg1=2.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2848_{arg1=2.0, arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2849_{arg1=2.0, arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2850_{arg1=2.0, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2851_{arg1=2.0, arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2852_{arg1=2.0, arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2853_{arg1=2.0, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2854_{arg1=2.0, arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2855_{arg1=2.0, arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2856_{arg1=2.0, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2857_{arg1=2.0, arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2858_{arg1=2.0, arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2859_{arg1=2.0, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2860_{arg1=2.0, arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2861_{arg1=2.0, arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2862_{arg1=2.0, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2863_{arg1=2.0, arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2864_{arg1=2.0, arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2865_{arg1=2.0, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2866_{arg1=2.0, arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2867_{arg1=2.0, arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2868_{arg1=2.0, arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2869_{arg1=2.0, arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2870_{arg1=2.0, arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2871_{arg1=2.0, arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2872_{arg1=2.0, arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2873_{arg1=2.0, arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2874_{arg1=2.0, arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2875_{arg1=2.0, arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2876_{arg1=2.0, arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2877_{arg1=2.0, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2878_{arg1=2.0, arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2879_{arg1=2.0, arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2880_{arg1=2.0, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2881_{arg1=2j, arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2882_{arg1=2j, arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2883_{arg1=2j, arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2884_{arg1=2j, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2885_{arg1=2j, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2886_{arg1=2j, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2887_{arg1=2j, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2888_{arg1=2j, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2889_{arg1=2j, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2890_{arg1=2j, arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2891_{arg1=2j, arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2892_{arg1=2j, arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2893_{arg1=2j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2894_{arg1=2j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2895_{arg1=2j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2896_{arg1=2j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2897_{arg1=2j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2898_{arg1=2j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2899_{arg1=2j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2900_{arg1=2j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2901_{arg1=2j, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2902_{arg1=2j, arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2903_{arg1=2j, arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2904_{arg1=2j, arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2905_{arg1=2j, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2906_{arg1=2j, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2907_{arg1=2j, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2908_{arg1=2j, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2909_{arg1=2j, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2910_{arg1=2j, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2911_{arg1=2j, arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2912_{arg1=2j, arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2913_{arg1=2j, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2914_{arg1=2j, arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2915_{arg1=2j, arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2916_{arg1=2j, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2917_{arg1=2j, arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2918_{arg1=2j, arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2919_{arg1=2j, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2920_{arg1=2j, arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2921_{arg1=2j, arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2922_{arg1=2j, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2923_{arg1=2j, arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2924_{arg1=2j, arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2925_{arg1=2j, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2926_{arg1=2j, arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2927_{arg1=2j, arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2928_{arg1=2j, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2929_{arg1=2j, arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2930_{arg1=2j, arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2931_{arg1=2j, arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2932_{arg1=2j, arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2933_{arg1=2j, arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2934_{arg1=2j, arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2935_{arg1=2j, arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2936_{arg1=2j, arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2937_{arg1=2j, arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2938_{arg1=2j, arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2939_{arg1=2j, arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2940_{arg1=2j, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2941_{arg1=2j, arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2942_{arg1=2j, arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2943_{arg1=2j, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2944_{arg1=-2, arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2945_{arg1=-2, arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2946_{arg1=-2, arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2947_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2948_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2949_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2950_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2951_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2952_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2953_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2954_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2955_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2956_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2957_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2958_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2959_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2960_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2961_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2962_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2963_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2964_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2965_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2966_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2967_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2968_{arg1=-2, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2969_{arg1=-2, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2970_{arg1=-2, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2971_{arg1=-2, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2972_{arg1=-2, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2973_{arg1=-2, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2974_{arg1=-2, arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2975_{arg1=-2, arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2976_{arg1=-2, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2977_{arg1=-2, arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2978_{arg1=-2, arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2979_{arg1=-2, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2980_{arg1=-2, arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2981_{arg1=-2, arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2982_{arg1=-2, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2983_{arg1=-2, arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2984_{arg1=-2, arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2985_{arg1=-2, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2986_{arg1=-2, arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2987_{arg1=-2, arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2988_{arg1=-2, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2989_{arg1=-2, arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2990_{arg1=-2, arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2991_{arg1=-2, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2992_{arg1=-2, arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2993_{arg1=-2, arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2994_{arg1=-2, arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2995_{arg1=-2, arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2996_{arg1=-2, arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2997_{arg1=-2, arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2998_{arg1=-2, arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_2999_{arg1=-2, arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3000_{arg1=-2, arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3001_{arg1=-2, arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3002_{arg1=-2, arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3003_{arg1=-2, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3004_{arg1=-2, arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3005_{arg1=-2, arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3006_{arg1=-2, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3007_{arg1=-2.0, arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3008_{arg1=-2.0, arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3009_{arg1=-2.0, arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3010_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3011_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3012_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3013_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3014_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3015_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3016_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3017_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3018_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3019_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3020_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3021_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3022_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3023_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3024_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3025_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3026_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3027_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3028_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3029_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3030_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3031_{arg1=-2.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3032_{arg1=-2.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3033_{arg1=-2.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3034_{arg1=-2.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3035_{arg1=-2.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3036_{arg1=-2.0, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3037_{arg1=-2.0, arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3038_{arg1=-2.0, arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3039_{arg1=-2.0, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3040_{arg1=-2.0, arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3041_{arg1=-2.0, arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3042_{arg1=-2.0, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3043_{arg1=-2.0, arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3044_{arg1=-2.0, arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3045_{arg1=-2.0, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3046_{arg1=-2.0, arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3047_{arg1=-2.0, arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3048_{arg1=-2.0, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3049_{arg1=-2.0, arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3050_{arg1=-2.0, arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3051_{arg1=-2.0, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3052_{arg1=-2.0, arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3053_{arg1=-2.0, arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3054_{arg1=-2.0, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3055_{arg1=-2.0, arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3056_{arg1=-2.0, arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3057_{arg1=-2.0, arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3058_{arg1=-2.0, arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3059_{arg1=-2.0, arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3060_{arg1=-2.0, arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3061_{arg1=-2.0, arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3062_{arg1=-2.0, arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3063_{arg1=-2.0, arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3064_{arg1=-2.0, arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3065_{arg1=-2.0, arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3066_{arg1=-2.0, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3067_{arg1=-2.0, arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3068_{arg1=-2.0, arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3069_{arg1=-2.0, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3070_{arg1=(-0-2j), arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3071_{arg1=(-0-2j), arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3072_{arg1=(-0-2j), arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3073_{arg1=(-0-2j), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3074_{arg1=(-0-2j), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3075_{arg1=(-0-2j), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3076_{arg1=(-0-2j), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3077_{arg1=(-0-2j), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3078_{arg1=(-0-2j), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3079_{arg1=(-0-2j), arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3080_{arg1=(-0-2j), arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3081_{arg1=(-0-2j), arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3082_{arg1=(-0-2j), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3083_{arg1=(-0-2j), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3084_{arg1=(-0-2j), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3085_{arg1=(-0-2j), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3086_{arg1=(-0-2j), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3087_{arg1=(-0-2j), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3088_{arg1=(-0-2j), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3089_{arg1=(-0-2j), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3090_{arg1=(-0-2j), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3091_{arg1=(-0-2j), arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3092_{arg1=(-0-2j), arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3093_{arg1=(-0-2j), arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3094_{arg1=(-0-2j), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3095_{arg1=(-0-2j), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3096_{arg1=(-0-2j), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3097_{arg1=(-0-2j), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3098_{arg1=(-0-2j), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3099_{arg1=(-0-2j), arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3100_{arg1=(-0-2j), arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3101_{arg1=(-0-2j), arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3102_{arg1=(-0-2j), arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3103_{arg1=(-0-2j), arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3104_{arg1=(-0-2j), arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3105_{arg1=(-0-2j), arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3106_{arg1=(-0-2j), arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3107_{arg1=(-0-2j), arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3108_{arg1=(-0-2j), arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3109_{arg1=(-0-2j), arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3110_{arg1=(-0-2j), arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3111_{arg1=(-0-2j), arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3112_{arg1=(-0-2j), arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3113_{arg1=(-0-2j), arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3114_{arg1=(-0-2j), arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3115_{arg1=(-0-2j), arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3116_{arg1=(-0-2j), arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3117_{arg1=(-0-2j), arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3118_{arg1=(-0-2j), arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3119_{arg1=(-0-2j), arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3120_{arg1=(-0-2j), arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3121_{arg1=(-0-2j), arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3122_{arg1=(-0-2j), arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3123_{arg1=(-0-2j), arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3124_{arg1=(-0-2j), arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3125_{arg1=(-0-2j), arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3126_{arg1=(-0-2j), arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3127_{arg1=(-0-2j), arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3128_{arg1=(-0-2j), arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3129_{arg1=(-0-2j), arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3130_{arg1=(-0-2j), arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3131_{arg1=(-0-2j), arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3132_{arg1=(-0-2j), arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3133_{arg1=True, arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3134_{arg1=True, arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3135_{arg1=True, arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3136_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3137_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3138_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3139_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3140_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3141_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3142_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3143_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3144_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3145_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3146_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3147_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3148_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3149_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3150_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3151_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3152_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3153_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3154_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3155_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3156_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3157_{arg1=True, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3158_{arg1=True, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3159_{arg1=True, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3160_{arg1=True, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3161_{arg1=True, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3162_{arg1=True, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3163_{arg1=True, arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3164_{arg1=True, arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3165_{arg1=True, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3166_{arg1=True, arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3167_{arg1=True, arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3168_{arg1=True, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3169_{arg1=True, arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3170_{arg1=True, arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3171_{arg1=True, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3172_{arg1=True, arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3173_{arg1=True, arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3174_{arg1=True, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3175_{arg1=True, arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3176_{arg1=True, arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3177_{arg1=True, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3178_{arg1=True, arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3179_{arg1=True, arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3180_{arg1=True, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3181_{arg1=True, arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3182_{arg1=True, arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3183_{arg1=True, arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3184_{arg1=True, arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3185_{arg1=True, arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3186_{arg1=True, arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3187_{arg1=True, arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3188_{arg1=True, arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3189_{arg1=True, arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3190_{arg1=True, arg2=True, name='divide'}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3191_{arg1=True, arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3192_{arg1=True, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3193_{arg1=True, arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3194_{arg1=True, arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3195_{arg1=True, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3196_{arg1=False, arg2=array([ True, True, True, True, True, True]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3197_{arg1=False, arg2=array([ True, True, True, True, True, True]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3198_{arg1=False, arg2=array([ True, True, True, True, True, True]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3199_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3200_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3201_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3202_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3203_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3204_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3205_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3206_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3207_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3208_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3209_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3210_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3211_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3212_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3213_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3214_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3215_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3216_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3217_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3218_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3219_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3220_{arg1=False, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3221_{arg1=False, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3222_{arg1=False, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j], dtype=complex64), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3223_{arg1=False, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3224_{arg1=False, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3225_{arg1=False, arg2=array([-3.+0.j, -2.+0.j, -1.+0.j, 1.+0.j, 2.+0.j, 3.+0.j]), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3226_{arg1=False, arg2=0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3227_{arg1=False, arg2=0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3228_{arg1=False, arg2=0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3229_{arg1=False, arg2=0.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3230_{arg1=False, arg2=0.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3231_{arg1=False, arg2=0.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3232_{arg1=False, arg2=0j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3233_{arg1=False, arg2=0j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3234_{arg1=False, arg2=0j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3235_{arg1=False, arg2=2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3236_{arg1=False, arg2=2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3237_{arg1=False, arg2=2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3238_{arg1=False, arg2=2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3239_{arg1=False, arg2=2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3240_{arg1=False, arg2=2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3241_{arg1=False, arg2=2j, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3242_{arg1=False, arg2=2j, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3243_{arg1=False, arg2=2j, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3244_{arg1=False, arg2=-2, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3245_{arg1=False, arg2=-2, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3246_{arg1=False, arg2=-2, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3247_{arg1=False, arg2=-2.0, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3248_{arg1=False, arg2=-2.0, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3249_{arg1=False, arg2=-2.0, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3250_{arg1=False, arg2=(-0-2j), name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3251_{arg1=False, arg2=(-0-2j), name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3252_{arg1=False, arg2=(-0-2j), name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3253_{arg1=False, arg2=True, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3254_{arg1=False, arg2=True, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3255_{arg1=False, arg2=True, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3256_{arg1=False, arg2=False, name='divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3257_{arg1=False, arg2=False, name='true_divide'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary::test_binary[_param_3258_{arg1=False, arg2=False, name='subtract'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_0_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_5_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_6_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_7_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_8_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_9_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_10_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_11_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_12_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_13_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_14_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_15_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_16_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_17_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_18_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_19_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_20_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_21_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_22_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_23_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_24_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_25_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_26_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_27_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_28_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_29_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_30_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_31_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_32_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_33_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_34_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_35_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_36_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_37_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_38_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_39_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_40_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_41_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_42_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_43_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_44_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_45_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_46_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_47_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_48_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_49_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_50_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_51_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_52_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_53_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_54_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_55_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_56_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_57_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_58_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_59_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_60_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_61_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_62_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_63_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_64_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_65_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_66_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_67_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_68_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_69_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_70_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_71_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_72_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_73_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_74_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_75_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_76_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_77_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_78_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_79_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_80_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_81_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_82_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_83_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_84_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_85_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_86_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_87_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_88_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_89_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_90_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_91_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_92_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_93_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_94_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_95_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_96_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_97_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_98_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_99_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_100_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_101_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_102_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_103_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_104_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_105_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_106_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_107_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_108_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_109_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_110_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_111_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_112_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_113_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_114_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_115_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_116_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_117_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_118_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_119_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_120_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_121_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_122_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_123_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_124_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_125_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_126_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_127_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_128_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_129_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_130_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_131_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_132_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_133_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_134_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_135_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_136_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_137_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_138_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_139_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_140_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_141_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_142_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_143_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_144_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_145_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_146_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_147_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_148_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_149_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_150_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_151_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_152_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_153_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_154_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_155_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_156_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_157_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_158_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_159_{arg1=array([253, 254, 255, 1, 2, 3], dtype=uint8), arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_160_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_161_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_162_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_163_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_164_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_165_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_166_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_167_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_168_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_169_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_170_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_171_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_172_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_173_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_174_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_175_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_176_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_177_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_178_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_179_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_180_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_181_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_182_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_183_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_184_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_185_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_186_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_187_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_188_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_189_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_190_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_191_{arg1=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_192_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_193_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_194_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_195_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_196_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_197_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_198_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_199_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_200_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_201_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_202_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_203_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_204_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_205_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_206_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_207_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_208_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_209_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_210_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_211_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_212_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_213_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_214_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_215_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_216_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_217_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_218_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_219_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_220_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_221_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_222_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_223_{arg1=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_224_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_225_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_226_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_227_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_228_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_229_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_230_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_231_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_232_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_233_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_234_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_235_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_236_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_237_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_238_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_239_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_240_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_241_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_242_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_243_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_244_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_245_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_246_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_247_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_248_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_249_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_250_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_251_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_252_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_253_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_254_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_255_{arg1=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_256_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_257_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_258_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_259_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_260_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_261_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_262_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_263_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_264_{arg1=0, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_265_{arg1=0, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_266_{arg1=0, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_267_{arg1=0, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_268_{arg1=0, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_269_{arg1=0, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_270_{arg1=0, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_271_{arg1=0, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_272_{arg1=0, arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_273_{arg1=0, arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_274_{arg1=0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_275_{arg1=0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_276_{arg1=0, arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_277_{arg1=0, arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_278_{arg1=0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_279_{arg1=0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_280_{arg1=0, arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_281_{arg1=0, arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_282_{arg1=0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_283_{arg1=0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_284_{arg1=0, arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_285_{arg1=0, arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_286_{arg1=0, arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_287_{arg1=0, arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_288_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_289_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_290_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_291_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_292_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_293_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_294_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_295_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_296_{arg1=0.0, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_297_{arg1=0.0, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_298_{arg1=0.0, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_299_{arg1=0.0, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_300_{arg1=0.0, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_301_{arg1=0.0, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_302_{arg1=0.0, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_303_{arg1=0.0, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_304_{arg1=0.0, arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_305_{arg1=0.0, arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_306_{arg1=0.0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_307_{arg1=0.0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_308_{arg1=0.0, arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_309_{arg1=0.0, arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_310_{arg1=0.0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_311_{arg1=0.0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_312_{arg1=0.0, arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_313_{arg1=0.0, arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_314_{arg1=0.0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_315_{arg1=0.0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_316_{arg1=0.0, arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_317_{arg1=0.0, arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_318_{arg1=0.0, arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_319_{arg1=0.0, arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_320_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_321_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_322_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_323_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_324_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_325_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_326_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_327_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_328_{arg1=2, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_329_{arg1=2, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_330_{arg1=2, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_331_{arg1=2, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_332_{arg1=2, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_333_{arg1=2, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_334_{arg1=2, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_335_{arg1=2, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_336_{arg1=2, arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_337_{arg1=2, arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_338_{arg1=2, arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_339_{arg1=2, arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_340_{arg1=2, arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_341_{arg1=2, arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_342_{arg1=2, arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_343_{arg1=2, arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_344_{arg1=2, arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_345_{arg1=2, arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_346_{arg1=2, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_347_{arg1=2, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_348_{arg1=2, arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_349_{arg1=2, arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_350_{arg1=2, arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_351_{arg1=2, arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_352_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_353_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_354_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_355_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_356_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_357_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_358_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_359_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_360_{arg1=2.0, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_361_{arg1=2.0, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_362_{arg1=2.0, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_363_{arg1=2.0, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_364_{arg1=2.0, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_365_{arg1=2.0, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_366_{arg1=2.0, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_367_{arg1=2.0, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_368_{arg1=2.0, arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_369_{arg1=2.0, arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_370_{arg1=2.0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_371_{arg1=2.0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_372_{arg1=2.0, arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_373_{arg1=2.0, arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_374_{arg1=2.0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_375_{arg1=2.0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_376_{arg1=2.0, arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_377_{arg1=2.0, arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_378_{arg1=2.0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_379_{arg1=2.0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_380_{arg1=2.0, arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_381_{arg1=2.0, arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_382_{arg1=2.0, arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_383_{arg1=2.0, arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_384_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_385_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_386_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_387_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_388_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_389_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_390_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_391_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_392_{arg1=-2, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_393_{arg1=-2, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_394_{arg1=-2, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_395_{arg1=-2, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_396_{arg1=-2, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_397_{arg1=-2, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_398_{arg1=-2, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_399_{arg1=-2, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_400_{arg1=-2, arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_401_{arg1=-2, arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_402_{arg1=-2, arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_403_{arg1=-2, arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_404_{arg1=-2, arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_405_{arg1=-2, arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_406_{arg1=-2, arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_407_{arg1=-2, arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_408_{arg1=-2, arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_409_{arg1=-2, arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_410_{arg1=-2, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_411_{arg1=-2, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_412_{arg1=-2, arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_413_{arg1=-2, arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_414_{arg1=-2, arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_415_{arg1=-2, arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_416_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_417_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_418_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_419_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_420_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_421_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_422_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_423_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_424_{arg1=-2.0, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_425_{arg1=-2.0, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_426_{arg1=-2.0, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_427_{arg1=-2.0, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_428_{arg1=-2.0, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_429_{arg1=-2.0, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_430_{arg1=-2.0, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_431_{arg1=-2.0, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_432_{arg1=-2.0, arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_433_{arg1=-2.0, arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_434_{arg1=-2.0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_435_{arg1=-2.0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_436_{arg1=-2.0, arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_437_{arg1=-2.0, arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_438_{arg1=-2.0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_439_{arg1=-2.0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_440_{arg1=-2.0, arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_441_{arg1=-2.0, arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_442_{arg1=-2.0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_443_{arg1=-2.0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_444_{arg1=-2.0, arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_445_{arg1=-2.0, arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_446_{arg1=-2.0, arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_447_{arg1=-2.0, arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_448_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_449_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_450_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_451_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_452_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_453_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_454_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_455_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_456_{arg1=True, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_457_{arg1=True, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_458_{arg1=True, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_459_{arg1=True, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_460_{arg1=True, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_461_{arg1=True, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_462_{arg1=True, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_463_{arg1=True, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_464_{arg1=True, arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_465_{arg1=True, arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_466_{arg1=True, arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_467_{arg1=True, arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_468_{arg1=True, arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_469_{arg1=True, arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_470_{arg1=True, arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_471_{arg1=True, arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_472_{arg1=True, arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_473_{arg1=True, arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_474_{arg1=True, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_475_{arg1=True, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_476_{arg1=True, arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_477_{arg1=True, arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_478_{arg1=True, arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_479_{arg1=True, arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_480_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_481_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_482_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_483_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_484_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_485_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_486_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_487_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_488_{arg1=False, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_489_{arg1=False, arg2=array([253, 254, 255, 1, 2, 3], dtype=uint8), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_490_{arg1=False, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_491_{arg1=False, arg2=array([65533, 65534, 65535, 1, 2, 3], dtype=uint16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_492_{arg1=False, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_493_{arg1=False, arg2=array([4294967293, 4294967294, 4294967295, 1, 2, 3], dtype=uint32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_494_{arg1=False, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_495_{arg1=False, arg2=array([18446744073709551613, 1844674407370955161... 2, 3], dtype=uint64), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_496_{arg1=False, arg2=0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_497_{arg1=False, arg2=0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_498_{arg1=False, arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_499_{arg1=False, arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_500_{arg1=False, arg2=2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_501_{arg1=False, arg2=2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_502_{arg1=False, arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_503_{arg1=False, arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_504_{arg1=False, arg2=-2, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_505_{arg1=False, arg2=-2, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_506_{arg1=False, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_507_{arg1=False, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_508_{arg1=False, arg2=True, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_509_{arg1=False, arg2=True, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_510_{arg1=False, arg2=False, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_511_{arg1=False, arg2=False, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_512_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='power', use_dtype=True}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_513_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_514_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_515_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_516_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='subtract', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_517_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_518_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='power', use_dtype=True}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_519_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_520_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_521_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_522_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='subtract', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_523_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_524_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_525_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_526_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_527_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_528_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_529_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_530_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, dtype=float64, name='power', use_dtype=True}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_531_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_532_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_533_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_534_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, dtype=float64, name='subtract', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_535_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_536_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_537_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_538_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_539_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_540_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_541_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_542_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_543_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_544_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_545_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_546_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_547_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_548_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='power', use_dtype=True}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_549_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_550_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='true_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_551_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_552_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='subtract', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_553_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_554_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='power', use_dtype=True}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_555_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_556_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_557_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_558_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='subtract', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_559_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_560_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_561_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_562_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_563_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_564_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_565_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_566_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, dtype=float64, name='power', use_dtype=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_567_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_568_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_569_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_570_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, dtype=float64, name='subtract', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_571_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_572_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_573_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_574_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_575_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_576_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_577_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_578_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_579_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_580_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_581_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_582_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_583_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_584_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_585_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_586_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_587_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_588_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_589_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_590_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_591_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_592_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_593_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_594_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_595_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_596_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_597_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_598_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_599_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_600_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_601_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_602_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_603_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_604_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_605_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_606_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_607_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_608_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_609_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_610_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_611_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_612_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_613_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_614_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_615_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_616_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_617_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_618_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_619_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_620_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='power', use_dtype=True}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_621_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_622_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_623_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_624_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_625_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_626_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='power', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_627_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_628_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_629_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_630_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_631_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_632_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_633_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_634_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_635_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_636_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_637_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_638_{arg1=0.0, arg2=0.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_639_{arg1=0.0, arg2=0.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_640_{arg1=0.0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_641_{arg1=0.0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_642_{arg1=0.0, arg2=0.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_643_{arg1=0.0, arg2=0.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_644_{arg1=0.0, arg2=2.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_645_{arg1=0.0, arg2=2.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_646_{arg1=0.0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_647_{arg1=0.0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_648_{arg1=0.0, arg2=2.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_649_{arg1=0.0, arg2=2.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_650_{arg1=0.0, arg2=-2.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_651_{arg1=0.0, arg2=-2.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_652_{arg1=0.0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_653_{arg1=0.0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_654_{arg1=0.0, arg2=-2.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_655_{arg1=0.0, arg2=-2.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_656_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_657_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_658_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_659_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_660_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_661_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_662_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_663_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_664_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_665_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_666_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_667_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_668_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_669_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_670_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_671_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_672_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_673_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_674_{arg1=2.0, arg2=0.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_675_{arg1=2.0, arg2=0.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_676_{arg1=2.0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_677_{arg1=2.0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_678_{arg1=2.0, arg2=0.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_679_{arg1=2.0, arg2=0.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_680_{arg1=2.0, arg2=2.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_681_{arg1=2.0, arg2=2.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_682_{arg1=2.0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_683_{arg1=2.0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_684_{arg1=2.0, arg2=2.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_685_{arg1=2.0, arg2=2.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_686_{arg1=2.0, arg2=-2.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_687_{arg1=2.0, arg2=-2.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_688_{arg1=2.0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_689_{arg1=2.0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_690_{arg1=2.0, arg2=-2.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_691_{arg1=2.0, arg2=-2.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_692_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_693_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_694_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_695_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_696_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_697_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_698_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_699_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_700_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_701_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_702_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_703_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_704_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_705_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_706_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_707_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_708_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_709_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_710_{arg1=-2.0, arg2=0.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_711_{arg1=-2.0, arg2=0.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_712_{arg1=-2.0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_713_{arg1=-2.0, arg2=0.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_714_{arg1=-2.0, arg2=0.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_715_{arg1=-2.0, arg2=0.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_716_{arg1=-2.0, arg2=2.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_717_{arg1=-2.0, arg2=2.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_718_{arg1=-2.0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_719_{arg1=-2.0, arg2=2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_720_{arg1=-2.0, arg2=2.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_721_{arg1=-2.0, arg2=2.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_722_{arg1=-2.0, arg2=-2.0, dtype=float64, name='power', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_723_{arg1=-2.0, arg2=-2.0, dtype=float64, name='power', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_724_{arg1=-2.0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_725_{arg1=-2.0, arg2=-2.0, dtype=float64, name='true_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_726_{arg1=-2.0, arg2=-2.0, dtype=float64, name='subtract', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_727_{arg1=-2.0, arg2=-2.0, dtype=float64, name='subtract', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_728_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_729_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_730_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_731_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_732_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_733_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_734_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_735_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_736_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_737_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_738_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_739_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_740_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_741_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_742_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_743_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_744_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_745_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_746_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_747_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_748_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_749_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_750_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_751_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_752_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_753_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_754_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_755_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_756_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_757_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_758_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_759_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_760_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_761_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_762_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_763_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_764_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_765_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_766_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_767_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_768_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_769_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_770_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_771_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_772_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_773_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_774_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_775_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_776_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_777_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_778_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_779_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_780_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_781_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_782_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_783_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_784_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_785_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_786_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_787_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_788_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_789_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_790_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_791_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_792_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_793_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_794_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_795_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_796_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_797_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_798_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_799_{arg1=array([[False, True, False], [ True, False, True]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_800_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_801_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_802_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_803_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_804_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_805_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_806_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_807_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_808_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_809_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_810_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_811_{arg1=array([[False, True, False], [ True, False, True]]), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_812_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_813_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_814_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_815_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_816_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_817_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_818_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_819_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_820_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_821_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_822_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_823_{arg1=array([[False, True, False], [ True, False, True]]), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_824_{arg1=array([[False, True, False], [ True, False, True]]), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_825_{arg1=array([[False, True, False], [ True, False, True]]), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_826_{arg1=array([[False, True, False], [ True, False, True]]), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_827_{arg1=array([[False, True, False], [ True, False, True]]), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_828_{arg1=array([[False, True, False], [ True, False, True]]), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_829_{arg1=array([[False, True, False], [ True, False, True]]), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_830_{arg1=array([[False, True, False], [ True, False, True]]), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_831_{arg1=array([[False, True, False], [ True, False, True]]), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_832_{arg1=array([[False, True, False], [ True, False, True]]), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_833_{arg1=array([[False, True, False], [ True, False, True]]), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_834_{arg1=array([[False, True, False], [ True, False, True]]), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_835_{arg1=array([[False, True, False], [ True, False, True]]), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_836_{arg1=array([[False, True, False], [ True, False, True]]), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_837_{arg1=array([[False, True, False], [ True, False, True]]), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_838_{arg1=array([[False, True, False], [ True, False, True]]), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_839_{arg1=array([[False, True, False], [ True, False, True]]), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_840_{arg1=array([[False, True, False], [ True, False, True]]), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_841_{arg1=array([[False, True, False], [ True, False, True]]), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_842_{arg1=array([[False, True, False], [ True, False, True]]), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_843_{arg1=array([[False, True, False], [ True, False, True]]), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_844_{arg1=array([[False, True, False], [ True, False, True]]), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_845_{arg1=array([[False, True, False], [ True, False, True]]), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_846_{arg1=array([[False, True, False], [ True, False, True]]), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_847_{arg1=array([[False, True, False], [ True, False, True]]), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_848_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_849_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_850_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_851_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_852_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_853_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_854_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_855_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_856_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_857_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_858_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_859_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_860_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_861_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_862_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_863_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_864_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_865_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_866_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_867_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_868_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_869_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_870_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_871_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_872_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_873_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_874_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_875_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_876_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_877_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_878_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_879_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_880_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_881_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_882_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_883_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_884_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_885_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_886_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_887_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_888_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_889_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_890_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_891_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_892_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_893_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_894_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_895_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_896_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_897_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_898_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_899_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_900_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_901_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_902_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_903_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_904_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_905_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_906_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_907_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_908_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_909_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_910_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_911_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_912_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_913_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_914_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_915_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_916_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_917_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_918_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_919_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_920_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_921_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_922_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_923_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_924_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_925_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_926_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_927_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_928_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_929_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_930_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_931_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_932_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_933_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_934_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_935_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_936_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_937_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_938_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_939_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_940_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_941_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_942_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_943_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_944_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_945_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_946_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_947_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_948_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_949_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_950_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_951_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_952_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_953_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_954_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_955_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_956_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_957_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_958_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_959_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_960_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_961_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_962_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_963_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_964_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_965_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_966_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_967_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float16), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_968_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_969_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_970_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_971_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_972_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_973_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_974_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_975_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_976_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_977_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_978_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_979_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_980_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_981_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_982_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_983_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_984_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_985_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_986_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_987_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_988_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_989_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_990_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_991_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_992_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_993_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_994_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_995_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_996_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_997_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_998_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_999_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1000_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1001_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1002_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1003_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1004_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1005_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1006_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1007_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1008_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1009_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1010_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1011_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1012_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1013_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1014_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1015_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1016_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1017_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1018_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1019_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1020_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1021_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1022_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1023_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1024_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1025_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1026_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1027_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1028_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1029_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1030_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1031_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1032_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1033_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1034_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1035_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1036_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1037_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1038_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1039_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1040_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1041_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1042_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1043_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1044_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1045_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1046_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1047_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1048_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1049_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1050_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1051_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1052_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1053_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1054_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1055_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1056_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1057_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1058_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1059_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1060_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1061_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1062_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1063_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1064_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1065_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1066_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1067_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1068_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1069_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1070_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1071_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1072_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1073_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1074_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1075_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1076_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1077_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1078_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1079_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1080_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1081_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1082_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1083_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1084_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1085_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1086_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1087_{arg1=array([[1., 2., 3.], [4., 5., 6.]], dtype=float32), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1088_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1089_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1090_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1091_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1092_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1093_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1094_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1095_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1096_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1097_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1098_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1099_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1100_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1101_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1102_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1103_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1104_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1105_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1106_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1107_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1108_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1109_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1110_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1111_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1112_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1113_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1114_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1115_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1116_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1117_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1118_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1119_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1120_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1121_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1122_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1123_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1124_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1125_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1126_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1127_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1128_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1129_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1130_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1131_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1132_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1133_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1134_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1135_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1136_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1137_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1138_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1139_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1140_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1141_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1142_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1143_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1144_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1145_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1146_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1147_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1148_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1149_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1150_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1151_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1152_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1153_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1154_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1155_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1156_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1157_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1158_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1159_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1160_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1161_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1162_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1163_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1164_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1165_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1166_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1167_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1168_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1169_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1170_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1171_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1172_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1173_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1174_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1175_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1176_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1177_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1178_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1179_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1180_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1181_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1182_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1183_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1184_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1185_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1186_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1187_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1188_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1189_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1190_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1191_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1192_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1193_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1194_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1195_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1196_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1197_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1198_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1199_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1200_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1201_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1202_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1203_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1204_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1205_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1206_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1207_{arg1=array([[1., 2., 3.], [4., 5., 6.]]), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1208_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1209_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1210_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1211_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1212_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1213_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1214_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1215_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1216_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1217_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1218_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1219_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1220_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1221_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1222_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1223_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1224_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1225_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1226_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1227_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1228_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1229_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1230_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1231_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1232_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1233_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1234_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1235_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1236_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1237_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1238_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1239_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1240_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1241_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1242_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1243_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1244_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1245_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1246_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1247_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1248_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1249_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1250_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1251_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1252_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1253_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1254_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1255_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1256_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1257_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1258_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1259_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1260_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1261_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1262_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1263_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1264_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1265_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1266_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1267_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1268_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1269_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1270_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1271_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1272_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1273_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1274_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1275_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1276_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1277_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1278_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1279_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1280_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1281_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1282_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1283_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1284_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1285_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1286_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1287_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1288_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1289_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1290_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1291_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1292_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1293_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1294_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1295_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1296_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1297_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1298_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1299_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1300_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1301_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1302_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1303_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1304_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1305_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1306_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1307_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1308_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1309_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1310_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1311_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1312_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1313_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1314_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1315_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1316_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1317_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1318_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1319_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1320_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1321_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1322_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1323_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1324_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1325_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1326_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1327_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int8), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1328_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1329_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1330_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1331_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1332_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1333_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1334_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1335_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1336_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1337_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1338_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1339_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1340_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1341_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1342_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1343_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1344_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1345_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1346_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1347_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1348_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1349_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1350_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1351_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1352_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1353_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1354_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1355_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1356_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1357_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1358_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1359_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1360_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1361_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1362_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1363_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1364_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1365_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1366_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1367_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1368_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1369_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1370_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1371_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1372_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1373_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1374_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1375_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1376_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1377_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1378_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1379_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1380_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1381_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1382_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1383_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1384_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1385_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1386_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1387_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1388_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1389_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1390_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1391_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1392_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1393_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1394_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1395_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1396_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1397_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1398_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1399_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1400_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1401_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1402_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1403_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1404_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1405_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1406_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1407_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1408_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1409_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1410_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1411_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1412_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1413_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1414_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1415_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1416_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1417_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1418_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1419_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1420_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1421_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1422_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1423_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1424_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1425_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1426_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1427_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1428_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1429_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1430_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1431_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1432_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1433_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1434_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1435_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1436_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1437_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1438_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1439_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1440_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1441_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1442_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1443_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1444_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1445_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1446_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1447_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int16), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1448_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1449_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1450_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1451_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1452_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1453_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1454_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1455_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1456_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1457_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1458_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1459_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1460_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1461_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1462_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1463_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1464_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1465_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1466_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1467_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1468_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1469_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1470_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1471_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1472_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1473_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1474_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1475_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1476_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1477_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1478_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1479_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1480_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1481_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1482_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1483_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1484_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1485_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1486_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1487_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1488_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1489_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1490_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1491_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1492_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1493_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1494_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1495_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1496_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1497_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1498_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1499_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1500_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1501_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1502_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1503_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1504_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1505_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1506_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1507_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1508_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1509_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1510_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1511_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1512_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1513_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1514_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1515_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1516_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1517_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1518_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1519_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1520_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1521_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1522_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1523_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1524_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1525_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1526_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1527_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1528_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1529_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1530_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1531_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1532_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1533_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1534_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1535_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1536_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1537_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1538_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1539_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1540_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1541_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1542_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1543_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1544_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1545_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1546_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1547_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1548_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1549_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1550_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1551_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1552_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1553_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1554_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1555_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1556_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1557_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1558_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1559_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1560_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1561_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1562_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1563_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1564_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1565_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1566_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1567_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=int32), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1568_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1569_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1570_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1571_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1572_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1573_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1574_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1575_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1576_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1577_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1578_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1579_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1580_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1581_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1582_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1583_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1584_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1585_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1586_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1587_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1588_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1589_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1590_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1591_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1592_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1593_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1594_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1595_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1596_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1597_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1598_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1599_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1600_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1601_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1602_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1603_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1604_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1605_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1606_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1607_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1608_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1609_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1610_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1611_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1612_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1613_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1614_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1615_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1616_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1617_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1618_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1619_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1620_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1621_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1622_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1623_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1624_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1625_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1626_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1627_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1628_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1629_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1630_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1631_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1632_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1633_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1634_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1635_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1636_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1637_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1638_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1639_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1640_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1641_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1642_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1643_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1644_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1645_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1646_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1647_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1648_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1649_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1650_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1651_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1652_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1653_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1654_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1655_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1656_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1657_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1658_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1659_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1660_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1661_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1662_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1663_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1664_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1665_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1666_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1667_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1668_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1669_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1670_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1671_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1672_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1673_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1674_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1675_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1676_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1677_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1678_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1679_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1680_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1681_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1682_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1683_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1684_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1685_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1686_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1687_{arg1=array([[1, 2, 3], [4, 5, 6]]), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1688_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1689_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1690_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1691_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1692_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1693_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1694_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1695_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1696_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1697_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1698_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1699_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1700_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1701_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1702_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1703_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1704_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1705_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1706_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1707_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1708_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1709_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1710_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1711_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1712_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1713_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1714_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1715_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1716_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1717_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1718_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1719_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1720_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1721_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1722_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1723_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1724_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1725_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1726_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1727_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1728_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1729_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1730_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1731_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1732_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1733_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1734_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1735_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1736_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1737_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1738_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1739_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1740_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1741_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1742_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1743_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1744_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1745_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1746_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1747_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1748_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1749_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1750_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1751_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1752_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1753_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1754_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1755_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1756_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1757_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1758_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1759_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1760_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1761_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1762_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1763_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1764_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1765_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1766_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1767_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1768_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1769_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1770_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1771_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1772_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1773_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1774_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1775_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1776_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1777_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1778_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1779_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1780_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1781_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1782_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1783_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1784_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1785_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1786_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1787_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1788_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1789_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1790_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1791_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1792_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1793_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1794_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1795_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1796_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1797_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1798_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1799_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1800_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1801_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1802_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1803_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1804_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1805_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1806_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1807_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint8), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1808_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1809_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1810_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1811_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1812_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1813_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1814_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1815_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1816_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1817_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1818_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1819_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1820_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1821_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1822_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1823_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1824_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1825_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1826_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1827_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1828_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1829_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1830_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1831_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1832_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1833_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1834_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1835_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1836_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1837_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1838_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1839_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1840_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1841_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1842_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1843_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1844_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1845_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1846_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1847_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1848_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1849_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1850_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1851_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1852_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1853_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1854_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1855_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1856_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1857_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1858_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1859_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1860_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1861_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1862_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1863_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1864_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1865_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1866_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1867_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1868_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1869_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1870_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1871_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1872_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1873_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1874_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1875_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1876_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1877_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1878_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1879_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1880_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1881_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1882_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1883_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1884_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1885_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1886_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1887_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1888_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1889_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1890_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1891_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1892_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1893_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1894_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1895_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1896_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1897_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1898_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1899_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1900_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1901_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1902_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1903_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1904_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1905_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1906_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1907_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1908_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1909_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1910_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1911_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1912_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1913_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1914_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1915_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1916_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1917_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1918_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1919_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1920_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1921_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1922_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1923_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1924_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1925_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1926_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1927_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint16), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1928_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1929_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1930_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1931_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1932_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1933_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1934_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1935_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1936_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1937_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1938_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1939_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1940_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1941_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1942_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1943_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1944_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1945_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1946_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1947_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1948_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1949_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1950_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1951_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1952_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1953_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1954_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1955_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1956_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1957_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1958_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1959_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1960_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1961_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1962_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1963_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1964_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1965_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1966_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1967_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1968_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1969_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1970_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1971_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1972_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1973_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1974_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1975_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1976_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1977_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1978_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1979_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1980_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1981_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1982_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1983_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1984_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1985_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1986_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1987_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1988_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1989_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1990_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1991_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1992_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1993_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1994_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1995_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1996_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1997_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1998_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_1999_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2000_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2001_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2002_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2003_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2004_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2005_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2006_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2007_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2008_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2009_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2010_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2011_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2012_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2013_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2014_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2015_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2016_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2017_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2018_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2019_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2020_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2021_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2022_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2023_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2024_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2025_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2026_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2027_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2028_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2029_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2030_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2031_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2032_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2033_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2034_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2035_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2036_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2037_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2038_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2039_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2040_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2041_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2042_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2043_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2044_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2045_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2046_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2047_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint32), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2048_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2049_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2050_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2051_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2052_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2053_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2054_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2055_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2056_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2057_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2058_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2059_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2060_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2061_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2062_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2063_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2064_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2065_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2066_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2067_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2068_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2069_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2070_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2071_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2072_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2073_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2074_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2075_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2076_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2077_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2078_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2079_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2080_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2081_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2082_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2083_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2084_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2085_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2086_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2087_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2088_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2089_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2090_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2091_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2092_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2093_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2094_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2095_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2096_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2097_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2098_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2099_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2100_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2101_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2102_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2103_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2104_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2105_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2106_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2107_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2108_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2109_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2110_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2111_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2112_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2113_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2114_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2115_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2116_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2117_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2118_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2119_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2120_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2121_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2122_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2123_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2124_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2125_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2126_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2127_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2128_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2129_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2130_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2131_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2132_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2133_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2134_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2135_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2136_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2137_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2138_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2139_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2140_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2141_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2142_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2143_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2144_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2145_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2146_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2147_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2148_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2149_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2150_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2151_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2152_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2153_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2154_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2155_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2156_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2157_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2158_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2159_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2160_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2161_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2162_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2163_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2164_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2165_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2166_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2167_{arg1=array([[1, 2, 3], [4, 5, 6]], dtype=uint64), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2168_{arg1=0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2169_{arg1=0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2170_{arg1=0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2171_{arg1=0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2172_{arg1=0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2173_{arg1=0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2174_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2175_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2176_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2177_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2178_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2179_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2180_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2181_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2182_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2183_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2184_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2185_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2186_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2187_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2188_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2189_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2190_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2191_{arg1=0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2192_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2193_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2194_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2195_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2196_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2197_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2198_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2199_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2200_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2201_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2202_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2203_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2204_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2205_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2206_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2207_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2208_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2209_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2210_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2211_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2212_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2213_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2214_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2215_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2216_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2217_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2218_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2219_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2220_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2221_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2222_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2223_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2224_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2225_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2226_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2227_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2228_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2229_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2230_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2231_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2232_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2233_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2234_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2235_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2236_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2237_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2238_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2239_{arg1=0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2240_{arg1=0, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2241_{arg1=0, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2242_{arg1=0, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2243_{arg1=0, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2244_{arg1=0, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2245_{arg1=0, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2246_{arg1=0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2247_{arg1=0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2248_{arg1=0, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2249_{arg1=0, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2250_{arg1=0, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2251_{arg1=0, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2252_{arg1=0, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2253_{arg1=0, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2254_{arg1=0, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2255_{arg1=0, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2256_{arg1=0, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2257_{arg1=0, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2258_{arg1=0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2259_{arg1=0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2260_{arg1=0, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2261_{arg1=0, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2262_{arg1=0, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2263_{arg1=0, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2264_{arg1=0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2265_{arg1=0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2266_{arg1=0, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2267_{arg1=0, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2268_{arg1=0, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2269_{arg1=0, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2270_{arg1=0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2271_{arg1=0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2272_{arg1=0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2273_{arg1=0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2274_{arg1=0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2275_{arg1=0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2276_{arg1=0, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2277_{arg1=0, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2278_{arg1=0, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2279_{arg1=0, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2280_{arg1=0, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2281_{arg1=0, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2282_{arg1=0, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2283_{arg1=0, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2284_{arg1=0, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2285_{arg1=0, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2286_{arg1=0, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2287_{arg1=0, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2288_{arg1=0.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2289_{arg1=0.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2290_{arg1=0.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2291_{arg1=0.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2292_{arg1=0.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2293_{arg1=0.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2294_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2295_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2296_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2297_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2298_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2299_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2300_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2301_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2302_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2303_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2304_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2305_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2306_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2307_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2308_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2309_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2310_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2311_{arg1=0.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2312_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2313_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2314_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2315_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2316_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2317_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2318_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2319_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2320_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2321_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2322_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2323_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2324_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2325_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2326_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2327_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2328_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2329_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2330_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2331_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2332_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2333_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2334_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2335_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2336_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2337_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2338_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2339_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2340_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2341_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2342_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2343_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2344_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2345_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2346_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2347_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2348_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2349_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2350_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2351_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2352_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2353_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2354_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2355_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2356_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2357_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2358_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2359_{arg1=0.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2360_{arg1=0.0, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2361_{arg1=0.0, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2362_{arg1=0.0, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2363_{arg1=0.0, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2364_{arg1=0.0, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2365_{arg1=0.0, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2366_{arg1=0.0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2367_{arg1=0.0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2368_{arg1=0.0, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2369_{arg1=0.0, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2370_{arg1=0.0, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2371_{arg1=0.0, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2372_{arg1=0.0, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2373_{arg1=0.0, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2374_{arg1=0.0, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2375_{arg1=0.0, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2376_{arg1=0.0, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2377_{arg1=0.0, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2378_{arg1=0.0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2379_{arg1=0.0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2380_{arg1=0.0, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2381_{arg1=0.0, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2382_{arg1=0.0, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2383_{arg1=0.0, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2384_{arg1=0.0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2385_{arg1=0.0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2386_{arg1=0.0, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2387_{arg1=0.0, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2388_{arg1=0.0, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2389_{arg1=0.0, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2390_{arg1=0.0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2391_{arg1=0.0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2392_{arg1=0.0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2393_{arg1=0.0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2394_{arg1=0.0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2395_{arg1=0.0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2396_{arg1=0.0, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2397_{arg1=0.0, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2398_{arg1=0.0, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2399_{arg1=0.0, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2400_{arg1=0.0, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2401_{arg1=0.0, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2402_{arg1=0.0, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2403_{arg1=0.0, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2404_{arg1=0.0, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2405_{arg1=0.0, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2406_{arg1=0.0, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2407_{arg1=0.0, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2408_{arg1=2, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2409_{arg1=2, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2410_{arg1=2, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2411_{arg1=2, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2412_{arg1=2, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2413_{arg1=2, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2414_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2415_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2416_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2417_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2418_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2419_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2420_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2421_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2422_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2423_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2424_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2425_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2426_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2427_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2428_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2429_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2430_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2431_{arg1=2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2432_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2433_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2434_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2435_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2436_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2437_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2438_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2439_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2440_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2441_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2442_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2443_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2444_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2445_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2446_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2447_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2448_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2449_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2450_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2451_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2452_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2453_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2454_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2455_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2456_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2457_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2458_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2459_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2460_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2461_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2462_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2463_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2464_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2465_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2466_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2467_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2468_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2469_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2470_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2471_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2472_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2473_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2474_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2475_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2476_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2477_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2478_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2479_{arg1=2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2480_{arg1=2, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2481_{arg1=2, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2482_{arg1=2, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2483_{arg1=2, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2484_{arg1=2, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2485_{arg1=2, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2486_{arg1=2, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2487_{arg1=2, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2488_{arg1=2, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2489_{arg1=2, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2490_{arg1=2, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2491_{arg1=2, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2492_{arg1=2, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2493_{arg1=2, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2494_{arg1=2, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2495_{arg1=2, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2496_{arg1=2, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2497_{arg1=2, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2498_{arg1=2, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2499_{arg1=2, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2500_{arg1=2, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2501_{arg1=2, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2502_{arg1=2, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2503_{arg1=2, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2504_{arg1=2, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2505_{arg1=2, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2506_{arg1=2, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2507_{arg1=2, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2508_{arg1=2, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2509_{arg1=2, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2510_{arg1=2, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2511_{arg1=2, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2512_{arg1=2, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2513_{arg1=2, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2514_{arg1=2, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2515_{arg1=2, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2516_{arg1=2, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2517_{arg1=2, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2518_{arg1=2, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2519_{arg1=2, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2520_{arg1=2, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2521_{arg1=2, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2522_{arg1=2, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2523_{arg1=2, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2524_{arg1=2, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2525_{arg1=2, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2526_{arg1=2, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2527_{arg1=2, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2528_{arg1=2.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2529_{arg1=2.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2530_{arg1=2.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2531_{arg1=2.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2532_{arg1=2.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2533_{arg1=2.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2534_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2535_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2536_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2537_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2538_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2539_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2540_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2541_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2542_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2543_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2544_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2545_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2546_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2547_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2548_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2549_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2550_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2551_{arg1=2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2552_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2553_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2554_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2555_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2556_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2557_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2558_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2559_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2560_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2561_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2562_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2563_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2564_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2565_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2566_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2567_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2568_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2569_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2570_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2571_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2572_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2573_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2574_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2575_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2576_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2577_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2578_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2579_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2580_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2581_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2582_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2583_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2584_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2585_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2586_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2587_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2588_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2589_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2590_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2591_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2592_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2593_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2594_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2595_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2596_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2597_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2598_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2599_{arg1=2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2600_{arg1=2.0, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2601_{arg1=2.0, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2602_{arg1=2.0, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2603_{arg1=2.0, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2604_{arg1=2.0, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2605_{arg1=2.0, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2606_{arg1=2.0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2607_{arg1=2.0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2608_{arg1=2.0, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2609_{arg1=2.0, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2610_{arg1=2.0, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2611_{arg1=2.0, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2612_{arg1=2.0, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2613_{arg1=2.0, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2614_{arg1=2.0, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2615_{arg1=2.0, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2616_{arg1=2.0, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2617_{arg1=2.0, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2618_{arg1=2.0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2619_{arg1=2.0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2620_{arg1=2.0, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2621_{arg1=2.0, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2622_{arg1=2.0, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2623_{arg1=2.0, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2624_{arg1=2.0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2625_{arg1=2.0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2626_{arg1=2.0, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2627_{arg1=2.0, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2628_{arg1=2.0, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2629_{arg1=2.0, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2630_{arg1=2.0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2631_{arg1=2.0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2632_{arg1=2.0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2633_{arg1=2.0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2634_{arg1=2.0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2635_{arg1=2.0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2636_{arg1=2.0, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2637_{arg1=2.0, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2638_{arg1=2.0, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2639_{arg1=2.0, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2640_{arg1=2.0, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2641_{arg1=2.0, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2642_{arg1=2.0, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2643_{arg1=2.0, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2644_{arg1=2.0, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2645_{arg1=2.0, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2646_{arg1=2.0, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2647_{arg1=2.0, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2648_{arg1=-2, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2649_{arg1=-2, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2650_{arg1=-2, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2651_{arg1=-2, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2652_{arg1=-2, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2653_{arg1=-2, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2654_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2655_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2656_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2657_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2658_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2659_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2660_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2661_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2662_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2663_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2664_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2665_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2666_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2667_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2668_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2669_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2670_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2671_{arg1=-2, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2672_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2673_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2674_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2675_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2676_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2677_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2678_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2679_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2680_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2681_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2682_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2683_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2684_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2685_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2686_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2687_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2688_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2689_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2690_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2691_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2692_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2693_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2694_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2695_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2696_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2697_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2698_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2699_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2700_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2701_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2702_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2703_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2704_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2705_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2706_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2707_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2708_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2709_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2710_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2711_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2712_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2713_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2714_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2715_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2716_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2717_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2718_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2719_{arg1=-2, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2720_{arg1=-2, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2721_{arg1=-2, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2722_{arg1=-2, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2723_{arg1=-2, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2724_{arg1=-2, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2725_{arg1=-2, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2726_{arg1=-2, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2727_{arg1=-2, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2728_{arg1=-2, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2729_{arg1=-2, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2730_{arg1=-2, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2731_{arg1=-2, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2732_{arg1=-2, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2733_{arg1=-2, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2734_{arg1=-2, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2735_{arg1=-2, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2736_{arg1=-2, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2737_{arg1=-2, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2738_{arg1=-2, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2739_{arg1=-2, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2740_{arg1=-2, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2741_{arg1=-2, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2742_{arg1=-2, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2743_{arg1=-2, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2744_{arg1=-2, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2745_{arg1=-2, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2746_{arg1=-2, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2747_{arg1=-2, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2748_{arg1=-2, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2749_{arg1=-2, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2750_{arg1=-2, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2751_{arg1=-2, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2752_{arg1=-2, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2753_{arg1=-2, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2754_{arg1=-2, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2755_{arg1=-2, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2756_{arg1=-2, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2757_{arg1=-2, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2758_{arg1=-2, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2759_{arg1=-2, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2760_{arg1=-2, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2761_{arg1=-2, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2762_{arg1=-2, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2763_{arg1=-2, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2764_{arg1=-2, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2765_{arg1=-2, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2766_{arg1=-2, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2767_{arg1=-2, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2768_{arg1=-2.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2769_{arg1=-2.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2770_{arg1=-2.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2771_{arg1=-2.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2772_{arg1=-2.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2773_{arg1=-2.0, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2774_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2775_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2776_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2777_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2778_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2779_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2780_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2781_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2782_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2783_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2784_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2785_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2786_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2787_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2788_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2789_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2790_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2791_{arg1=-2.0, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2792_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2793_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2794_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2795_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2796_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2797_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2798_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2799_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2800_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2801_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2802_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2803_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2804_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2805_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2806_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2807_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2808_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2809_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2810_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2811_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2812_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2813_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2814_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2815_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2816_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2817_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2818_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2819_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2820_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2821_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2822_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2823_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2824_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2825_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2826_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2827_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2828_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2829_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2830_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2831_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2832_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2833_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2834_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2835_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2836_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2837_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2838_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2839_{arg1=-2.0, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2840_{arg1=-2.0, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2841_{arg1=-2.0, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2842_{arg1=-2.0, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2843_{arg1=-2.0, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2844_{arg1=-2.0, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2845_{arg1=-2.0, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2846_{arg1=-2.0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2847_{arg1=-2.0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2848_{arg1=-2.0, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2849_{arg1=-2.0, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2850_{arg1=-2.0, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2851_{arg1=-2.0, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2852_{arg1=-2.0, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2853_{arg1=-2.0, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2854_{arg1=-2.0, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2855_{arg1=-2.0, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2856_{arg1=-2.0, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2857_{arg1=-2.0, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2858_{arg1=-2.0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2859_{arg1=-2.0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2860_{arg1=-2.0, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2861_{arg1=-2.0, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2862_{arg1=-2.0, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2863_{arg1=-2.0, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2864_{arg1=-2.0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2865_{arg1=-2.0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2866_{arg1=-2.0, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2867_{arg1=-2.0, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2868_{arg1=-2.0, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2869_{arg1=-2.0, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2870_{arg1=-2.0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2871_{arg1=-2.0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2872_{arg1=-2.0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2873_{arg1=-2.0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2874_{arg1=-2.0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2875_{arg1=-2.0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2876_{arg1=-2.0, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2877_{arg1=-2.0, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2878_{arg1=-2.0, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2879_{arg1=-2.0, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2880_{arg1=-2.0, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2881_{arg1=-2.0, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2882_{arg1=-2.0, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2883_{arg1=-2.0, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2884_{arg1=-2.0, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2885_{arg1=-2.0, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2886_{arg1=-2.0, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2887_{arg1=-2.0, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2888_{arg1=True, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2889_{arg1=True, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2890_{arg1=True, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2891_{arg1=True, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2892_{arg1=True, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2893_{arg1=True, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2894_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2895_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2896_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2897_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2898_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2899_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2900_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2901_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2902_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2903_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2904_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2905_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2906_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2907_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2908_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2909_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2910_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2911_{arg1=True, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2912_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2913_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2914_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2915_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2916_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2917_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2918_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2919_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2920_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2921_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2922_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2923_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2924_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2925_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2926_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2927_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2928_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2929_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2930_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2931_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2932_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2933_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2934_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2935_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2936_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2937_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2938_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2939_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2940_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2941_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2942_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2943_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2944_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2945_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2946_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2947_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2948_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2949_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2950_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2951_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2952_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2953_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2954_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2955_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2956_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2957_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2958_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2959_{arg1=True, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2960_{arg1=True, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2961_{arg1=True, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2962_{arg1=True, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2963_{arg1=True, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2964_{arg1=True, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2965_{arg1=True, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2966_{arg1=True, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2967_{arg1=True, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2968_{arg1=True, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2969_{arg1=True, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2970_{arg1=True, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2971_{arg1=True, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2972_{arg1=True, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2973_{arg1=True, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2974_{arg1=True, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2975_{arg1=True, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2976_{arg1=True, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2977_{arg1=True, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2978_{arg1=True, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2979_{arg1=True, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2980_{arg1=True, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2981_{arg1=True, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2982_{arg1=True, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2983_{arg1=True, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2984_{arg1=True, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2985_{arg1=True, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2986_{arg1=True, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2987_{arg1=True, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2988_{arg1=True, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2989_{arg1=True, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2990_{arg1=True, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2991_{arg1=True, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2992_{arg1=True, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2993_{arg1=True, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2994_{arg1=True, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2995_{arg1=True, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2996_{arg1=True, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2997_{arg1=True, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2998_{arg1=True, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_2999_{arg1=True, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3000_{arg1=True, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3001_{arg1=True, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3002_{arg1=True, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3003_{arg1=True, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3004_{arg1=True, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3005_{arg1=True, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3006_{arg1=True, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3007_{arg1=True, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3008_{arg1=False, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3009_{arg1=False, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3010_{arg1=False, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3011_{arg1=False, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3012_{arg1=False, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3013_{arg1=False, arg2=array([[ True, False, True], [False, True, False]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3014_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3015_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3016_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3017_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3018_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3019_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3020_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3021_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3022_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3023_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3024_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3025_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3026_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3027_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3028_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3029_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3030_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3031_{arg1=False, arg2=array([[6., 5., 4.], [3., 2., 1.]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3032_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3033_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3034_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3035_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3036_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3037_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3038_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3039_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3040_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3041_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3042_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3043_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3044_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3045_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3046_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3047_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3048_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3049_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3050_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3051_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3052_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3053_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3054_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3055_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3056_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3057_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3058_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3059_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3060_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3061_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3062_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3063_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3064_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3065_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3066_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3067_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3068_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3069_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3070_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3071_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3072_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3073_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3074_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3075_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3076_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3077_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3078_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3079_{arg1=False, arg2=array([[6, 5, 4], [3, 2, 1]], dtype=uint64), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3080_{arg1=False, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3081_{arg1=False, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3082_{arg1=False, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3083_{arg1=False, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3084_{arg1=False, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3085_{arg1=False, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3086_{arg1=False, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3087_{arg1=False, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3088_{arg1=False, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3089_{arg1=False, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3090_{arg1=False, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3091_{arg1=False, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3092_{arg1=False, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3093_{arg1=False, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3094_{arg1=False, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3095_{arg1=False, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3096_{arg1=False, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3097_{arg1=False, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3098_{arg1=False, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3099_{arg1=False, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3100_{arg1=False, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3101_{arg1=False, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3102_{arg1=False, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3103_{arg1=False, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3104_{arg1=False, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3105_{arg1=False, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3106_{arg1=False, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3107_{arg1=False, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3108_{arg1=False, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3109_{arg1=False, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3110_{arg1=False, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3111_{arg1=False, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3112_{arg1=False, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3113_{arg1=False, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3114_{arg1=False, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3115_{arg1=False, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3116_{arg1=False, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3117_{arg1=False, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3118_{arg1=False, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3119_{arg1=False, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3120_{arg1=False, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3121_{arg1=False, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3122_{arg1=False, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3123_{arg1=False, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3124_{arg1=False, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3125_{arg1=False, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3126_{arg1=False, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3127_{arg1=False, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3128_{arg1=array([ True, True, True, True, True, True]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3129_{arg1=array([ True, True, True, True, True, True]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3130_{arg1=array([ True, True, True, True, True, True]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3131_{arg1=array([ True, True, True, True, True, True]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3132_{arg1=array([ True, True, True, True, True, True]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3133_{arg1=array([ True, True, True, True, True, True]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3134_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3135_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3136_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3137_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3138_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3139_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3140_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3141_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3142_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3143_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3144_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3145_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3146_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3147_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3148_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3149_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3150_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3151_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3152_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3153_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3154_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3155_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3156_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3157_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3158_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3159_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3160_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3161_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3162_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3163_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3164_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3165_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3166_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3167_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3168_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3169_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3170_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3171_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3172_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3173_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3174_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3175_{arg1=array([ True, True, True, True, True, True]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3176_{arg1=array([ True, True, True, True, True, True]), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3177_{arg1=array([ True, True, True, True, True, True]), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3178_{arg1=array([ True, True, True, True, True, True]), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3179_{arg1=array([ True, True, True, True, True, True]), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3180_{arg1=array([ True, True, True, True, True, True]), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3181_{arg1=array([ True, True, True, True, True, True]), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3182_{arg1=array([ True, True, True, True, True, True]), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3183_{arg1=array([ True, True, True, True, True, True]), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3184_{arg1=array([ True, True, True, True, True, True]), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3185_{arg1=array([ True, True, True, True, True, True]), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3186_{arg1=array([ True, True, True, True, True, True]), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3187_{arg1=array([ True, True, True, True, True, True]), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3188_{arg1=array([ True, True, True, True, True, True]), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3189_{arg1=array([ True, True, True, True, True, True]), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3190_{arg1=array([ True, True, True, True, True, True]), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3191_{arg1=array([ True, True, True, True, True, True]), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3192_{arg1=array([ True, True, True, True, True, True]), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3193_{arg1=array([ True, True, True, True, True, True]), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3194_{arg1=array([ True, True, True, True, True, True]), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3195_{arg1=array([ True, True, True, True, True, True]), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3196_{arg1=array([ True, True, True, True, True, True]), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3197_{arg1=array([ True, True, True, True, True, True]), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3198_{arg1=array([ True, True, True, True, True, True]), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3199_{arg1=array([ True, True, True, True, True, True]), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3200_{arg1=array([ True, True, True, True, True, True]), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3201_{arg1=array([ True, True, True, True, True, True]), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3202_{arg1=array([ True, True, True, True, True, True]), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3203_{arg1=array([ True, True, True, True, True, True]), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3204_{arg1=array([ True, True, True, True, True, True]), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3205_{arg1=array([ True, True, True, True, True, True]), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3206_{arg1=array([ True, True, True, True, True, True]), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3207_{arg1=array([ True, True, True, True, True, True]), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3208_{arg1=array([ True, True, True, True, True, True]), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3209_{arg1=array([ True, True, True, True, True, True]), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3210_{arg1=array([ True, True, True, True, True, True]), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3211_{arg1=array([ True, True, True, True, True, True]), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3212_{arg1=array([ True, True, True, True, True, True]), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3213_{arg1=array([ True, True, True, True, True, True]), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3214_{arg1=array([ True, True, True, True, True, True]), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3215_{arg1=array([ True, True, True, True, True, True]), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3216_{arg1=array([ True, True, True, True, True, True]), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3217_{arg1=array([ True, True, True, True, True, True]), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3218_{arg1=array([ True, True, True, True, True, True]), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3219_{arg1=array([ True, True, True, True, True, True]), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3220_{arg1=array([ True, True, True, True, True, True]), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3221_{arg1=array([ True, True, True, True, True, True]), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3222_{arg1=array([ True, True, True, True, True, True]), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3223_{arg1=array([ True, True, True, True, True, True]), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3224_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3225_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3226_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3227_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3228_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3229_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3230_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3231_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3232_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3233_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3234_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3235_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3236_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3237_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3238_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3239_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3240_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3241_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3242_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3243_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3244_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3245_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3246_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3247_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3248_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3249_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3250_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3251_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3252_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3253_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3254_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3255_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3256_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3257_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3258_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3259_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3260_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3261_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3262_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3263_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3264_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3265_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3266_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3267_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3268_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3269_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3270_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3271_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3272_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3273_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3274_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3275_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3276_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3277_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3278_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3279_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3280_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3281_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3282_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3283_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3284_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3285_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3286_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3287_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3288_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3289_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3290_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3291_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3292_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3293_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3294_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3295_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3296_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3297_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3298_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3299_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3300_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3301_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3302_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3303_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3304_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3305_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3306_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3307_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3308_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3309_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3310_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3311_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3312_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3313_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3314_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3315_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3316_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3317_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3318_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3319_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float16), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3320_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3321_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3322_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3323_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3324_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3325_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3326_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3327_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3328_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3329_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3330_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3331_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3332_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3333_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3334_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3335_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3336_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3337_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3338_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3339_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3340_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3341_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3342_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3343_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3344_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3345_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3346_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3347_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3348_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3349_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3350_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3351_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3352_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3353_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3354_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3355_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3356_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3357_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3358_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3359_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3360_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3361_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3362_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3363_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3364_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3365_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3366_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3367_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3368_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3369_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3370_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3371_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3372_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3373_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3374_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3375_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3376_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3377_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3378_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3379_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3380_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3381_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3382_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3383_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3384_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3385_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3386_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3387_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3388_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3389_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3390_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3391_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3392_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3393_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3394_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3395_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3396_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3397_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3398_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3399_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3400_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3401_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3402_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3403_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3404_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3405_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3406_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3407_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3408_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3409_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3410_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3411_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3412_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3413_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3414_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3415_{arg1=array([-3., -2., -1., 1., 2., 3.], dtype=float32), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3416_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3417_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3418_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3419_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3420_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3421_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3422_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3423_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3424_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3425_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3426_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3427_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3428_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3429_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3430_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3431_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3432_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3433_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3434_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3435_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3436_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3437_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3438_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3439_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3440_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3441_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3442_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3443_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3444_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3445_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3446_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3447_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3448_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3449_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3450_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3451_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3452_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3453_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3454_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3455_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3456_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3457_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3458_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3459_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3460_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3461_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3462_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3463_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3464_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3465_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3466_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3467_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3468_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3469_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3470_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3471_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3472_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3473_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3474_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3475_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3476_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3477_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3478_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3479_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3480_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3481_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3482_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3483_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3484_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3485_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3486_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3487_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3488_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3489_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3490_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3491_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3492_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3493_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3494_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3495_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3496_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3497_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3498_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3499_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3500_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3501_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3502_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3503_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3504_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3505_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3506_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3507_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3508_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3509_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3510_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3511_{arg1=array([-3., -2., -1., 1., 2., 3.]), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3512_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3513_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3514_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3515_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3516_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3517_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3518_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3519_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3520_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3521_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3522_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3523_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3524_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3525_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3526_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3527_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3528_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3529_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3530_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3531_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3532_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3533_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3534_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3535_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3536_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3537_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3538_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3539_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3540_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3541_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3542_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3543_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3544_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3545_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3546_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3547_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3548_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3549_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3550_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3551_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3552_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3553_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3554_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3555_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3556_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3557_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3558_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3559_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3560_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3561_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3562_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3563_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3564_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3565_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3566_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3567_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3568_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3569_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3570_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3571_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3572_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3573_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3574_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3575_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3576_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3577_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3578_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3579_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3580_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3581_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3582_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3583_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3584_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3585_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3586_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3587_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3588_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3589_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3590_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3591_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3592_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3593_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3594_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3595_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3596_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3597_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3598_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3599_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3600_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3601_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3602_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3603_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3604_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3605_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3606_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3607_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int8), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3608_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3609_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3610_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3611_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3612_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3613_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3614_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3615_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3616_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3617_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3618_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3619_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3620_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3621_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3622_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3623_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3624_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3625_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3626_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3627_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3628_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3629_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3630_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3631_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3632_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3633_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3634_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3635_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3636_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3637_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3638_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3639_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3640_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3641_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3642_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3643_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3644_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3645_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3646_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3647_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3648_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3649_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3650_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3651_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3652_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3653_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3654_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3655_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3656_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3657_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3658_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3659_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3660_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3661_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3662_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3663_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3664_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3665_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3666_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3667_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3668_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3669_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3670_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3671_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3672_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3673_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3674_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3675_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3676_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3677_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3678_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3679_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3680_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3681_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3682_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3683_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3684_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3685_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3686_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3687_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3688_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3689_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3690_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3691_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3692_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3693_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3694_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3695_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3696_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3697_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3698_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3699_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3700_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3701_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3702_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3703_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int16), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3704_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3705_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3706_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3707_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3708_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3709_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3710_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3711_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3712_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3713_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3714_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3715_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3716_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3717_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3718_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3719_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3720_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3721_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3722_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3723_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3724_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3725_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3726_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3727_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3728_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3729_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3730_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3731_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3732_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3733_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3734_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3735_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3736_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3737_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3738_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3739_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3740_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3741_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3742_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3743_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3744_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3745_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3746_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3747_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3748_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3749_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3750_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3751_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3752_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3753_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3754_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3755_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3756_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3757_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3758_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3759_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3760_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3761_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3762_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3763_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3764_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3765_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3766_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3767_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3768_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3769_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3770_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3771_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3772_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3773_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3774_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3775_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3776_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3777_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3778_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3779_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3780_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3781_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3782_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3783_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3784_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3785_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3786_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3787_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3788_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3789_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3790_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3791_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3792_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3793_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3794_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3795_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3796_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3797_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3798_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3799_{arg1=array([-3, -2, -1, 1, 2, 3], dtype=int32), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3800_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3801_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3802_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3803_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3804_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3805_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3806_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3807_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3808_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3809_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3810_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3811_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3812_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3813_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3814_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3815_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3816_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3817_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3818_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3819_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3820_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3821_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3822_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3823_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3824_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3825_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3826_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3827_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3828_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3829_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3830_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3831_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3832_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3833_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3834_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3835_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3836_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3837_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3838_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3839_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3840_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3841_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3842_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3843_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3844_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3845_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3846_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3847_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3848_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3849_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3850_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3851_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3852_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3853_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3854_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3855_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3856_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3857_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3858_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3859_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3860_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3861_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3862_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3863_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3864_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3865_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3866_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3867_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3868_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3869_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3870_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3871_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3872_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3873_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3874_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3875_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3876_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3877_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3878_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3879_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3880_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3881_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3882_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3883_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3884_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3885_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3886_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3887_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3888_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3889_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3890_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3891_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3892_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3893_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3894_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3895_{arg1=array([-3, -2, -1, 1, 2, 3]), arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3896_{arg1=0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3897_{arg1=0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3898_{arg1=0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3899_{arg1=0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3900_{arg1=0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3901_{arg1=0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3902_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3903_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3904_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3905_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3906_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3907_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3908_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3909_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3910_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3911_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3912_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3913_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3914_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3915_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3916_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3917_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3918_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3919_{arg1=0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3920_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3921_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3922_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3923_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3924_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3925_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3926_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3927_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3928_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3929_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3930_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3931_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3932_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3933_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3934_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3935_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3936_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3937_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3938_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3939_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3940_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3941_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3942_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3943_{arg1=0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3944_{arg1=0, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3945_{arg1=0, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3946_{arg1=0, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3947_{arg1=0, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3948_{arg1=0, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3949_{arg1=0, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3950_{arg1=0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3951_{arg1=0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3952_{arg1=0, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3953_{arg1=0, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3954_{arg1=0, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3955_{arg1=0, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3956_{arg1=0, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3957_{arg1=0, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3958_{arg1=0, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3959_{arg1=0, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3960_{arg1=0, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3961_{arg1=0, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3962_{arg1=0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3963_{arg1=0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3964_{arg1=0, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3965_{arg1=0, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3966_{arg1=0, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3967_{arg1=0, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3968_{arg1=0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3969_{arg1=0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3970_{arg1=0, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3971_{arg1=0, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3972_{arg1=0, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3973_{arg1=0, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3974_{arg1=0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3975_{arg1=0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3976_{arg1=0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3977_{arg1=0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3978_{arg1=0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3979_{arg1=0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3980_{arg1=0, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3981_{arg1=0, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3982_{arg1=0, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3983_{arg1=0, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3984_{arg1=0, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3985_{arg1=0, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3986_{arg1=0, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3987_{arg1=0, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3988_{arg1=0, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3989_{arg1=0, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3990_{arg1=0, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3991_{arg1=0, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3992_{arg1=0.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3993_{arg1=0.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3994_{arg1=0.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3995_{arg1=0.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3996_{arg1=0.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3997_{arg1=0.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3998_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_3999_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4000_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4001_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4002_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4003_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4004_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4005_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4006_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4007_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4008_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4009_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4010_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4011_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4012_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4013_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4014_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4015_{arg1=0.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4016_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4017_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4018_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4019_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4020_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4021_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4022_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4023_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4024_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4025_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4026_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4027_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4028_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4029_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4030_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4031_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4032_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4033_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4034_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4035_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4036_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4037_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4038_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4039_{arg1=0.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4040_{arg1=0.0, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4041_{arg1=0.0, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4042_{arg1=0.0, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4043_{arg1=0.0, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4044_{arg1=0.0, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4045_{arg1=0.0, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4046_{arg1=0.0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4047_{arg1=0.0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4048_{arg1=0.0, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4049_{arg1=0.0, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4050_{arg1=0.0, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4051_{arg1=0.0, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4052_{arg1=0.0, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4053_{arg1=0.0, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4054_{arg1=0.0, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4055_{arg1=0.0, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4056_{arg1=0.0, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4057_{arg1=0.0, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4058_{arg1=0.0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4059_{arg1=0.0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4060_{arg1=0.0, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4061_{arg1=0.0, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4062_{arg1=0.0, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4063_{arg1=0.0, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4064_{arg1=0.0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4065_{arg1=0.0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4066_{arg1=0.0, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4067_{arg1=0.0, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4068_{arg1=0.0, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4069_{arg1=0.0, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4070_{arg1=0.0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4071_{arg1=0.0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4072_{arg1=0.0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4073_{arg1=0.0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4074_{arg1=0.0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4075_{arg1=0.0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4076_{arg1=0.0, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4077_{arg1=0.0, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4078_{arg1=0.0, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4079_{arg1=0.0, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4080_{arg1=0.0, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4081_{arg1=0.0, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4082_{arg1=0.0, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4083_{arg1=0.0, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4084_{arg1=0.0, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4085_{arg1=0.0, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4086_{arg1=0.0, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4087_{arg1=0.0, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4088_{arg1=2, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4089_{arg1=2, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4090_{arg1=2, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4091_{arg1=2, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4092_{arg1=2, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4093_{arg1=2, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4094_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4095_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4096_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4097_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4098_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4099_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4100_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4101_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4102_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4103_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4104_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4105_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4106_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4107_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4108_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4109_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4110_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4111_{arg1=2, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4112_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4113_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4114_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4115_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4116_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4117_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4118_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4119_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4120_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4121_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4122_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4123_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4124_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4125_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4126_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4127_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4128_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4129_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4130_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4131_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4132_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4133_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4134_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4135_{arg1=2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4136_{arg1=2, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4137_{arg1=2, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4138_{arg1=2, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4139_{arg1=2, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4140_{arg1=2, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4141_{arg1=2, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4142_{arg1=2, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4143_{arg1=2, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4144_{arg1=2, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4145_{arg1=2, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4146_{arg1=2, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4147_{arg1=2, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4148_{arg1=2, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4149_{arg1=2, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4150_{arg1=2, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4151_{arg1=2, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4152_{arg1=2, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4153_{arg1=2, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4154_{arg1=2, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4155_{arg1=2, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4156_{arg1=2, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4157_{arg1=2, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4158_{arg1=2, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4159_{arg1=2, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4160_{arg1=2, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4161_{arg1=2, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4162_{arg1=2, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4163_{arg1=2, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4164_{arg1=2, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4165_{arg1=2, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4166_{arg1=2, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4167_{arg1=2, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4168_{arg1=2, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4169_{arg1=2, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4170_{arg1=2, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4171_{arg1=2, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4172_{arg1=2, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4173_{arg1=2, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4174_{arg1=2, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4175_{arg1=2, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4176_{arg1=2, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4177_{arg1=2, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4178_{arg1=2, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4179_{arg1=2, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4180_{arg1=2, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4181_{arg1=2, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4182_{arg1=2, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4183_{arg1=2, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4184_{arg1=2.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4185_{arg1=2.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4186_{arg1=2.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4187_{arg1=2.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4188_{arg1=2.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4189_{arg1=2.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4190_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4191_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4192_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4193_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4194_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4195_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4196_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4197_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4198_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4199_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4200_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4201_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4202_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4203_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4204_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4205_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4206_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4207_{arg1=2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4208_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4209_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4210_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4211_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4212_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4213_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4214_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4215_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4216_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4217_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4218_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4219_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4220_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4221_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4222_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4223_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4224_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4225_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4226_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4227_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4228_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4229_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4230_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4231_{arg1=2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4232_{arg1=2.0, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4233_{arg1=2.0, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4234_{arg1=2.0, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4235_{arg1=2.0, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4236_{arg1=2.0, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4237_{arg1=2.0, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4238_{arg1=2.0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4239_{arg1=2.0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4240_{arg1=2.0, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4241_{arg1=2.0, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4242_{arg1=2.0, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4243_{arg1=2.0, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4244_{arg1=2.0, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4245_{arg1=2.0, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4246_{arg1=2.0, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4247_{arg1=2.0, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4248_{arg1=2.0, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4249_{arg1=2.0, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4250_{arg1=2.0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4251_{arg1=2.0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4252_{arg1=2.0, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4253_{arg1=2.0, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4254_{arg1=2.0, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4255_{arg1=2.0, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4256_{arg1=2.0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4257_{arg1=2.0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4258_{arg1=2.0, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4259_{arg1=2.0, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4260_{arg1=2.0, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4261_{arg1=2.0, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4262_{arg1=2.0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4263_{arg1=2.0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4264_{arg1=2.0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4265_{arg1=2.0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4266_{arg1=2.0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4267_{arg1=2.0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4268_{arg1=2.0, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4269_{arg1=2.0, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4270_{arg1=2.0, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4271_{arg1=2.0, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4272_{arg1=2.0, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4273_{arg1=2.0, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4274_{arg1=2.0, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4275_{arg1=2.0, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4276_{arg1=2.0, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4277_{arg1=2.0, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4278_{arg1=2.0, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4279_{arg1=2.0, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4280_{arg1=-2, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4281_{arg1=-2, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4282_{arg1=-2, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4283_{arg1=-2, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4284_{arg1=-2, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4285_{arg1=-2, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4286_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4287_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4288_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4289_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4290_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4291_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4292_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4293_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4294_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4295_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4296_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4297_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4298_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4299_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4300_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4301_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4302_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4303_{arg1=-2, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4304_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4305_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4306_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4307_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4308_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4309_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4310_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4311_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4312_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4313_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4314_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4315_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4316_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4317_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4318_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4319_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4320_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4321_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4322_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4323_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4324_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4325_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4326_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4327_{arg1=-2, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4328_{arg1=-2, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4329_{arg1=-2, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4330_{arg1=-2, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4331_{arg1=-2, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4332_{arg1=-2, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4333_{arg1=-2, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4334_{arg1=-2, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4335_{arg1=-2, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4336_{arg1=-2, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4337_{arg1=-2, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4338_{arg1=-2, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4339_{arg1=-2, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4340_{arg1=-2, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4341_{arg1=-2, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4342_{arg1=-2, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4343_{arg1=-2, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4344_{arg1=-2, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4345_{arg1=-2, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4346_{arg1=-2, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4347_{arg1=-2, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4348_{arg1=-2, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4349_{arg1=-2, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4350_{arg1=-2, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4351_{arg1=-2, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4352_{arg1=-2, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4353_{arg1=-2, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4354_{arg1=-2, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4355_{arg1=-2, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4356_{arg1=-2, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4357_{arg1=-2, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4358_{arg1=-2, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4359_{arg1=-2, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4360_{arg1=-2, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4361_{arg1=-2, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4362_{arg1=-2, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4363_{arg1=-2, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4364_{arg1=-2, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4365_{arg1=-2, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4366_{arg1=-2, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4367_{arg1=-2, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4368_{arg1=-2, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4369_{arg1=-2, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4370_{arg1=-2, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4371_{arg1=-2, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4372_{arg1=-2, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4373_{arg1=-2, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4374_{arg1=-2, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4375_{arg1=-2, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4376_{arg1=-2.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4377_{arg1=-2.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4378_{arg1=-2.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4379_{arg1=-2.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4380_{arg1=-2.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4381_{arg1=-2.0, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4382_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4383_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4384_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4385_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4386_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4387_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4388_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4389_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4390_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4391_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4392_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4393_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4394_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4395_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4396_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4397_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4398_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4399_{arg1=-2.0, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4400_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4401_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4402_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4403_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4404_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4405_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4406_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4407_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4408_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4409_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4410_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4411_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4412_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4413_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4414_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4415_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4416_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4417_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4418_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4419_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4420_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4421_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4422_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4423_{arg1=-2.0, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4424_{arg1=-2.0, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4425_{arg1=-2.0, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4426_{arg1=-2.0, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4427_{arg1=-2.0, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4428_{arg1=-2.0, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4429_{arg1=-2.0, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4430_{arg1=-2.0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4431_{arg1=-2.0, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4432_{arg1=-2.0, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4433_{arg1=-2.0, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4434_{arg1=-2.0, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4435_{arg1=-2.0, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4436_{arg1=-2.0, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4437_{arg1=-2.0, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4438_{arg1=-2.0, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4439_{arg1=-2.0, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4440_{arg1=-2.0, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4441_{arg1=-2.0, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4442_{arg1=-2.0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4443_{arg1=-2.0, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4444_{arg1=-2.0, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4445_{arg1=-2.0, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4446_{arg1=-2.0, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4447_{arg1=-2.0, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4448_{arg1=-2.0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4449_{arg1=-2.0, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4450_{arg1=-2.0, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4451_{arg1=-2.0, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4452_{arg1=-2.0, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4453_{arg1=-2.0, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4454_{arg1=-2.0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4455_{arg1=-2.0, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4456_{arg1=-2.0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4457_{arg1=-2.0, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4458_{arg1=-2.0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4459_{arg1=-2.0, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4460_{arg1=-2.0, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4461_{arg1=-2.0, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4462_{arg1=-2.0, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4463_{arg1=-2.0, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4464_{arg1=-2.0, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4465_{arg1=-2.0, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4466_{arg1=-2.0, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4467_{arg1=-2.0, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4468_{arg1=-2.0, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4469_{arg1=-2.0, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4470_{arg1=-2.0, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4471_{arg1=-2.0, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4472_{arg1=True, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4473_{arg1=True, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4474_{arg1=True, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4475_{arg1=True, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4476_{arg1=True, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4477_{arg1=True, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4478_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4479_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4480_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4481_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4482_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4483_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4484_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4485_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4486_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4487_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4488_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4489_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4490_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4491_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4492_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4493_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4494_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4495_{arg1=True, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4496_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4497_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4498_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4499_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4500_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4501_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4502_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4503_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4504_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4505_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4506_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4507_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4508_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4509_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4510_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4511_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4512_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4513_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4514_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4515_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4516_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4517_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4518_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4519_{arg1=True, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4520_{arg1=True, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4521_{arg1=True, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4522_{arg1=True, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4523_{arg1=True, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4524_{arg1=True, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4525_{arg1=True, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4526_{arg1=True, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4527_{arg1=True, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4528_{arg1=True, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4529_{arg1=True, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4530_{arg1=True, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4531_{arg1=True, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4532_{arg1=True, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4533_{arg1=True, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4534_{arg1=True, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4535_{arg1=True, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4536_{arg1=True, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4537_{arg1=True, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4538_{arg1=True, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4539_{arg1=True, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4540_{arg1=True, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4541_{arg1=True, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4542_{arg1=True, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4543_{arg1=True, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4544_{arg1=True, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4545_{arg1=True, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4546_{arg1=True, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4547_{arg1=True, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4548_{arg1=True, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4549_{arg1=True, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4550_{arg1=True, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4551_{arg1=True, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4552_{arg1=True, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4553_{arg1=True, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4554_{arg1=True, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4555_{arg1=True, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4556_{arg1=True, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4557_{arg1=True, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4558_{arg1=True, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4559_{arg1=True, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4560_{arg1=True, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4561_{arg1=True, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4562_{arg1=True, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4563_{arg1=True, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4564_{arg1=True, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4565_{arg1=True, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4566_{arg1=True, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4567_{arg1=True, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4568_{arg1=False, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4569_{arg1=False, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4570_{arg1=False, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4571_{arg1=False, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4572_{arg1=False, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4573_{arg1=False, arg2=array([ True, True, True, True, True, True]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4574_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4575_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4576_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4577_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4578_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4579_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4580_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4581_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4582_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4583_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4584_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4585_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.], dtype=float32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4586_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4587_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4588_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4589_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4590_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4591_{arg1=False, arg2=array([-3., -2., -1., 1., 2., 3.]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4592_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4593_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4594_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4595_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4596_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4597_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int8), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4598_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4599_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4600_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4601_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4602_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4603_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int16), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4604_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4605_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4606_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4607_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4608_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4609_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3], dtype=int32), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4610_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4611_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4612_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4613_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4614_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4615_{arg1=False, arg2=array([-3, -2, -1, 1, 2, 3]), dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4616_{arg1=False, arg2=0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4617_{arg1=False, arg2=0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4618_{arg1=False, arg2=0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4619_{arg1=False, arg2=0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4620_{arg1=False, arg2=0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4621_{arg1=False, arg2=0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4622_{arg1=False, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4623_{arg1=False, arg2=0.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4624_{arg1=False, arg2=0.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4625_{arg1=False, arg2=0.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4626_{arg1=False, arg2=0.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4627_{arg1=False, arg2=0.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4628_{arg1=False, arg2=2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4629_{arg1=False, arg2=2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4630_{arg1=False, arg2=2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4631_{arg1=False, arg2=2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4632_{arg1=False, arg2=2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4633_{arg1=False, arg2=2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4634_{arg1=False, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4635_{arg1=False, arg2=2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4636_{arg1=False, arg2=2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4637_{arg1=False, arg2=2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4638_{arg1=False, arg2=2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4639_{arg1=False, arg2=2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4640_{arg1=False, arg2=-2, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4641_{arg1=False, arg2=-2, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4642_{arg1=False, arg2=-2, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4643_{arg1=False, arg2=-2, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4644_{arg1=False, arg2=-2, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4645_{arg1=False, arg2=-2, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4646_{arg1=False, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4647_{arg1=False, arg2=-2.0, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4648_{arg1=False, arg2=-2.0, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4649_{arg1=False, arg2=-2.0, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4650_{arg1=False, arg2=-2.0, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4651_{arg1=False, arg2=-2.0, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4652_{arg1=False, arg2=True, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4653_{arg1=False, arg2=True, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4654_{arg1=False, arg2=True, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4655_{arg1=False, arg2=True, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4656_{arg1=False, arg2=True, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4657_{arg1=False, arg2=True, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4658_{arg1=False, arg2=False, dtype=float64, name='floor_divide', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4659_{arg1=False, arg2=False, dtype=float64, name='floor_divide', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4660_{arg1=False, arg2=False, dtype=float64, name='fmod', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4661_{arg1=False, arg2=False, dtype=float64, name='fmod', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4662_{arg1=False, arg2=False, dtype=float64, name='remainder', use_dtype=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticBinary2::test_binary[_param_4663_{arg1=False, arg2=False, dtype=float64, name='remainder', use_dtype=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_out[safe] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_out[same_kind] | 2.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_out[unsafe] | 7.41 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestUfunc::test_casting_dtype_unsafe_ignore_warnings | 9.41 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestArithmeticModf::test_modf | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestBoolSubtract::test_bool_subtract[_param_0_{shape=(3, 2), xp=numpy}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestBoolSubtract::test_bool_subtract[_param_1_{shape=(3, 2), xp=cupy}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestBoolSubtract::test_bool_subtract[_param_2_{shape=(), xp=numpy}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestBoolSubtract::test_bool_subtract[_param_3_{shape=(), xp=cupy}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestBoolSubtract::test_bool_subtract[_param_4_{shape=(3, 0, 2), xp=numpy}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_arithmetic.py::TestBoolSubtract::test_bool_subtract[_param_5_{shape=(3, 0, 2), xp=cupy}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_explog.py::TestExplog::test_exp | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_explog.py::TestExplog::test_exp2 | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_explog.py::TestExplog::test_expm1 | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_explog.py::TestExplog::test_log | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_explog.py::TestExplog::test_log10 | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_explog.py::TestExplog::test_log1p | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_explog.py::TestExplog::test_log2 | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_explog.py::TestExplog::test_logaddexp | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_explog.py::TestExplog::test_logaddexp2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_floating.py::TestFloating::test_copysign_combination | 6.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_floating.py::TestFloating::test_copysign_float | 2.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_floating.py::TestFloating::test_frexp | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_floating.py::TestFloating::test_ldexp | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_floating.py::TestFloating::test_nextafter_combination | 8.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_floating.py::TestFloating::test_nextafter_float | 2.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_floating.py::TestFloating::test_signbit | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_hyperbolic.py::TestHyperbolic::test_arccosh | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_hyperbolic.py::TestHyperbolic::test_arcsinh | 5.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_hyperbolic.py::TestHyperbolic::test_arctanh | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_hyperbolic.py::TestHyperbolic::test_cosh | 5.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_hyperbolic.py::TestHyperbolic::test_sinh | 5.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_hyperbolic.py::TestHyperbolic::test_tanh | 5.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_0_{shape_pair=((3, 2), (2, 4))}::test_cupy_matmul | 20.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_0_{shape_pair=((3, 2), (2, 4))}::test_operator_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_1_{shape_pair=((3, 0), (0, 4))}::test_cupy_matmul | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_1_{shape_pair=((3, 0), (0, 4))}::test_operator_matmul | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_2_{shape_pair=((0, 2), (2, 4))}::test_cupy_matmul | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_2_{shape_pair=((0, 2), (2, 4))}::test_operator_matmul | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_3_{shape_pair=((3, 2), (2, 0))}::test_cupy_matmul | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_3_{shape_pair=((3, 2), (2, 0))}::test_operator_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_4_{shape_pair=((2,), (2, 4))}::test_cupy_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_4_{shape_pair=((2,), (2, 4))}::test_operator_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_5_{shape_pair=((0,), (0, 4))}::test_cupy_matmul | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_5_{shape_pair=((0,), (0, 4))}::test_operator_matmul | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_6_{shape_pair=((3, 2), (2,))}::test_cupy_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_6_{shape_pair=((3, 2), (2,))}::test_operator_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_7_{shape_pair=((3, 0), (0,))}::test_cupy_matmul | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_7_{shape_pair=((3, 0), (0,))}::test_operator_matmul | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_8_{shape_pair=((2,), (2,))}::test_cupy_matmul | 111.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_8_{shape_pair=((2,), (2,))}::test_operator_matmul | 0.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_9_{shape_pair=((0,), (0,))}::test_cupy_matmul | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_9_{shape_pair=((0,), (0,))}::test_operator_matmul | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_10_{shape_pair=((5, 3, 2), (5, 2, 4))}::test_cupy_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_10_{shape_pair=((5, 3, 2), (5, 2, 4))}::test_operator_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_11_{shape_pair=((0, 3, 2), (0, 2, 4))}::test_cupy_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_11_{shape_pair=((0, 3, 2), (0, 2, 4))}::test_operator_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_12_{shape_pair=((5, 3, 2), (2, 4))}::test_cupy_matmul | 13.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_12_{shape_pair=((5, 3, 2), (2, 4))}::test_operator_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_13_{shape_pair=((0, 3, 2), (2, 4))}::test_cupy_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_13_{shape_pair=((0, 3, 2), (2, 4))}::test_operator_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_14_{shape_pair=((3, 2), (5, 2, 4))}::test_cupy_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_14_{shape_pair=((3, 2), (5, 2, 4))}::test_operator_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_15_{shape_pair=((3, 2), (0, 2, 4))}::test_cupy_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_15_{shape_pair=((3, 2), (0, 2, 4))}::test_operator_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_16_{shape_pair=((5, 3, 2), (1, 2, 4))}::test_cupy_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_16_{shape_pair=((5, 3, 2), (1, 2, 4))}::test_operator_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_17_{shape_pair=((0, 3, 2), (1, 2, 4))}::test_cupy_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_17_{shape_pair=((0, 3, 2), (1, 2, 4))}::test_operator_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_18_{shape_pair=((1, 3, 2), (5, 2, 4))}::test_cupy_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_18_{shape_pair=((1, 3, 2), (5, 2, 4))}::test_operator_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_19_{shape_pair=((1, 3, 2), (0, 2, 4))}::test_cupy_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_19_{shape_pair=((1, 3, 2), (0, 2, 4))}::test_operator_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_20_{shape_pair=((5, 3, 2), (2,))}::test_cupy_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_20_{shape_pair=((5, 3, 2), (2,))}::test_operator_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_21_{shape_pair=((5, 3, 0), (0,))}::test_cupy_matmul | 0.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_21_{shape_pair=((5, 3, 0), (0,))}::test_operator_matmul | 0.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_22_{shape_pair=((2,), (5, 2, 4))}::test_cupy_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_22_{shape_pair=((2,), (5, 2, 4))}::test_operator_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_23_{shape_pair=((0,), (5, 0, 4))}::test_cupy_matmul | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_23_{shape_pair=((0,), (5, 0, 4))}::test_operator_matmul | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_24_{shape_pair=((2, 2, 3, 2), (2, 2, 2, 4))}::test_cupy_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_24_{shape_pair=((2, 2, 3, 2), (2, 2, 2, 4))}::test_operator_matmul | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_25_{shape_pair=((5, 0, 3, 2), (5, 0, 2, 4))}::test_cupy_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_25_{shape_pair=((5, 0, 3, 2), (5, 0, 2, 4))}::test_operator_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_26_{shape_pair=((6, 5, 3, 2), (2, 4))}::test_cupy_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_26_{shape_pair=((6, 5, 3, 2), (2, 4))}::test_operator_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_27_{shape_pair=((5, 0, 3, 2), (2, 4))}::test_cupy_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_27_{shape_pair=((5, 0, 3, 2), (2, 4))}::test_operator_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_28_{shape_pair=((3, 2), (6, 5, 2, 4))}::test_cupy_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_28_{shape_pair=((3, 2), (6, 5, 2, 4))}::test_operator_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_29_{shape_pair=((3, 2), (5, 0, 2, 4))}::test_cupy_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_29_{shape_pair=((3, 2), (5, 0, 2, 4))}::test_operator_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_30_{shape_pair=((1, 5, 3, 2), (6, 1, 2, 4))}::test_cupy_matmul | 21.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_30_{shape_pair=((1, 5, 3, 2), (6, 1, 2, 4))}::test_operator_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_31_{shape_pair=((1, 0, 3, 2), (6, 1, 2, 4))}::test_cupy_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_31_{shape_pair=((1, 0, 3, 2), (6, 1, 2, 4))}::test_operator_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_32_{shape_pair=((6, 1, 3, 2), (1, 5, 2, 4))}::test_cupy_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_32_{shape_pair=((6, 1, 3, 2), (1, 5, 2, 4))}::test_operator_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_33_{shape_pair=((6, 1, 3, 2), (1, 0, 2, 4))}::test_cupy_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_33_{shape_pair=((6, 1, 3, 2), (1, 0, 2, 4))}::test_operator_matmul | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_34_{shape_pair=((6, 5, 3, 2), (2,))}::test_cupy_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_34_{shape_pair=((6, 5, 3, 2), (2,))}::test_operator_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_35_{shape_pair=((6, 5, 3, 0), (0,))}::test_cupy_matmul | 0.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_35_{shape_pair=((6, 5, 3, 0), (0,))}::test_operator_matmul | 0.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_36_{shape_pair=((2,), (6, 5, 2, 4))}::test_cupy_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_36_{shape_pair=((2,), (6, 5, 2, 4))}::test_operator_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_37_{shape_pair=((0,), (6, 5, 0, 4))}::test_cupy_matmul | 0.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_37_{shape_pair=((0,), (6, 5, 0, 4))}::test_operator_matmul | 0.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_38_{shape_pair=((1, 3, 3), (10, 1, 3, 1))}::test_cupy_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmul_param_38_{shape_pair=((1, 3, 3), (10, 1, 3, 1))}::test_operator_matmul | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_0_{shape_pair=((6, 5, 3, 2), (6, 5, 2, 4))}::test_cupy_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_0_{shape_pair=((6, 5, 3, 2), (6, 5, 2, 4))}::test_operator_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_1_{shape_pair=((6, 5, 3, 2), (6, 1, 2, 4))}::test_cupy_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_1_{shape_pair=((6, 5, 3, 2), (6, 1, 2, 4))}::test_operator_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_2_{shape_pair=((6, 5, 3, 2), (1, 5, 2, 4))}::test_cupy_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_2_{shape_pair=((6, 5, 3, 2), (1, 5, 2, 4))}::test_operator_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_3_{shape_pair=((6, 5, 3, 2), (1, 1, 2, 4))}::test_cupy_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_3_{shape_pair=((6, 5, 3, 2), (1, 1, 2, 4))}::test_operator_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_4_{shape_pair=((6, 1, 3, 2), (6, 5, 2, 4))}::test_cupy_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_4_{shape_pair=((6, 1, 3, 2), (6, 5, 2, 4))}::test_operator_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_5_{shape_pair=((1, 5, 3, 2), (6, 5, 2, 4))}::test_cupy_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_5_{shape_pair=((1, 5, 3, 2), (6, 5, 2, 4))}::test_operator_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_6_{shape_pair=((1, 1, 3, 2), (6, 5, 2, 4))}::test_cupy_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_6_{shape_pair=((1, 1, 3, 2), (6, 5, 2, 4))}::test_operator_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_7_{shape_pair=((3, 2), (6, 5, 2, 4))}::test_cupy_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_7_{shape_pair=((3, 2), (6, 5, 2, 4))}::test_operator_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_8_{shape_pair=((6, 5, 3, 2), (2, 4))}::test_cupy_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_8_{shape_pair=((6, 5, 3, 2), (2, 4))}::test_operator_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_9_{shape_pair=((2,), (6, 5, 2, 4))}::test_cupy_matmul | 0.11 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_9_{shape_pair=((2,), (6, 5, 2, 4))}::test_operator_matmul | 0.12 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_10_{shape_pair=((6, 5, 3, 2), (2,))}::test_cupy_matmul | 0.11 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulLarge_param_10_{shape_pair=((6, 5, 3, 2), (2,))}::test_operator_matmul | 0.11 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.float16'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.int8'> () skipped: dtype2 = <class 'numpy.int16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () skipped: dtype2 = <class 'numpy.uint8'> () skipped: dtype2 = <class 'numpy.uint16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp16ComputeTypes_param_0_{compute_type=1, shape_pair=((32, 64), (64, 96))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp16ComputeTypes_param_0_{compute_type=1, shape_pair=((32, 64), (64, 96))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp16ComputeTypes_param_1_{compute_type=1, shape_pair=((64, 96), (96, 32))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp16ComputeTypes_param_1_{compute_type=1, shape_pair=((64, 96), (96, 32))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp16ComputeTypes_param_2_{compute_type=1, shape_pair=((96, 32), (32, 64))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp16ComputeTypes_param_2_{compute_type=1, shape_pair=((96, 32), (32, 64))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp16ComputeTypes_param_3_{compute_type=2, shape_pair=((32, 64), (64, 96))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp16ComputeTypes_param_3_{compute_type=2, shape_pair=((32, 64), (64, 96))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp16ComputeTypes_param_4_{compute_type=2, shape_pair=((64, 96), (96, 32))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp16ComputeTypes_param_4_{compute_type=2, shape_pair=((64, 96), (96, 32))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp16ComputeTypes_param_5_{compute_type=2, shape_pair=((96, 32), (32, 64))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp16ComputeTypes_param_5_{compute_type=2, shape_pair=((96, 32), (32, 64))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_0_{compute_type=1, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_0_{compute_type=1, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_1_{compute_type=1, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_1_{compute_type=1, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_2_{compute_type=1, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_2_{compute_type=1, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_3_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_3_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_4_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_4_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_5_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_5_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_6_{compute_type=1, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_6_{compute_type=1, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_7_{compute_type=1, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_7_{compute_type=1, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_8_{compute_type=1, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_8_{compute_type=1, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_9_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_9_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_10_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_10_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_11_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_11_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_12_{compute_type=1, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_12_{compute_type=1, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_13_{compute_type=1, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_13_{compute_type=1, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_14_{compute_type=1, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_14_{compute_type=1, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_15_{compute_type=2, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_15_{compute_type=2, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_16_{compute_type=2, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_16_{compute_type=2, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_17_{compute_type=2, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_17_{compute_type=2, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_18_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_18_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_19_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_19_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_20_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_20_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_21_{compute_type=2, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_21_{compute_type=2, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_22_{compute_type=2, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_22_{compute_type=2, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_23_{compute_type=2, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_23_{compute_type=2, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_24_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_24_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_25_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_25_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_26_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_26_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_27_{compute_type=2, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_27_{compute_type=2, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_28_{compute_type=2, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_28_{compute_type=2, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_29_{compute_type=2, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_29_{compute_type=2, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_30_{compute_type=7, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_30_{compute_type=7, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_31_{compute_type=7, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_31_{compute_type=7, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_32_{compute_type=7, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_32_{compute_type=7, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.float32'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_33_{compute_type=7, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_33_{compute_type=7, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_34_{compute_type=7, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_34_{compute_type=7, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_35_{compute_type=7, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_35_{compute_type=7, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float32'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_36_{compute_type=7, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_36_{compute_type=7, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_37_{compute_type=7, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_37_{compute_type=7, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_38_{compute_type=7, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_38_{compute_type=7, dtype_pair=(<class 'numpy.float16'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_39_{compute_type=7, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_39_{compute_type=7, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_40_{compute_type=7, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_40_{compute_type=7, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_41_{compute_type=7, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_41_{compute_type=7, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_42_{compute_type=7, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_42_{compute_type=7, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_43_{compute_type=7, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_43_{compute_type=7, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_44_{compute_type=7, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp32ComputeTypes_param_44_{compute_type=7, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_0_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_0_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_1_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_1_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_2_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_2_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_3_{compute_type=1, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.float64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_3_{compute_type=1, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.float64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_4_{compute_type=1, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.float64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_4_{compute_type=1, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.float64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_5_{compute_type=1, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.float64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_5_{compute_type=1, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.float64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_6_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_6_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_7_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_7_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_8_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_8_{compute_type=1, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_9_{compute_type=1, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_9_{compute_type=1, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_10_{compute_type=1, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_10_{compute_type=1, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_11_{compute_type=1, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_11_{compute_type=1, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_12_{compute_type=1, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_12_{compute_type=1, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_13_{compute_type=1, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_13_{compute_type=1, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_14_{compute_type=1, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_14_{compute_type=1, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_15_{compute_type=1, dtype_pair=(<class 'numpy.complex128'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_15_{compute_type=1, dtype_pair=(<class 'numpy.complex128'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_16_{compute_type=1, dtype_pair=(<class 'numpy.complex128'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_16_{compute_type=1, dtype_pair=(<class 'numpy.complex128'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_17_{compute_type=1, dtype_pair=(<class 'numpy.complex128'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_17_{compute_type=1, dtype_pair=(<class 'numpy.complex128'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_18_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_18_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_19_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_19_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_20_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_20_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.float64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_21_{compute_type=2, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.float64'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_21_{compute_type=2, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.float64'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_22_{compute_type=2, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.float64'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_22_{compute_type=2, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.float64'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_23_{compute_type=2, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.float64'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_23_{compute_type=2, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.float64'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_24_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_24_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_25_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_25_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_26_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_26_{compute_type=2, dtype_pair=(<class 'numpy.float32'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_27_{compute_type=2, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_27_{compute_type=2, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_28_{compute_type=2, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_28_{compute_type=2, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_29_{compute_type=2, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_29_{compute_type=2, dtype_pair=(<class 'numpy.float64'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_30_{compute_type=2, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_30_{compute_type=2, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_31_{compute_type=2, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_31_{compute_type=2, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_32_{compute_type=2, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_32_{compute_type=2, dtype_pair=(<class 'numpy.complex64'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_33_{compute_type=2, dtype_pair=(<class 'numpy.complex128'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_33_{compute_type=2, dtype_pair=(<class 'numpy.complex128'>, <class 'numpy.complex128'>), shape_pair=((100, 200), (200, 300))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_34_{compute_type=2, dtype_pair=(<class 'numpy.complex128'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_34_{compute_type=2, dtype_pair=(<class 'numpy.complex128'>, <class 'numpy.complex128'>), shape_pair=((200, 300), (300, 100))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_35_{compute_type=2, dtype_pair=(<class 'numpy.complex128'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_cupy_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulFp64ComputeTypes_param_35_{compute_type=2, dtype_pair=(<class 'numpy.complex128'>, <class 'numpy.complex128'>), shape_pair=((300, 100), (100, 200))}::test_operator_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulInvalidShape_param_0_{shape_pair=((5, 3, 1), (3, 1, 4))}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulInvalidShape_param_1_{shape_pair=((3, 2, 3), (3, 2, 4))}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulInvalidShape_param_2_{shape_pair=((3, 2), ())}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulInvalidShape_param_3_{shape_pair=((), (3, 2))}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulInvalidShape_param_4_{shape_pair=((), ())}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulInvalidShape_param_5_{shape_pair=((3, 2), (1,))}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulInvalidShape_param_6_{shape_pair=((0, 2), (3, 0))}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulInvalidShape_param_7_{shape_pair=((0, 1, 1), (2, 1, 1))}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulAxes_param_0_{shapes_axes=(((2, 5, 3, 2, 3, 4), (3, 5, 1, 1, 1, 4), (5, 5, 2, 2, 3, 4)), [(1, 2), (0, 1), (0, 1)])}::test_cupy_matmul_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulAxes_param_0_{shapes_axes=(((2, 5, 3, 2, 3, 4), (3, 5, 1, 1, 1, 4), (5, 5, 2, 2, 3, 4)), [(1, 2), (0, 1), (0, 1)])}::test_cupy_matmul_axes_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulAxes_param_1_{shapes_axes=(((2, 5, 3, 2, 3, 4), (2, 5, 3, 1, 4, 1), (3, 1, 2, 5, 3, 2)), [(-2, -1), (-2, -1), (0, 1)])}::test_cupy_matmul_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulAxes_param_1_{shapes_axes=(((2, 5, 3, 2, 3, 4), (2, 5, 3, 1, 4, 1), (3, 1, 2, 5, 3, 2)), [(-2, -1), (-2, -1), (0, 1)])}::test_cupy_matmul_axes_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulAxes_param_2_{shapes_axes=(((3, 2, 4, 4), (4, 4, 3, 2), (4, 4, 3, 3)), [(0, 1), (-1, -2), (-2, -1)])}::test_cupy_matmul_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulAxes_param_2_{shapes_axes=(((3, 2, 4, 4), (4, 4, 3, 2), (4, 4, 3, 3)), [(0, 1), (-1, -2), (-2, -1)])}::test_cupy_matmul_axes_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulAxes_param_3_{shapes_axes=(((3, 2, 4, 4), (2, 3, 4, 4), (4, 3, 3, 4)), [(0, 1), (0, 1), (1, 2)])}::test_cupy_matmul_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulAxes_param_3_{shapes_axes=(((3, 2, 4, 4), (2, 3, 4, 4), (4, 3, 3, 4)), [(0, 1), (0, 1), (1, 2)])}::test_cupy_matmul_axes_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulStrides::test_relaxed_c_contiguous_input | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulOverflow::test_overflow | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_matmul.py::TestMatmulDispatch::test_matmul_dispatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_0_{mode='valid', shape1=(), shape2=()}::test_convolve | 6.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_1_{mode='valid', shape1=(), shape2=(5,)}::test_convolve | 6.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_2_{mode='valid', shape1=(), shape2=(6,)}::test_convolve | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_3_{mode='valid', shape1=(), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_4_{mode='valid', shape1=(), shape2=(21,)}::test_convolve | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_5_{mode='valid', shape1=(5,), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_6_{mode='valid', shape1=(5,), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_7_{mode='valid', shape1=(5,), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_8_{mode='valid', shape1=(5,), shape2=(20,)}::test_convolve | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_9_{mode='valid', shape1=(5,), shape2=(21,)}::test_convolve | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_10_{mode='valid', shape1=(6,), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_11_{mode='valid', shape1=(6,), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_12_{mode='valid', shape1=(6,), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_13_{mode='valid', shape1=(6,), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_14_{mode='valid', shape1=(6,), shape2=(21,)}::test_convolve | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_15_{mode='valid', shape1=(20,), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_16_{mode='valid', shape1=(20,), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_17_{mode='valid', shape1=(20,), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_18_{mode='valid', shape1=(20,), shape2=(20,)}::test_convolve | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_19_{mode='valid', shape1=(20,), shape2=(21,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_20_{mode='valid', shape1=(21,), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_21_{mode='valid', shape1=(21,), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_22_{mode='valid', shape1=(21,), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_23_{mode='valid', shape1=(21,), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_24_{mode='valid', shape1=(21,), shape2=(21,)}::test_convolve | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_25_{mode='same', shape1=(), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_26_{mode='same', shape1=(), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_27_{mode='same', shape1=(), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_28_{mode='same', shape1=(), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_29_{mode='same', shape1=(), shape2=(21,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_30_{mode='same', shape1=(5,), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_31_{mode='same', shape1=(5,), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_32_{mode='same', shape1=(5,), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_33_{mode='same', shape1=(5,), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_34_{mode='same', shape1=(5,), shape2=(21,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_35_{mode='same', shape1=(6,), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_36_{mode='same', shape1=(6,), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_37_{mode='same', shape1=(6,), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_38_{mode='same', shape1=(6,), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_39_{mode='same', shape1=(6,), shape2=(21,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_40_{mode='same', shape1=(20,), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_41_{mode='same', shape1=(20,), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_42_{mode='same', shape1=(20,), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_43_{mode='same', shape1=(20,), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_44_{mode='same', shape1=(20,), shape2=(21,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_45_{mode='same', shape1=(21,), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_46_{mode='same', shape1=(21,), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_47_{mode='same', shape1=(21,), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_48_{mode='same', shape1=(21,), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_49_{mode='same', shape1=(21,), shape2=(21,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_50_{mode='full', shape1=(), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_51_{mode='full', shape1=(), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_52_{mode='full', shape1=(), shape2=(6,)}::test_convolve | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_53_{mode='full', shape1=(), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_54_{mode='full', shape1=(), shape2=(21,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_55_{mode='full', shape1=(5,), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_56_{mode='full', shape1=(5,), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_57_{mode='full', shape1=(5,), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_58_{mode='full', shape1=(5,), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_59_{mode='full', shape1=(5,), shape2=(21,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_60_{mode='full', shape1=(6,), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_61_{mode='full', shape1=(6,), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_62_{mode='full', shape1=(6,), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_63_{mode='full', shape1=(6,), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_64_{mode='full', shape1=(6,), shape2=(21,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_65_{mode='full', shape1=(20,), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_66_{mode='full', shape1=(20,), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_67_{mode='full', shape1=(20,), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_68_{mode='full', shape1=(20,), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_69_{mode='full', shape1=(20,), shape2=(21,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_70_{mode='full', shape1=(21,), shape2=()}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_71_{mode='full', shape1=(21,), shape2=(5,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_72_{mode='full', shape1=(21,), shape2=(6,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_73_{mode='full', shape1=(21,), shape2=(20,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveShapeCombination_param_74_{mode='full', shape1=(21,), shape2=(21,)}::test_convolve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolve_param_0_{mode='valid'}::test_convolve_large_non_contiguous | 0.19 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolve_param_0_{mode='valid'}::test_convolve_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolve_param_1_{mode='same'}::test_convolve_large_non_contiguous | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolve_param_1_{mode='same'}::test_convolve_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolve_param_2_{mode='full'}::test_convolve_large_non_contiguous | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolve_param_2_{mode='full'}::test_convolve_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveInvalid_param_0_{mode='valid'}::test_convolve_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveInvalid_param_0_{mode='valid'}::test_convolve_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveInvalid_param_1_{mode='same'}::test_convolve_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveInvalid_param_1_{mode='same'}::test_convolve_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveInvalid_param_2_{mode='full'}::test_convolve_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestConvolveInvalid_param_2_{mode='full'}::test_convolve_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_absolute | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_absolute_negative | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_cbrt | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_clip1 | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_clip2 | 8.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_clip3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_clip_max_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_clip_min_max_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_clip_min_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_external_clip1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_external_clip2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_fmax | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_fmax_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_fmin | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_fmin_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_interp | 96.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_interp_inf_fx | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_interp_inf_fy | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_interp_inf_to_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_interp_inf_x | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_interp_left_right | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_interp_nan_fx | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_interp_nan_fy | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_interp_nan_x | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_interp_period | 0.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_interp_size1 | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_maximum | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_maximum_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_minimum | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_minimum_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_nan_to_num | 9.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_nan_to_num_for_old_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_nan_to_num_inf | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_nan_to_num_inf_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_nan_to_num_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_nan_to_num_negative | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_nan_to_num_negative_for_old_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_sign | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_sign_negative | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_sqrt | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_misc.py::TestMisc::test_square | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rational.py::TestRational::test_gcd_check_boundary_cases | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rational.py::TestRational::test_gcd_dtype_check | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rational.py::TestRational::test_lcm_check_boundary_cases | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rational.py::TestRational::test_lcm_dtype_check | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRound_param_0_{decimals=-2}::test_round | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRound_param_0_{decimals=-2}::test_round_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRound_param_1_{decimals=-1}::test_round | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRound_param_1_{decimals=-1}::test_round_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRound_param_2_{decimals=0}::test_round | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRound_param_2_{decimals=0}::test_round_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRound_param_3_{decimals=1}::test_round | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRound_param_3_{decimals=1}::test_round_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRound_param_4_{decimals=2}::test_round | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRound_param_4_{decimals=2}::test_round_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_0_{decimals=-100}::test_round_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_0_{decimals=-100}::test_round_small | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_1_{decimals=-99}::test_round_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_1_{decimals=-99}::test_round_small | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_2_{decimals=-90}::test_round_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_2_{decimals=-90}::test_round_small | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_3_{decimals=0}::test_round_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_3_{decimals=0}::test_round_small | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_4_{decimals=90}::test_round_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_4_{decimals=90}::test_round_small | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_5_{decimals=99}::test_round_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_5_{decimals=99}::test_round_small | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_6_{decimals=100}::test_round_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundExtreme_param_6_{decimals=100}::test_round_small | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_0_{value=(14, -1)}::test_around_negative1 | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_0_{value=(14, -1)}::test_around_negative2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_0_{value=(14, -1)}::test_around_positive1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_0_{value=(14, -1)}::test_around_positive2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_1_{value=(15, -1)}::test_around_negative1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_1_{value=(15, -1)}::test_around_negative2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_1_{value=(15, -1)}::test_around_positive1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_1_{value=(15, -1)}::test_around_positive2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_2_{value=(16, -1)}::test_around_negative1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_2_{value=(16, -1)}::test_around_negative2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_2_{value=(16, -1)}::test_around_positive1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_2_{value=(16, -1)}::test_around_positive2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_3_{value=(14.0, -1)}::test_around_negative1 | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_3_{value=(14.0, -1)}::test_around_negative2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_3_{value=(14.0, -1)}::test_around_positive1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_3_{value=(14.0, -1)}::test_around_positive2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_4_{value=(15.0, -1)}::test_around_negative1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_4_{value=(15.0, -1)}::test_around_negative2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_4_{value=(15.0, -1)}::test_around_positive1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_4_{value=(15.0, -1)}::test_around_positive2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_5_{value=(16.0, -1)}::test_around_negative1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_5_{value=(16.0, -1)}::test_around_negative2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_5_{value=(16.0, -1)}::test_around_positive1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_5_{value=(16.0, -1)}::test_around_positive2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_6_{value=(1.4, 0)}::test_around_negative1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_6_{value=(1.4, 0)}::test_around_negative2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_6_{value=(1.4, 0)}::test_around_positive1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_6_{value=(1.4, 0)}::test_around_positive2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_7_{value=(1.5, 0)}::test_around_negative1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_7_{value=(1.5, 0)}::test_around_negative2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_7_{value=(1.5, 0)}::test_around_positive1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_7_{value=(1.5, 0)}::test_around_positive2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_8_{value=(1.6, 0)}::test_around_negative1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_8_{value=(1.6, 0)}::test_around_negative2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_8_{value=(1.6, 0)}::test_around_positive1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRoundBorder_param_8_{value=(1.6, 0)}::test_around_positive2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRounding::test_around | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRounding::test_ceil | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRounding::test_fix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRounding::test_floor | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRounding::test_rint | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRounding::test_rint_negative | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRounding::test_round | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRounding::test_round_ | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_rounding.py::TestRounding::test_trunc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_special.py::TestSpecial::test_i0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_special.py::TestSpecial::test_sinc | 1.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_special.py::TestSpecial::test_sinc_zero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_all | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_all_keepdims | 6.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_external_sum_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_all2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_all_transposed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_all_transposed2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_axis | 7.92 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_external_sum_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_axis2_float16 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_axis_transposed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_axis_transposed2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_axes | 9.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_axes2 | 0.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_axes3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_axes4 | 0.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_empty_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_dtype | 1.36 | |
|
------------------------------Captured stdout call------------------------------ skipped: src_dtype = <class 'numpy.int8'>, dst_dtype = <class 'numpy.uint16'> () skipped: src_dtype = <class 'numpy.complex64'>, dst_dtype = <class 'numpy.int64'> () skipped: src_dtype = <class 'numpy.int64'>, dst_dtype = <class 'numpy.int16'> () skipped: src_dtype = <class 'numpy.uint64'>, dst_dtype = <class 'numpy.float16'> () skipped: src_dtype = <class 'numpy.float64'>, dst_dtype = <class 'numpy.complex64'> () skipped: src_dtype = <class 'numpy.complex128'>, dst_dtype = <class 'numpy.uint8'> () skipped: src_dtype = <class 'numpy.float16'>, dst_dtype = <class 'numpy.ulonglong'> () skipped: src_dtype = <class 'numpy.longlong'>, dst_dtype = <class 'numpy.uint64'> () skipped: src_dtype = <class 'numpy.float32'>, dst_dtype = <class 'numpy.int8'> () skipped: src_dtype = <class 'numpy.uint16'>, dst_dtype = <class 'numpy.bool_'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_keepdims_and_dtype | 2.83 | |
|
------------------------------Captured stdout call------------------------------ skipped: src_dtype = <class 'numpy.longlong'>, dst_dtype = <class 'numpy.uint16'> () skipped: src_dtype = <class 'numpy.int64'>, dst_dtype = <class 'numpy.ulonglong'> () skipped: src_dtype = <class 'numpy.float32'>, dst_dtype = <class 'numpy.int32'> () skipped: src_dtype = <class 'numpy.uint8'>, dst_dtype = <class 'numpy.int8'> () skipped: src_dtype = <class 'numpy.float16'>, dst_dtype = <class 'numpy.bool_'> () skipped: src_dtype = <class 'numpy.ulonglong'>, dst_dtype = <class 'numpy.uint32'> () skipped: src_dtype = <class 'numpy.int32'>, dst_dtype = <class 'numpy.uint8'> () skipped: src_dtype = <class 'numpy.complex128'>, dst_dtype = <class 'numpy.float32'> () skipped: src_dtype = <class 'numpy.int16'>, dst_dtype = <class 'numpy.float16'> () skipped: src_dtype = <class 'numpy.float64'>, dst_dtype = <class 'numpy.int16'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_keepdims_multiple_axes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_out | 5.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_sum_out_wrong_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_prod_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_external_prod_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_prod_axis | 10.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_external_prod_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestSumprod::test_prod_dtype | 13.77 | |
|
------------------------------Captured stdout call------------------------------ skipped: src_dtype = <class 'numpy.complex64'>, dst_dtype = <class 'numpy.uint8'> () skipped: src_dtype = <class 'numpy.int32'>, dst_dtype = <class 'numpy.ulonglong'> () skipped: src_dtype = <class 'numpy.uint64'>, dst_dtype = <class 'numpy.uint32'> () skipped: src_dtype = <class 'numpy.float64'>, dst_dtype = <class 'numpy.uint64'> () skipped: src_dtype = <class 'numpy.uint32'>, dst_dtype = <class 'numpy.int32'> () skipped: src_dtype = <class 'numpy.float16'>, dst_dtype = <class 'numpy.bool_'> () skipped: src_dtype = <class 'numpy.longlong'>, dst_dtype = <class 'numpy.int16'> () skipped: src_dtype = <class 'numpy.ulonglong'>, dst_dtype = <class 'numpy.uint16'> () skipped: src_dtype = <class 'numpy.float32'>, dst_dtype = <class 'numpy.int8'> () skipped: src_dtype = <class 'numpy.complex128'>, dst_dtype = <class 'numpy.complex64'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_0_{backend='device', order='C', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_1_{backend='device', order='C', shape=(10, 20)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_2_{backend='device', order='C', shape=(10, 20, 30)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_3_{backend='device', order='C', shape=(10, 20, 30, 40)}] | 0.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_4_{backend='device', order='F', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_5_{backend='device', order='F', shape=(10, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_6_{backend='device', order='F', shape=(10, 20, 30)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_7_{backend='device', order='F', shape=(10, 20, 30, 40)}] | 0.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_8_{backend='block', order='C', shape=(10,)}] | 13.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_9_{backend='block', order='C', shape=(10, 20)}] | 6.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_10_{backend='block', order='C', shape=(10, 20, 30)}] | 23.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_11_{backend='block', order='C', shape=(10, 20, 30, 40)}] | 0.27 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_12_{backend='block', order='F', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_13_{backend='block', order='F', shape=(10, 20)}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_14_{backend='block', order='F', shape=(10, 20, 30)}] | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum[_param_15_{backend='block', order='F', shape=(10, 20, 30, 40)}] | 0.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_0_{backend='device', order='C', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_1_{backend='device', order='C', shape=(10, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_2_{backend='device', order='C', shape=(10, 20, 30)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_3_{backend='device', order='C', shape=(10, 20, 30, 40)}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_4_{backend='device', order='F', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_5_{backend='device', order='F', shape=(10, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_6_{backend='device', order='F', shape=(10, 20, 30)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_7_{backend='device', order='F', shape=(10, 20, 30, 40)}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_8_{backend='block', order='C', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_9_{backend='block', order='C', shape=(10, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_10_{backend='block', order='C', shape=(10, 20, 30)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_11_{backend='block', order='C', shape=(10, 20, 30, 40)}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_12_{backend='block', order='F', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_13_{backend='block', order='F', shape=(10, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_14_{backend='block', order='F', shape=(10, 20, 30)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_sum_empty_axis[_param_15_{backend='block', order='F', shape=(10, 20, 30, 40)}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_0_{backend='device', order='C', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_1_{backend='device', order='C', shape=(10, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_2_{backend='device', order='C', shape=(10, 20, 30)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_3_{backend='device', order='C', shape=(10, 20, 30, 40)}] | 0.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_4_{backend='device', order='F', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_5_{backend='device', order='F', shape=(10, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_6_{backend='device', order='F', shape=(10, 20, 30)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_7_{backend='device', order='F', shape=(10, 20, 30, 40)}] | 0.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_8_{backend='block', order='C', shape=(10,)}] | 15.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_9_{backend='block', order='C', shape=(10, 20)}] | 7.99 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_10_{backend='block', order='C', shape=(10, 20, 30)}] | 23.92 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_11_{backend='block', order='C', shape=(10, 20, 30, 40)}] | 0.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_12_{backend='block', order='F', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_13_{backend='block', order='F', shape=(10, 20)}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_14_{backend='block', order='F', shape=(10, 20, 30)}] | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_prod[_param_15_{backend='block', order='F', shape=(10, 20, 30, 40)}] | 0.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_0_{backend='device', order='C', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_1_{backend='device', order='C', shape=(10, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_2_{backend='device', order='C', shape=(10, 20, 30)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_3_{backend='device', order='C', shape=(10, 20, 30, 40)}] | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_4_{backend='device', order='F', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_5_{backend='device', order='F', shape=(10, 20)}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_6_{backend='device', order='F', shape=(10, 20, 30)}] | 3.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_7_{backend='device', order='F', shape=(10, 20, 30, 40)}] | 4.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_8_{backend='block', order='C', shape=(10,)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_9_{backend='block', order='C', shape=(10, 20)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_10_{backend='block', order='C', shape=(10, 20, 30)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_11_{backend='block', order='C', shape=(10, 20, 30, 40)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_12_{backend='block', order='F', shape=(10,)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_13_{backend='block', order='F', shape=(10, 20)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_14_{backend='block', order='F', shape=(10, 20, 30)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumsum[_param_15_{backend='block', order='F', shape=(10, 20, 30, 40)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_0_{backend='device', order='C', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_1_{backend='device', order='C', shape=(10, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_2_{backend='device', order='C', shape=(10, 20, 30)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_3_{backend='device', order='C', shape=(10, 20, 30, 40)}] | 0.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_4_{backend='device', order='F', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_5_{backend='device', order='F', shape=(10, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_6_{backend='device', order='F', shape=(10, 20, 30)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_7_{backend='device', order='F', shape=(10, 20, 30, 40)}] | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_8_{backend='block', order='C', shape=(10,)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_9_{backend='block', order='C', shape=(10, 20)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_10_{backend='block', order='C', shape=(10, 20, 30)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_11_{backend='block', order='C', shape=(10, 20, 30, 40)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_12_{backend='block', order='F', shape=(10,)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_13_{backend='block', order='F', shape=(10, 20)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_14_{backend='block', order='F', shape=(10, 20, 30)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCubReduction::test_cub_cumprod[_param_15_{backend='block', order='F', shape=(10, 20, 30, 40)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = b (does not support) skipped: dtype = h (does not support) skipped: dtype = i (does not support) skipped: dtype = l (does not support) skipped: dtype = B (does not support) skipped: dtype = H (does not support) skipped: dtype = I (does not support) skipped: dtype = L (does not support) skipped: dtype = f (does not support) skipped: dtype = d (does not support) skipped: dtype = F (does not support) | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_0_{axis=0, func='nansum', keepdims=True, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_1_{axis=0, func='nansum', keepdims=True, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_2_{axis=0, func='nansum', keepdims=True, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_3_{axis=0, func='nansum', keepdims=True, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_4_{axis=0, func='nansum', keepdims=False, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_5_{axis=0, func='nansum', keepdims=False, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_6_{axis=0, func='nansum', keepdims=False, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_7_{axis=0, func='nansum', keepdims=False, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_8_{axis=0, func='nanprod', keepdims=True, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_9_{axis=0, func='nanprod', keepdims=True, shape=(2, 3, 4), transpose_axes=False}] | 8.19 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_10_{axis=0, func='nanprod', keepdims=True, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_11_{axis=0, func='nanprod', keepdims=True, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_12_{axis=0, func='nanprod', keepdims=False, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_13_{axis=0, func='nanprod', keepdims=False, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_14_{axis=0, func='nanprod', keepdims=False, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_15_{axis=0, func='nanprod', keepdims=False, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_16_{axis=1, func='nansum', keepdims=True, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_17_{axis=1, func='nansum', keepdims=True, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_18_{axis=1, func='nansum', keepdims=True, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_19_{axis=1, func='nansum', keepdims=True, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_20_{axis=1, func='nansum', keepdims=False, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_21_{axis=1, func='nansum', keepdims=False, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_22_{axis=1, func='nansum', keepdims=False, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_23_{axis=1, func='nansum', keepdims=False, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_24_{axis=1, func='nanprod', keepdims=True, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_25_{axis=1, func='nanprod', keepdims=True, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_26_{axis=1, func='nanprod', keepdims=True, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_27_{axis=1, func='nanprod', keepdims=True, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_28_{axis=1, func='nanprod', keepdims=False, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_29_{axis=1, func='nanprod', keepdims=False, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_30_{axis=1, func='nanprod', keepdims=False, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_all[_param_31_{axis=1, func='nanprod', keepdims=False, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_0_{axis=0, func='nansum', keepdims=True, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_1_{axis=0, func='nansum', keepdims=True, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_2_{axis=0, func='nansum', keepdims=True, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_3_{axis=0, func='nansum', keepdims=True, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_4_{axis=0, func='nansum', keepdims=False, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_5_{axis=0, func='nansum', keepdims=False, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_6_{axis=0, func='nansum', keepdims=False, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_7_{axis=0, func='nansum', keepdims=False, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_8_{axis=0, func='nanprod', keepdims=True, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_9_{axis=0, func='nanprod', keepdims=True, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_10_{axis=0, func='nanprod', keepdims=True, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_11_{axis=0, func='nanprod', keepdims=True, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_12_{axis=0, func='nanprod', keepdims=False, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_13_{axis=0, func='nanprod', keepdims=False, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_14_{axis=0, func='nanprod', keepdims=False, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_15_{axis=0, func='nanprod', keepdims=False, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_16_{axis=1, func='nansum', keepdims=True, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_17_{axis=1, func='nansum', keepdims=True, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_18_{axis=1, func='nansum', keepdims=True, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_19_{axis=1, func='nansum', keepdims=True, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_20_{axis=1, func='nansum', keepdims=False, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_21_{axis=1, func='nansum', keepdims=False, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_22_{axis=1, func='nansum', keepdims=False, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_23_{axis=1, func='nansum', keepdims=False, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_24_{axis=1, func='nanprod', keepdims=True, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_25_{axis=1, func='nanprod', keepdims=True, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_26_{axis=1, func='nanprod', keepdims=True, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_27_{axis=1, func='nanprod', keepdims=True, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_28_{axis=1, func='nanprod', keepdims=False, shape=(2, 3, 4), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_29_{axis=1, func='nanprod', keepdims=False, shape=(2, 3, 4), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_30_{axis=1, func='nanprod', keepdims=False, shape=(20, 30, 40), transpose_axes=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodLong::test_nansum_axis_transposed[_param_31_{axis=1, func='nanprod', keepdims=False, shape=(20, 30, 40), transpose_axes=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodExtra::test_nansum_axis_float16[_param_0_{shape=(2, 3, 4)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodExtra::test_nansum_axis_float16[_param_1_{shape=(20, 30, 40)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodExtra::test_nansum_out[_param_0_{shape=(2, 3, 4)}] | 8.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodExtra::test_nansum_out[_param_1_{shape=(20, 30, 40)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodExtra::test_nansum_out_wrong_shape[_param_0_{shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodExtra::test_nansum_out_wrong_shape[_param_1_{shape=(20, 30, 40)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodAxes::test_nansum_axes[_param_0_{axis=(1, 3), shape=(2, 3, 4, 5)}] | 8.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodAxes::test_nansum_axes[_param_1_{axis=(1, 3), shape=(20, 30, 40, 50)}] | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodAxes::test_nansum_axes[_param_2_{axis=(0, 2, 3), shape=(2, 3, 4, 5)}] | 4.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNansumNanprodAxes::test_nansum_axes[_param_3_{axis=(0, 2, 3), shape=(20, 30, 40, 50)}] | 0.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum[_param_0_{axis=0}] | 4.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum[_param_1_{axis=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_out[_param_0_{axis=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_out[_param_1_{axis=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_out[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_out_noncontiguous[_param_0_{axis=0}] | 6.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_out_noncontiguous[_param_1_{axis=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_out_noncontiguous[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_2dim[_param_0_{axis=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_2dim[_param_1_{axis=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_2dim[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_axis[_param_0_{axis=0}] | 4.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_axis[_param_1_{axis=1}] | 4.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_axis[_param_2_{axis=2}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_axis_out[_param_0_{axis=0}] | 4.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_axis_out[_param_1_{axis=1}] | 4.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_axis_out[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_axis_out_noncontiguous[_param_0_{axis=0}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_axis_out_noncontiguous[_param_1_{axis=1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_axis_out_noncontiguous[_param_2_{axis=2}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_ndarray_cumsum_axis[_param_0_{axis=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_ndarray_cumsum_axis[_param_1_{axis=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_ndarray_cumsum_axis[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_axis_empty[_param_0_{axis=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_axis_empty[_param_1_{axis=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_axis_empty[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_invalid_axis_lower1[_param_0_{axis=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_invalid_axis_lower1[_param_1_{axis=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_invalid_axis_lower1[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_invalid_axis_lower2[_param_0_{axis=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_invalid_axis_lower2[_param_1_{axis=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_invalid_axis_lower2[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_invalid_axis_upper1[_param_0_{axis=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_invalid_axis_upper1[_param_1_{axis=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_invalid_axis_upper1[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_invalid_axis_upper2[_param_0_{axis=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_invalid_axis_upper2[_param_1_{axis=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_invalid_axis_upper2[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_arraylike[_param_0_{axis=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_arraylike[_param_1_{axis=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_arraylike[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_numpy_array[_param_0_{axis=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_numpy_array[_param_1_{axis=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumsum::test_cumsum_numpy_array[_param_2_{axis=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumprod::test_cumprod_1dim | 9.74 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumprod::test_cumprod_out | 4.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumprod::test_cumprod_out_noncontiguous | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumprod::test_cumprod_2dim_without_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumprod::test_cumprod_2dim_with_axis | 4.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumprod::test_ndarray_cumprod_2dim_with_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumprod::test_invalid_axis_lower1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumprod::test_invalid_axis_lower2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumprod::test_invalid_axis_upper1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumprod::test_invalid_axis_upper2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumprod::test_cumprod_arraylike | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestCumprod::test_cumprod_numpy_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_0_{axis=None, func='nancumsum', shape=(20,)}] | 9.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_1_{axis=None, func='nancumsum', shape=(7, 6)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_2_{axis=None, func='nancumsum', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_3_{axis=None, func='nancumprod', shape=(20,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_4_{axis=None, func='nancumprod', shape=(7, 6)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_5_{axis=None, func='nancumprod', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_6_{axis=0, func='nancumsum', shape=(20,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_7_{axis=0, func='nancumsum', shape=(7, 6)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_8_{axis=0, func='nancumsum', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_9_{axis=0, func='nancumprod', shape=(20,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_10_{axis=0, func='nancumprod', shape=(7, 6)}] | 4.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_11_{axis=0, func='nancumprod', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_12_{axis=1, func='nancumsum', shape=(20,)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_13_{axis=1, func='nancumsum', shape=(7, 6)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_14_{axis=1, func='nancumsum', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_15_{axis=1, func='nancumprod', shape=(20,)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_16_{axis=1, func='nancumprod', shape=(7, 6)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_17_{axis=1, func='nancumprod', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_18_{axis=2, func='nancumsum', shape=(20,)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_19_{axis=2, func='nancumsum', shape=(7, 6)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_20_{axis=2, func='nancumsum', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_21_{axis=2, func='nancumprod', shape=(20,)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_22_{axis=2, func='nancumprod', shape=(7, 6)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod[_param_23_{axis=2, func='nancumprod', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_0_{axis=None, func='nancumsum', shape=(20,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_1_{axis=None, func='nancumsum', shape=(7, 6)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_2_{axis=None, func='nancumsum', shape=(3, 4, 5)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_3_{axis=None, func='nancumprod', shape=(20,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_4_{axis=None, func='nancumprod', shape=(7, 6)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_5_{axis=None, func='nancumprod', shape=(3, 4, 5)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_6_{axis=0, func='nancumsum', shape=(20,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_7_{axis=0, func='nancumsum', shape=(7, 6)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_8_{axis=0, func='nancumsum', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_9_{axis=0, func='nancumprod', shape=(20,)}] | 4.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_10_{axis=0, func='nancumprod', shape=(7, 6)}] | 4.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_11_{axis=0, func='nancumprod', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_12_{axis=1, func='nancumsum', shape=(20,)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_13_{axis=1, func='nancumsum', shape=(7, 6)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_14_{axis=1, func='nancumsum', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_15_{axis=1, func='nancumprod', shape=(20,)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_16_{axis=1, func='nancumprod', shape=(7, 6)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_17_{axis=1, func='nancumprod', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_18_{axis=2, func='nancumsum', shape=(20,)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_19_{axis=2, func='nancumsum', shape=(7, 6)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_20_{axis=2, func='nancumsum', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_21_{axis=2, func='nancumprod', shape=(20,)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_22_{axis=2, func='nancumprod', shape=(7, 6)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> () skipped: dtype = <class 'numpy.float32'> () skipped: dtype = <class 'numpy.float16'> () skipped: dtype = <class 'numpy.int8'> () skipped: dtype = <class 'numpy.int16'> () skipped: dtype = <class 'numpy.int32'> () skipped: dtype = <class 'numpy.int64'> () skipped: dtype = <class 'numpy.longlong'> () skipped: dtype = <class 'numpy.uint8'> () skipped: dtype = <class 'numpy.uint16'> () skipped: dtype = <class 'numpy.uint32'> () skipped: dtype = <class 'numpy.uint64'> () skipped: dtype = <class 'numpy.ulonglong'> () skipped: dtype = <class 'numpy.bool_'> () skipped: dtype = <class 'numpy.complex64'> () skipped: dtype = <class 'numpy.complex128'> () | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestNanCumSumProd::test_nancumsumprod_out[_param_23_{axis=2, func='nancumprod', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestDiff::test_diff_1dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestDiff::test_diff_1dim_with_n | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestDiff::test_diff_2dim_without_axis | 9.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestDiff::test_diff_2dim_with_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestDiff::test_diff_2dim_with_n_and_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestDiff::test_diff_2dim_with_prepend | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestDiff::test_diff_2dim_with_append | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestDiff::test_diff_2dim_with_scalar_append | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestDiff::test_diff_invalid_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_0_{axis=None, edge_order=1, shape=(), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_1_{axis=None, edge_order=2, shape=(), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_2_{axis=None, edge_order=1, shape=(), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_3_{axis=None, edge_order=2, shape=(), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_4_{axis=(), edge_order=1, shape=(), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_5_{axis=(), edge_order=2, shape=(), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_6_{axis=(), edge_order=1, shape=(), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_7_{axis=(), edge_order=2, shape=(), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_8_{axis=None, edge_order=1, shape=(33,), spacing=()}] | 2.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_9_{axis=None, edge_order=2, shape=(33,), spacing=()}] | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_10_{axis=None, edge_order=1, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_11_{axis=None, edge_order=2, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_12_{axis=None, edge_order=1, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_13_{axis=None, edge_order=2, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_14_{axis=None, edge_order=1, shape=(33,), spacing='arrays'}] | 2.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_15_{axis=None, edge_order=2, shape=(33,), spacing='arrays'}] | 2.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_16_{axis=0, edge_order=1, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_17_{axis=0, edge_order=2, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_18_{axis=0, edge_order=1, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_19_{axis=0, edge_order=2, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_20_{axis=0, edge_order=1, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_21_{axis=0, edge_order=2, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_22_{axis=0, edge_order=1, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_23_{axis=0, edge_order=2, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_24_{axis=-1, edge_order=1, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_25_{axis=-1, edge_order=2, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_26_{axis=-1, edge_order=1, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_27_{axis=-1, edge_order=2, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_28_{axis=-1, edge_order=1, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_29_{axis=-1, edge_order=2, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_30_{axis=-1, edge_order=1, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_31_{axis=-1, edge_order=2, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_32_{axis=(0,), edge_order=1, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_33_{axis=(0,), edge_order=2, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_34_{axis=(0,), edge_order=1, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_35_{axis=(0,), edge_order=2, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_36_{axis=(0,), edge_order=1, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_37_{axis=(0,), edge_order=2, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_38_{axis=(0,), edge_order=1, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_39_{axis=(0,), edge_order=2, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_40_{axis=None, edge_order=1, shape=(10, 20), spacing=()}] | 2.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_41_{axis=None, edge_order=2, shape=(10, 20), spacing=()}] | 2.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_42_{axis=None, edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_43_{axis=None, edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_44_{axis=None, edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_45_{axis=None, edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_46_{axis=None, edge_order=1, shape=(10, 20), spacing='arrays'}] | 6.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_47_{axis=None, edge_order=2, shape=(10, 20), spacing='arrays'}] | 4.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_48_{axis=None, edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_49_{axis=None, edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_50_{axis=None, edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_51_{axis=None, edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_52_{axis=None, edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_53_{axis=None, edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_54_{axis=None, edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_55_{axis=None, edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_56_{axis=None, edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_57_{axis=None, edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_58_{axis=None, edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_59_{axis=None, edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_60_{axis=0, edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_61_{axis=0, edge_order=2, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_62_{axis=0, edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_63_{axis=0, edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_64_{axis=0, edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_65_{axis=0, edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_66_{axis=0, edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_67_{axis=0, edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_68_{axis=0, edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_69_{axis=0, edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_70_{axis=0, edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_71_{axis=0, edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_72_{axis=0, edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_73_{axis=0, edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_74_{axis=0, edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_75_{axis=0, edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_76_{axis=0, edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_77_{axis=0, edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_78_{axis=0, edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_79_{axis=0, edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_80_{axis=-1, edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_81_{axis=-1, edge_order=2, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_82_{axis=-1, edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_83_{axis=-1, edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_84_{axis=-1, edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_85_{axis=-1, edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_86_{axis=-1, edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_87_{axis=-1, edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_88_{axis=-1, edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_89_{axis=-1, edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_90_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_91_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_92_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_93_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_94_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_95_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_96_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_97_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_98_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_99_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_100_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_101_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_102_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_103_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_104_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_105_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_106_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_107_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_108_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_109_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_110_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_111_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_112_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_113_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_114_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_115_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_116_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_117_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_118_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_119_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_120_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_121_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_122_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_123_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_124_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_125_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_126_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_127_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_128_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_129_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_130_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_131_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_132_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_133_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_134_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_135_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_136_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_137_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_138_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_floating[_param_139_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_0_{axis=None, edge_order=1, shape=(), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_1_{axis=None, edge_order=2, shape=(), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_2_{axis=None, edge_order=1, shape=(), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_3_{axis=None, edge_order=2, shape=(), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_4_{axis=(), edge_order=1, shape=(), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_5_{axis=(), edge_order=2, shape=(), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_6_{axis=(), edge_order=1, shape=(), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_7_{axis=(), edge_order=2, shape=(), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_8_{axis=None, edge_order=1, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_9_{axis=None, edge_order=2, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_10_{axis=None, edge_order=1, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_11_{axis=None, edge_order=2, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_12_{axis=None, edge_order=1, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_13_{axis=None, edge_order=2, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_14_{axis=None, edge_order=1, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_15_{axis=None, edge_order=2, shape=(33,), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_16_{axis=0, edge_order=1, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_17_{axis=0, edge_order=2, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_18_{axis=0, edge_order=1, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_19_{axis=0, edge_order=2, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_20_{axis=0, edge_order=1, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_21_{axis=0, edge_order=2, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_22_{axis=0, edge_order=1, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_23_{axis=0, edge_order=2, shape=(33,), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_24_{axis=-1, edge_order=1, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_25_{axis=-1, edge_order=2, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_26_{axis=-1, edge_order=1, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_27_{axis=-1, edge_order=2, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_28_{axis=-1, edge_order=1, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_29_{axis=-1, edge_order=2, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_30_{axis=-1, edge_order=1, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_31_{axis=-1, edge_order=2, shape=(33,), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_32_{axis=(0,), edge_order=1, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_33_{axis=(0,), edge_order=2, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_34_{axis=(0,), edge_order=1, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_35_{axis=(0,), edge_order=2, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_36_{axis=(0,), edge_order=1, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_37_{axis=(0,), edge_order=2, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_38_{axis=(0,), edge_order=1, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_39_{axis=(0,), edge_order=2, shape=(33,), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_40_{axis=None, edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_41_{axis=None, edge_order=2, shape=(10, 20), spacing=()}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_42_{axis=None, edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_43_{axis=None, edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_44_{axis=None, edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_45_{axis=None, edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_46_{axis=None, edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_47_{axis=None, edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_48_{axis=None, edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_49_{axis=None, edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_50_{axis=None, edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_51_{axis=None, edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_52_{axis=None, edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_53_{axis=None, edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_54_{axis=None, edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_55_{axis=None, edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_56_{axis=None, edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_57_{axis=None, edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_58_{axis=None, edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_59_{axis=None, edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_60_{axis=0, edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_61_{axis=0, edge_order=2, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_62_{axis=0, edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_63_{axis=0, edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_64_{axis=0, edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_65_{axis=0, edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_66_{axis=0, edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_67_{axis=0, edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_68_{axis=0, edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_69_{axis=0, edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_70_{axis=0, edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_71_{axis=0, edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_72_{axis=0, edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_73_{axis=0, edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_74_{axis=0, edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_75_{axis=0, edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_76_{axis=0, edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_77_{axis=0, edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_78_{axis=0, edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_79_{axis=0, edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_80_{axis=-1, edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_81_{axis=-1, edge_order=2, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_82_{axis=-1, edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_83_{axis=-1, edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_84_{axis=-1, edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_85_{axis=-1, edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_86_{axis=-1, edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_87_{axis=-1, edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_88_{axis=-1, edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_89_{axis=-1, edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_90_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_91_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_92_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_93_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_94_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_95_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_96_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_97_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_98_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_99_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_100_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_101_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing=()}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_102_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_103_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_104_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_105_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_106_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_107_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_108_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_109_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_110_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_111_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_112_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_113_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_114_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_115_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_116_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_117_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_118_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_119_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_120_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_121_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing=()}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_122_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_123_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_124_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_125_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_126_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_127_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_128_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_129_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_130_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_131_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_132_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_133_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_134_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_135_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_136_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_137_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_138_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_int[_param_139_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_0_{axis=None, edge_order=1, shape=(), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_1_{axis=None, edge_order=2, shape=(), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_2_{axis=None, edge_order=1, shape=(), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_3_{axis=None, edge_order=2, shape=(), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_4_{axis=(), edge_order=1, shape=(), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_5_{axis=(), edge_order=2, shape=(), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_6_{axis=(), edge_order=1, shape=(), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_7_{axis=(), edge_order=2, shape=(), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_8_{axis=None, edge_order=1, shape=(33,), spacing=()}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_9_{axis=None, edge_order=2, shape=(33,), spacing=()}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_10_{axis=None, edge_order=1, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_11_{axis=None, edge_order=2, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_12_{axis=None, edge_order=1, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_13_{axis=None, edge_order=2, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_14_{axis=None, edge_order=1, shape=(33,), spacing='arrays'}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_15_{axis=None, edge_order=2, shape=(33,), spacing='arrays'}] | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_16_{axis=0, edge_order=1, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_17_{axis=0, edge_order=2, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_18_{axis=0, edge_order=1, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_19_{axis=0, edge_order=2, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_20_{axis=0, edge_order=1, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_21_{axis=0, edge_order=2, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_22_{axis=0, edge_order=1, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_23_{axis=0, edge_order=2, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_24_{axis=-1, edge_order=1, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_25_{axis=-1, edge_order=2, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_26_{axis=-1, edge_order=1, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_27_{axis=-1, edge_order=2, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_28_{axis=-1, edge_order=1, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_29_{axis=-1, edge_order=2, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_30_{axis=-1, edge_order=1, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_31_{axis=-1, edge_order=2, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_32_{axis=(0,), edge_order=1, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_33_{axis=(0,), edge_order=2, shape=(33,), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_34_{axis=(0,), edge_order=1, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_35_{axis=(0,), edge_order=2, shape=(33,), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_36_{axis=(0,), edge_order=1, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_37_{axis=(0,), edge_order=2, shape=(33,), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_38_{axis=(0,), edge_order=1, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_39_{axis=(0,), edge_order=2, shape=(33,), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_40_{axis=None, edge_order=1, shape=(10, 20), spacing=()}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_41_{axis=None, edge_order=2, shape=(10, 20), spacing=()}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_42_{axis=None, edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_43_{axis=None, edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_44_{axis=None, edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_45_{axis=None, edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_46_{axis=None, edge_order=1, shape=(10, 20), spacing='arrays'}] | 3.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_47_{axis=None, edge_order=2, shape=(10, 20), spacing='arrays'}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_48_{axis=None, edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_49_{axis=None, edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_50_{axis=None, edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_51_{axis=None, edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_52_{axis=None, edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_53_{axis=None, edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_54_{axis=None, edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_55_{axis=None, edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_56_{axis=None, edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_57_{axis=None, edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_58_{axis=None, edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_59_{axis=None, edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_60_{axis=0, edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_61_{axis=0, edge_order=2, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_62_{axis=0, edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_63_{axis=0, edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_64_{axis=0, edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_65_{axis=0, edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_66_{axis=0, edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_67_{axis=0, edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_68_{axis=0, edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_69_{axis=0, edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_70_{axis=0, edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_71_{axis=0, edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_72_{axis=0, edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_73_{axis=0, edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_74_{axis=0, edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_75_{axis=0, edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_76_{axis=0, edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_77_{axis=0, edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_78_{axis=0, edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_79_{axis=0, edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_80_{axis=-1, edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_81_{axis=-1, edge_order=2, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_82_{axis=-1, edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_83_{axis=-1, edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_84_{axis=-1, edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_85_{axis=-1, edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_86_{axis=-1, edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_87_{axis=-1, edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_88_{axis=-1, edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_89_{axis=-1, edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_90_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_91_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_92_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_93_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_94_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_95_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_96_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_97_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_98_{axis=-1, edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_99_{axis=-1, edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_100_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_101_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_102_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_103_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_104_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_105_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_106_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_107_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_108_{axis=(0, -1), edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_109_{axis=(0, -1), edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_110_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_111_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_112_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_113_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_114_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_115_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_116_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_117_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_118_{axis=(0, -1), edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_119_{axis=(0, -1), edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_120_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_121_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_122_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_123_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_124_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_125_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_126_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_127_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_128_{axis=(1, 0), edge_order=1, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_129_{axis=(1, 0), edge_order=2, shape=(10, 20), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_130_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_131_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_132_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_133_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing=(1.2,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_134_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_135_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing='sequence of int'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_136_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_137_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing='arrays'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_138_{axis=(1, 0), edge_order=1, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradient::test_gradient_float16[_param_139_{axis=(1, 0), edge_order=2, shape=(10, 20, 30), spacing='mixed'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradientErrors::test_gradient_invalid_spacings1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradientErrors::test_gradient_invalid_spacings2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradientErrors::test_gradient_invalid_spacings3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradientErrors::test_gradient_invalid_edge_order1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradientErrors::test_gradient_invalid_edge_order2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradientErrors::test_gradient_invalid_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_sumprod.py::TestGradientErrors::test_gradient_bool_input | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestTrigonometric::test_arccos | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestTrigonometric::test_arcsin | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestTrigonometric::test_arctan | 5.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestTrigonometric::test_arctan2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestTrigonometric::test_cos | 5.50 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestTrigonometric::test_deg2rad | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestTrigonometric::test_hypot | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestTrigonometric::test_rad2deg | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestTrigonometric::test_sin | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestTrigonometric::test_tan | 5.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestUnwrap::test_unwrap_1dim | 8.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestUnwrap::test_unwrap_1dim_with_discont | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestUnwrap::test_unwrap_2dim_with_axis | 8.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestUnwrap::test_unwrap_2dim_with_discont | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_trigonometric.py::TestUnwrap::test_unwrap_2dim_without_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_0_{m=0, name='bartlett'}::test_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_1_{m=0, name='blackman'}::test_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_2_{m=0, name='hamming'}::test_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_3_{m=0, name='hanning'}::test_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_4_{m=1, name='bartlett'}::test_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_5_{m=1, name='blackman'}::test_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_6_{m=1, name='hamming'}::test_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_7_{m=1, name='hanning'}::test_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_8_{m=-1, name='bartlett'}::test_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_9_{m=-1, name='blackman'}::test_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_10_{m=-1, name='hamming'}::test_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_11_{m=-1, name='hanning'}::test_window | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_12_{m=1024, name='bartlett'}::test_window | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_13_{m=1024, name='blackman'}::test_window | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_14_{m=1024, name='hamming'}::test_window | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestWindow_param_15_{m=1024, name='hanning'}::test_window | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_0_{beta=-3.4, m=10, name='kaiser'}::test_kaiser_parametric | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_1_{beta=-3.4, m=30, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_2_{beta=-3.4, m=1024, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_3_{beta=0, m=10, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_4_{beta=0, m=30, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_5_{beta=0, m=1024, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_6_{beta=5, m=10, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_7_{beta=5, m=30, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_8_{beta=5, m=1024, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_9_{beta=6, m=10, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_10_{beta=6, m=30, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_11_{beta=6, m=1024, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_12_{beta=8.6, m=10, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_13_{beta=8.6, m=30, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiser_param_14_{beta=8.6, m=1024, name='kaiser'}::test_kaiser_parametric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiserBoundary_param_0_{m=-1}::test_kaiser | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiserBoundary_param_1_{m=0}::test_kaiser | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/math_tests/test_window.py::TestKaiserBoundary_param_2_{m=1}::test_kaiser | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestMayShareMemory::test_away | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestMayShareMemory::test_combination | 4.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestMayShareMemory::test_cover | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestMayShareMemory::test_different_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestMayShareMemory::test_same_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestMayShareMemory::test_shares_memory | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestMayShareMemory::test_touch_edge_false | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestMayShareMemory::test_touch_edge_true | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestMayShareMemory::test_zero_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestSharesMemory::test_complex_type_case | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestSharesMemory::test_contiguous_arrays | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestSharesMemory::test_different_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestSharesMemory::test_multi_dimension_case | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestSharesMemory::test_non_contiguous_case | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestSharesMemory::test_same_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_memory_ranges.py::TestSharesMemory::test_zero_size_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_who.py::TestWho::test_who_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_who.py::TestWho::test_who_local_var | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_who.py::TestWho::test_who_global | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_who.py::TestWho::test_who_global_multi | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_who.py::TestWho::test_who_dict_arrays | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/misc_tests/test_who.py::TestWho::test_who_dict_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_0_{array=array([[0, 1, 2], [3, 4, 5]]), mode='constant', pad_width=1}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_1_{array=array([[0, 1, 2], [3, 4, 5]]), mode='constant', pad_width=[1, 2]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_2_{array=array([[0, 1, 2], [3, 4, 5]]), mode='constant', pad_width=[[1, 2], [3, 4]]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_3_{array=array([[0, 1, 2], [3, 4, 5]]), mode='edge', pad_width=1}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_4_{array=array([[0, 1, 2], [3, 4, 5]]), mode='edge', pad_width=[1, 2]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_5_{array=array([[0, 1, 2], [3, 4, 5]]), mode='edge', pad_width=[[1, 2], [3, 4]]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_6_{array=array([[0, 1, 2], [3, 4, 5]]), mode='linear_ramp', pad_width=1}::test_pad_default | 3.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_7_{array=array([[0, 1, 2], [3, 4, 5]]), mode='linear_ramp', pad_width=[1, 2]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_8_{array=array([[0, 1, 2], [3, 4, 5]]), mode='linear_ramp', pad_width=[[1, 2], [3, 4]]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_9_{array=array([[0, 1, 2], [3, 4, 5]]), mode='maximum', pad_width=1}::test_pad_default | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_10_{array=array([[0, 1, 2], [3, 4, 5]]), mode='maximum', pad_width=[1, 2]}::test_pad_default | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_11_{array=array([[0, 1, 2], [3, 4, 5]]), mode='maximum', pad_width=[[1, 2], [3, 4]]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_12_{array=array([[0, 1, 2], [3, 4, 5]]), mode='minimum', pad_width=1}::test_pad_default | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_13_{array=array([[0, 1, 2], [3, 4, 5]]), mode='minimum', pad_width=[1, 2]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_14_{array=array([[0, 1, 2], [3, 4, 5]]), mode='minimum', pad_width=[[1, 2], [3, 4]]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_15_{array=array([[0, 1, 2], [3, 4, 5]]), mode='reflect', pad_width=1}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_16_{array=array([[0, 1, 2], [3, 4, 5]]), mode='reflect', pad_width=[1, 2]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_17_{array=array([[0, 1, 2], [3, 4, 5]]), mode='reflect', pad_width=[[1, 2], [3, 4]]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_18_{array=array([[0, 1, 2], [3, 4, 5]]), mode='symmetric', pad_width=1}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_19_{array=array([[0, 1, 2], [3, 4, 5]]), mode='symmetric', pad_width=[1, 2]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_20_{array=array([[0, 1, 2], [3, 4, 5]]), mode='symmetric', pad_width=[[1, 2], [3, 4]]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_21_{array=array([[0, 1, 2], [3, 4, 5]]), mode='wrap', pad_width=1}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_22_{array=array([[0, 1, 2], [3, 4, 5]]), mode='wrap', pad_width=[1, 2]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefault_param_23_{array=array([[0, 1, 2], [3, 4, 5]]), mode='wrap', pad_width=[[1, 2], [3, 4]]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefaultMean_param_0_{array=array([[0, 1, 2], [3, 4, 5]]), pad_width=1}::test_pad_default | 3.60 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefaultMean_param_1_{array=array([[0, 1, 2], [3, 4, 5]]), pad_width=[1, 2]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadDefaultMean_param_2_{array=array([[0, 1, 2], [3, 4, 5]]), pad_width=[[1, 2], [3, 4]]}::test_pad_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_0_{array=array([[0, 1, 2], [3, 4, 5]]), constant_values=3, mode='constant', pad_width=1}::test_pad | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_1_{array=array([[0, 1, 2], [3, 4, 5]]), constant_values=[3, 4], mode='constant', pad_width=[1, 2]}::test_pad | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_2_{array=array([[0, 1, 2], [3, 4, 5]]), constant_values=[[3, 4], [5, 6]], mode='constant', pad_width=[[1, 2], [3, 4]]}::test_pad | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_3_{array=array([[0, 1, 2], [3, 4, 5]]), mode='reflect', pad_width=1, reflect_type='odd'}::test_pad | 5.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_4_{array=array([[0, 1, 2], [3, 4, 5]]), mode='reflect', pad_width=[1, 2], reflect_type='odd'}::test_pad | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_5_{array=array([[0, 1, 2], [3, 4, 5]]), mode='reflect', pad_width=[[1, 2], [3, 4]], reflect_type='odd'}::test_pad | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_6_{array=array([[0, 1, 2], [3, 4, 5]]), mode='symmetric', pad_width=1, reflect_type='odd'}::test_pad | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_7_{array=array([[0, 1, 2], [3, 4, 5]]), mode='symmetric', pad_width=[1, 2], reflect_type='odd'}::test_pad | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_8_{array=array([[0, 1, 2], [3, 4, 5]]), mode='symmetric', pad_width=[[1, 2], [3, 4]], reflect_type='odd'}::test_pad | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_9_{array=array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]), mode='minimum', pad_width=1, stat_length=2}::test_pad | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_10_{array=array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]), mode='minimum', pad_width=[1, 2], stat_length=(2, 4)}::test_pad | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_11_{array=array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]), mode='minimum', pad_width=[[1, 2], [3, 4]], stat_length=((2, 4), (3, 5))}::test_pad | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_12_{array=array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]), mode='minimum', pad_width=[[1, 2], [3, 4]], stat_length=None}::test_pad | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_13_{array=array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]), mode='maximum', pad_width=1, stat_length=2}::test_pad | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_14_{array=array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]), mode='maximum', pad_width=[1, 2], stat_length=(2, 4)}::test_pad | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_15_{array=array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]), mode='maximum', pad_width=[[1, 2], [3, 4]], stat_length=((2, 4), (3, 5))}::test_pad | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPad_param_16_{array=array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]), mode='maximum', pad_width=[[1, 2], [3, 4]], stat_length=None}::test_pad | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadMean_param_0_{array=array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]), mode='mean', pad_width=1, stat_length=2}::test_pad | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadMean_param_1_{array=array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]), mode='mean', pad_width=[1, 2], stat_length=(2, 4)}::test_pad | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadMean_param_2_{array=array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]), mode='mean', pad_width=[[1, 2], [3, 4]], stat_length=((2, 4), (3, 5))}::test_pad | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadMean_param_3_{array=array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]), mode='mean', pad_width=[[1, 2], [3, 4]], stat_length=None}::test_pad | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadSpecial_param_0_{array=[], constant_values=3, mode='constant', pad_width=1}::test_pad_special | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadSpecial_param_1_{array=1, constant_values=3, mode='constant', pad_width=1}::test_pad_special | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadSpecial_param_2_{array=[0, 1, 2, 3], constant_values=3, mode='constant', pad_width=1}::test_pad_special | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadSpecial_param_3_{array=[0, 1, 2, 3], constant_values=3, mode='constant', pad_width=[1, 2]}::test_pad_special | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadSpecial_param_4_{array=1, mode='edge', pad_width=1}::test_pad_special | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadSpecial_param_5_{array=[0, 1, 2, 3], mode='edge', pad_width=1}::test_pad_special | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadSpecial_param_6_{array=[0, 1, 2, 3], mode='edge', pad_width=[1, 2]}::test_pad_special | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadSpecial_param_7_{array=1, mode='reflect', pad_width=1}::test_pad_special | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadSpecial_param_8_{array=[0, 1, 2, 3], mode='reflect', pad_width=1}::test_pad_special | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadSpecial_param_9_{array=[0, 1, 2, 3], mode='reflect', pad_width=[1, 2]}::test_pad_special | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadValueError_param_0_{array=[0, 1, 2, 3], kwargs={'constant_values': 3}, mode='constant', pad_width=[-1, 1]}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadValueError_param_1_{array=[0, 1, 2, 3], kwargs={'constant_values': 3}, mode='constant', pad_width=[[3, 4], [5, 6]]}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadValueError_param_2_{array=[0, 1, 2, 3], kwargs={'notallowedkeyword': 3}, mode='constant', pad_width=[1]}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadValueError_param_3_{array=[], kwargs={}, mode='edge', pad_width=1}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadValueError_param_4_{array=[0, 1, 2, 3], kwargs={}, mode='edge', pad_width=[-1, 1]}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadValueError_param_5_{array=[0, 1, 2, 3], kwargs={}, mode='edge', pad_width=[[3, 4], [5, 6]]}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadValueError_param_6_{array=[0, 1, 2, 3], kwargs={'notallowedkeyword': 3}, mode='edge', pad_width=[1]}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadValueError_param_7_{array=[], kwargs={}, mode='reflect', pad_width=1}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadValueError_param_8_{array=[0, 1, 2, 3], kwargs={}, mode='reflect', pad_width=[-1, 1]}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadValueError_param_9_{array=[0, 1, 2, 3], kwargs={}, mode='reflect', pad_width=[[3, 4], [5, 6]]}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadValueError_param_10_{array=[0, 1, 2, 3], kwargs={'notallowedkeyword': 3}, mode='reflect', pad_width=[1]}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadTypeError_param_0_{array=[0, 1, 2, 3], kwargs={'constant_values': 3}, mode='constant', pad_width=[]}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadTypeError_param_1_{array=[0, 1, 2, 3], kwargs={}, mode='edge', pad_width=[]}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadTypeError_param_2_{array=[0, 1, 2, 3], kwargs={}, mode='reflect', pad_width=[]}::test_pad_failure | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadNumpybug::test_pad_highdim_default | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadEmpty::test_pad_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/padding_tests/test_pad.py::TestPadCustomFunction::test_pad_via_func | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polycompanion | 3.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polycompanion_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polycompanion_nocommon_types | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polycompanion_single_value1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polycompanion_single_value2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polycompanion_single_value3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polycompanion_trailing_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polycompanion_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polycompanion_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polycompanion_zerosize | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polyvander1 | 8.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polyvander2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polyvander3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polyvander_integral_float_degree | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polyvander_ndim | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polyvander_negative_degree | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polyvander_non_integral_float_degree | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polyvander_zero_dim | 10.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polynomial.py::TestPolynomial::test_polyvander_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_0_{trim=True}::test_as_series | 2.23 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_0_{trim=True}::test_as_series_2dim | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_0_{trim=True}::test_as_series_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_0_{trim=True}::test_as_series_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_0_{trim=True}::test_as_series_nocommon_types | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_0_{trim=True}::test_as_series_trailing_zeros | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_0_{trim=True}::test_as_series_zeros | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_1_{trim=False}::test_as_series | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_1_{trim=False}::test_as_series_2dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_1_{trim=False}::test_as_series_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_1_{trim=False}::test_as_series_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_1_{trim=False}::test_as_series_nocommon_types | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_1_{trim=False}::test_as_series_trailing_zeros | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestAsSeries_param_1_{trim=False}::test_as_series_zeros | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoef_param_0_{tol=0}::test_trimcoef | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoef_param_0_{tol=0}::test_trimcoef_almost_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoef_param_0_{tol=0}::test_trimcoef_diff_types | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoef_param_0_{tol=0}::test_trimcoef_trailing_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoef_param_0_{tol=0}::test_trimcoef_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoef_param_0_{tol=0}::test_trimcoef_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoef_param_1_{tol=0.001}::test_trimcoef | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoef_param_1_{tol=0.001}::test_trimcoef_almost_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoef_param_1_{tol=0.001}::test_trimcoef_diff_types | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoef_param_1_{tol=0.001}::test_trimcoef_trailing_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoef_param_1_{tol=0.001}::test_trimcoef_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoef_param_1_{tol=0.001}::test_trimcoef_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimseq::test_trimseq | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimseq::test_trimseq_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimseq::test_trimseq_trailing_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimseq::test_trimseq_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimseq::test_trimseq_zeros | 7.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimseq::test_trimseq_zerosize | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoefInvalid::test_trimcoef_bool | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoefInvalid::test_trimcoef_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoefInvalid::test_trimcoef_neg_tol | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/polynomial_tests/test_polyutils.py::TestTrimcoefInvalid::test_trimcoef_zero_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/prof_tests/test_range.py::TestTimeRange::test_TimeRangeDecorator | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/prof_tests/test_range.py::TestTimeRange::test_TimeRangeDecorator_err | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/prof_tests/test_range.py::TestTimeRange::test_TimeRangeDecorator_with_ARGB | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/prof_tests/test_range.py::TestTimeRange::test_time_range | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/prof_tests/test_range.py::TestTimeRange::test_time_range_err | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/prof_tests/test_range.py::TestTimeRange::test_time_range_with_ARGB | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/prof_tests/test_range.py::TestTimeRangeNVTXUnavailable::test_time_range | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/prof_tests/test_range.py::TestTimeRangeNVTXUnavailable::test_time_range_decorator | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_0_{a_shape=(), b_shape=(), dtype=float64, shape=(4, 3, 2)}] | 5.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_1_{a_shape=(), b_shape=(), dtype=float64, shape=(3, 2)}] | 5.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_2_{a_shape=(), b_shape=(), dtype=float32, shape=(4, 3, 2)}] | 5.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_3_{a_shape=(), b_shape=(), dtype=float32, shape=(3, 2)}] | 5.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_4_{a_shape=(), b_shape=(), dtype=float16, shape=(4, 3, 2)}] | 5.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_5_{a_shape=(), b_shape=(), dtype=float16, shape=(3, 2)}] | 5.99 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_6_{a_shape=(), b_shape=(3, 2), dtype=float64, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_7_{a_shape=(), b_shape=(3, 2), dtype=float64, shape=(3, 2)}] | 5.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_8_{a_shape=(), b_shape=(3, 2), dtype=float32, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_9_{a_shape=(), b_shape=(3, 2), dtype=float32, shape=(3, 2)}] | 5.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_10_{a_shape=(), b_shape=(3, 2), dtype=float16, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_11_{a_shape=(), b_shape=(3, 2), dtype=float16, shape=(3, 2)}] | 5.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_12_{a_shape=(3, 2), b_shape=(), dtype=float64, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_13_{a_shape=(3, 2), b_shape=(), dtype=float64, shape=(3, 2)}] | 5.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_14_{a_shape=(3, 2), b_shape=(), dtype=float32, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_15_{a_shape=(3, 2), b_shape=(), dtype=float32, shape=(3, 2)}] | 5.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_16_{a_shape=(3, 2), b_shape=(), dtype=float16, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_17_{a_shape=(3, 2), b_shape=(), dtype=float16, shape=(3, 2)}] | 5.95 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_18_{a_shape=(3, 2), b_shape=(3, 2), dtype=float64, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_19_{a_shape=(3, 2), b_shape=(3, 2), dtype=float64, shape=(3, 2)}] | 5.61 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_20_{a_shape=(3, 2), b_shape=(3, 2), dtype=float32, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_21_{a_shape=(3, 2), b_shape=(3, 2), dtype=float32, shape=(3, 2)}] | 5.60 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_22_{a_shape=(3, 2), b_shape=(3, 2), dtype=float16, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBeta::test_beta[_param_23_{a_shape=(3, 2), b_shape=(3, 2), dtype=float16, shape=(3, 2)}] | 5.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_0_{dtype=int8, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 12.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_1_{dtype=int8, n_shape=(), p_shape=(), shape=(3, 2)}] | 12.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_2_{dtype=int8, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_3_{dtype=int8, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 12.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_4_{dtype=int8, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_5_{dtype=int8, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 12.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_6_{dtype=int8, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_7_{dtype=int8, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 12.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_8_{dtype=int16, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 12.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_9_{dtype=int16, n_shape=(), p_shape=(), shape=(3, 2)}] | 12.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_10_{dtype=int16, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_11_{dtype=int16, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 12.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_12_{dtype=int16, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_13_{dtype=int16, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 12.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_14_{dtype=int16, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_15_{dtype=int16, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 12.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_16_{dtype=int32, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 12.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_17_{dtype=int32, n_shape=(), p_shape=(), shape=(3, 2)}] | 12.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_18_{dtype=int32, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_19_{dtype=int32, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 12.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_20_{dtype=int32, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_21_{dtype=int32, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 12.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_22_{dtype=int32, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_23_{dtype=int32, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 12.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_24_{dtype=int64, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 12.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_25_{dtype=int64, n_shape=(), p_shape=(), shape=(3, 2)}] | 12.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_26_{dtype=int64, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_27_{dtype=int64, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 12.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_28_{dtype=int64, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_29_{dtype=int64, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 12.74 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_30_{dtype=int64, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_31_{dtype=int64, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 12.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_32_{dtype=longlong, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_33_{dtype=longlong, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_34_{dtype=longlong, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_35_{dtype=longlong, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_36_{dtype=longlong, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_37_{dtype=longlong, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_38_{dtype=longlong, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_39_{dtype=longlong, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_40_{dtype=uint8, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 12.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_41_{dtype=uint8, n_shape=(), p_shape=(), shape=(3, 2)}] | 12.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_42_{dtype=uint8, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_43_{dtype=uint8, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 12.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_44_{dtype=uint8, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_45_{dtype=uint8, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 12.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_46_{dtype=uint8, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_47_{dtype=uint8, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 12.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_48_{dtype=uint16, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 12.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_49_{dtype=uint16, n_shape=(), p_shape=(), shape=(3, 2)}] | 12.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_50_{dtype=uint16, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_51_{dtype=uint16, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 12.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_52_{dtype=uint16, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_53_{dtype=uint16, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 12.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_54_{dtype=uint16, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_55_{dtype=uint16, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 12.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_56_{dtype=uint32, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 12.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_57_{dtype=uint32, n_shape=(), p_shape=(), shape=(3, 2)}] | 12.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_58_{dtype=uint32, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_59_{dtype=uint32, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 12.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_60_{dtype=uint32, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_61_{dtype=uint32, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 12.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_62_{dtype=uint32, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_63_{dtype=uint32, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 12.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_64_{dtype=uint64, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 12.31 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_65_{dtype=uint64, n_shape=(), p_shape=(), shape=(3, 2)}] | 12.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_66_{dtype=uint64, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_67_{dtype=uint64, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 12.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_68_{dtype=uint64, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_69_{dtype=uint64, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 12.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_70_{dtype=uint64, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_71_{dtype=uint64, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 12.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_72_{dtype=ulonglong, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_73_{dtype=ulonglong, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_74_{dtype=ulonglong, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_75_{dtype=ulonglong, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_76_{dtype=ulonglong, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_77_{dtype=ulonglong, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_78_{dtype=ulonglong, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsBinomial::test_binomial[_param_79_{dtype=ulonglong, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsChisquare::test_chisquare[_param_0_{df_shape=(), shape=(4, 3, 2)}] | 7.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsChisquare::test_chisquare[_param_1_{df_shape=(), shape=(3, 2)}] | 7.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsChisquare::test_chisquare[_param_2_{df_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsChisquare::test_chisquare[_param_3_{df_shape=(3, 2), shape=(3, 2)}] | 7.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsDirichlet::test_dirichlet[_param_0_{alpha_shape=(3,), shape=(4, 3, 2, 3)}] | 4.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsDirichlet::test_dirichlet[_param_1_{alpha_shape=(3,), shape=(3, 2, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsExponential::test_exponential[_param_0_{scale_shape=(), shape=(4, 3, 2)}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsExponential::test_exponential[_param_1_{scale_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsExponential::test_exponential[_param_2_{scale_shape=(), shape=None}] | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsExponential::test_exponential[_param_3_{scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsExponential::test_exponential[_param_4_{scale_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsExponential::test_exponential[_param_5_{scale_shape=(3, 2), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsExponentialError::test_negative_scale | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_0_{dfden_shape=(), dfnum_shape=(), dtype=float64, shape=(4, 3, 2)}] | 8.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_1_{dfden_shape=(), dfnum_shape=(), dtype=float64, shape=(3, 2)}] | 8.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_2_{dfden_shape=(), dfnum_shape=(), dtype=float32, shape=(4, 3, 2)}] | 8.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_3_{dfden_shape=(), dfnum_shape=(), dtype=float32, shape=(3, 2)}] | 8.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_4_{dfden_shape=(), dfnum_shape=(), dtype=float16, shape=(4, 3, 2)}] | 8.64 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_5_{dfden_shape=(), dfnum_shape=(), dtype=float16, shape=(3, 2)}] | 8.90 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_6_{dfden_shape=(), dfnum_shape=(3, 2), dtype=float64, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_7_{dfden_shape=(), dfnum_shape=(3, 2), dtype=float64, shape=(3, 2)}] | 8.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_8_{dfden_shape=(), dfnum_shape=(3, 2), dtype=float32, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_9_{dfden_shape=(), dfnum_shape=(3, 2), dtype=float32, shape=(3, 2)}] | 8.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_10_{dfden_shape=(), dfnum_shape=(3, 2), dtype=float16, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_11_{dfden_shape=(), dfnum_shape=(3, 2), dtype=float16, shape=(3, 2)}] | 8.90 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_12_{dfden_shape=(3, 2), dfnum_shape=(), dtype=float64, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_13_{dfden_shape=(3, 2), dfnum_shape=(), dtype=float64, shape=(3, 2)}] | 8.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_14_{dfden_shape=(3, 2), dfnum_shape=(), dtype=float32, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_15_{dfden_shape=(3, 2), dfnum_shape=(), dtype=float32, shape=(3, 2)}] | 8.90 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_16_{dfden_shape=(3, 2), dfnum_shape=(), dtype=float16, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_17_{dfden_shape=(3, 2), dfnum_shape=(), dtype=float16, shape=(3, 2)}] | 8.94 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_18_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=float64, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_19_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=float64, shape=(3, 2)}] | 8.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_20_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=float32, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_21_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=float32, shape=(3, 2)}] | 8.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_22_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=float16, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsF::test_f[_param_23_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=float16, shape=(3, 2)}] | 8.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_0_{dtype=float64, scale_shape=(), shape=(4, 3, 2), shape_shape=()}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_1_{dtype=float64, scale_shape=(), shape=(4, 3, 2), shape_shape=(3, 2)}] | 1.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_2_{dtype=float64, scale_shape=(), shape=(3, 2), shape_shape=()}] | 1.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_3_{dtype=float64, scale_shape=(), shape=(3, 2), shape_shape=(3, 2)}] | 2.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_4_{dtype=float64, scale_shape=(), shape=None, shape_shape=()}] | 2.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_5_{dtype=float64, scale_shape=(), shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_6_{dtype=float64, scale_shape=(3, 2), shape=(4, 3, 2), shape_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_7_{dtype=float64, scale_shape=(3, 2), shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_8_{dtype=float64, scale_shape=(3, 2), shape=(3, 2), shape_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_9_{dtype=float64, scale_shape=(3, 2), shape=(3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_10_{dtype=float64, scale_shape=(3, 2), shape=None, shape_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_11_{dtype=float64, scale_shape=(3, 2), shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_12_{dtype=float32, scale_shape=(), shape=(4, 3, 2), shape_shape=()}] | 3.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_13_{dtype=float32, scale_shape=(), shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_14_{dtype=float32, scale_shape=(), shape=(3, 2), shape_shape=()}] | 1.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_15_{dtype=float32, scale_shape=(), shape=(3, 2), shape_shape=(3, 2)}] | 2.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_16_{dtype=float32, scale_shape=(), shape=None, shape_shape=()}] | 3.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_17_{dtype=float32, scale_shape=(), shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_18_{dtype=float32, scale_shape=(3, 2), shape=(4, 3, 2), shape_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_19_{dtype=float32, scale_shape=(3, 2), shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_20_{dtype=float32, scale_shape=(3, 2), shape=(3, 2), shape_shape=()}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_21_{dtype=float32, scale_shape=(3, 2), shape=(3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_22_{dtype=float32, scale_shape=(3, 2), shape=None, shape_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_23_{dtype=float32, scale_shape=(3, 2), shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_24_{dtype=float16, scale_shape=(), shape=(4, 3, 2), shape_shape=()}] | 3.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_25_{dtype=float16, scale_shape=(), shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_26_{dtype=float16, scale_shape=(), shape=(3, 2), shape_shape=()}] | 1.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_27_{dtype=float16, scale_shape=(), shape=(3, 2), shape_shape=(3, 2)}] | 2.46 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_28_{dtype=float16, scale_shape=(), shape=None, shape_shape=()}] | 3.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_29_{dtype=float16, scale_shape=(), shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_30_{dtype=float16, scale_shape=(3, 2), shape=(4, 3, 2), shape_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_31_{dtype=float16, scale_shape=(3, 2), shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_32_{dtype=float16, scale_shape=(3, 2), shape=(3, 2), shape_shape=()}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_33_{dtype=float16, scale_shape=(3, 2), shape=(3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_34_{dtype=float16, scale_shape=(3, 2), shape=None, shape_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGamma::test_gamma_legacy[_param_35_{dtype=float16, scale_shape=(3, 2), shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_0_{dtype=int8, p_shape=(), shape=(4, 3, 2)}] | 2.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_1_{dtype=int8, p_shape=(), shape=(3, 2)}] | 2.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_2_{dtype=int8, p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_3_{dtype=int8, p_shape=(3, 2), shape=(3, 2)}] | 2.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_4_{dtype=int16, p_shape=(), shape=(4, 3, 2)}] | 2.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_5_{dtype=int16, p_shape=(), shape=(3, 2)}] | 2.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_6_{dtype=int16, p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_7_{dtype=int16, p_shape=(3, 2), shape=(3, 2)}] | 2.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_8_{dtype=int32, p_shape=(), shape=(4, 3, 2)}] | 2.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_9_{dtype=int32, p_shape=(), shape=(3, 2)}] | 2.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_10_{dtype=int32, p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_11_{dtype=int32, p_shape=(3, 2), shape=(3, 2)}] | 2.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_12_{dtype=int64, p_shape=(), shape=(4, 3, 2)}] | 2.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_13_{dtype=int64, p_shape=(), shape=(3, 2)}] | 2.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_14_{dtype=int64, p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_15_{dtype=int64, p_shape=(3, 2), shape=(3, 2)}] | 2.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_16_{dtype=longlong, p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_17_{dtype=longlong, p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_18_{dtype=longlong, p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_19_{dtype=longlong, p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_20_{dtype=uint8, p_shape=(), shape=(4, 3, 2)}] | 2.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_21_{dtype=uint8, p_shape=(), shape=(3, 2)}] | 2.18 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_22_{dtype=uint8, p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_23_{dtype=uint8, p_shape=(3, 2), shape=(3, 2)}] | 2.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_24_{dtype=uint16, p_shape=(), shape=(4, 3, 2)}] | 2.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_25_{dtype=uint16, p_shape=(), shape=(3, 2)}] | 2.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_26_{dtype=uint16, p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_27_{dtype=uint16, p_shape=(3, 2), shape=(3, 2)}] | 2.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_28_{dtype=uint32, p_shape=(), shape=(4, 3, 2)}] | 2.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_29_{dtype=uint32, p_shape=(), shape=(3, 2)}] | 2.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_30_{dtype=uint32, p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_31_{dtype=uint32, p_shape=(3, 2), shape=(3, 2)}] | 2.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_32_{dtype=uint64, p_shape=(), shape=(4, 3, 2)}] | 2.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_33_{dtype=uint64, p_shape=(), shape=(3, 2)}] | 2.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_34_{dtype=uint64, p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_35_{dtype=uint64, p_shape=(3, 2), shape=(3, 2)}] | 2.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_36_{dtype=ulonglong, p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_37_{dtype=ulonglong, p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_38_{dtype=ulonglong, p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGeometric::test_geometric[_param_39_{dtype=ulonglong, p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGumbel::test_gumbel[_param_0_{loc_shape=(), scale_shape=(), shape=(4, 3, 2)}] | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGumbel::test_gumbel[_param_1_{loc_shape=(), scale_shape=(), shape=(3, 2)}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGumbel::test_gumbel[_param_2_{loc_shape=(), scale_shape=(), shape=None}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGumbel::test_gumbel[_param_3_{loc_shape=(), scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGumbel::test_gumbel[_param_4_{loc_shape=(), scale_shape=(3, 2), shape=(3, 2)}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGumbel::test_gumbel[_param_5_{loc_shape=(), scale_shape=(3, 2), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGumbel::test_gumbel[_param_6_{loc_shape=(3, 2), scale_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGumbel::test_gumbel[_param_7_{loc_shape=(3, 2), scale_shape=(), shape=(3, 2)}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGumbel::test_gumbel[_param_8_{loc_shape=(3, 2), scale_shape=(), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGumbel::test_gumbel[_param_9_{loc_shape=(3, 2), scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGumbel::test_gumbel[_param_10_{loc_shape=(3, 2), scale_shape=(3, 2), shape=(3, 2)}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsGumbel::test_gumbel[_param_11_{loc_shape=(3, 2), scale_shape=(3, 2), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_0_{dtype=int32, nbad_shape=(), ngood_shape=(), nsample_dtype=int32, nsample_shape=(), shape=(4, 3, 2)}] | 3.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_1_{dtype=int32, nbad_shape=(), ngood_shape=(), nsample_dtype=int32, nsample_shape=(), shape=(3, 2)}] | 3.84 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_2_{dtype=int32, nbad_shape=(), ngood_shape=(), nsample_dtype=int32, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_3_{dtype=int32, nbad_shape=(), ngood_shape=(), nsample_dtype=int32, nsample_shape=(3, 2), shape=(3, 2)}] | 3.84 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_4_{dtype=int32, nbad_shape=(), ngood_shape=(), nsample_dtype=int64, nsample_shape=(), shape=(4, 3, 2)}] | 3.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_5_{dtype=int32, nbad_shape=(), ngood_shape=(), nsample_dtype=int64, nsample_shape=(), shape=(3, 2)}] | 3.84 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_6_{dtype=int32, nbad_shape=(), ngood_shape=(), nsample_dtype=int64, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_7_{dtype=int32, nbad_shape=(), ngood_shape=(), nsample_dtype=int64, nsample_shape=(3, 2), shape=(3, 2)}] | 3.85 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_8_{dtype=int32, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_9_{dtype=int32, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(), shape=(3, 2)}] | 3.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_10_{dtype=int32, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_11_{dtype=int32, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(3, 2), shape=(3, 2)}] | 3.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_12_{dtype=int32, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_13_{dtype=int32, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(), shape=(3, 2)}] | 3.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_14_{dtype=int32, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_15_{dtype=int32, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(3, 2), shape=(3, 2)}] | 3.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_16_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int32, nsample_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_17_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int32, nsample_shape=(), shape=(3, 2)}] | 3.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_18_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int32, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_19_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int32, nsample_shape=(3, 2), shape=(3, 2)}] | 3.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_20_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int64, nsample_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_21_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int64, nsample_shape=(), shape=(3, 2)}] | 3.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_22_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int64, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_23_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int64, nsample_shape=(3, 2), shape=(3, 2)}] | 3.87 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_24_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_25_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(), shape=(3, 2)}] | 3.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_26_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_27_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(3, 2), shape=(3, 2)}] | 3.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_28_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_29_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(), shape=(3, 2)}] | 3.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_30_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_31_{dtype=int32, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(3, 2), shape=(3, 2)}] | 3.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_32_{dtype=int64, nbad_shape=(), ngood_shape=(), nsample_dtype=int32, nsample_shape=(), shape=(4, 3, 2)}] | 3.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_33_{dtype=int64, nbad_shape=(), ngood_shape=(), nsample_dtype=int32, nsample_shape=(), shape=(3, 2)}] | 3.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_34_{dtype=int64, nbad_shape=(), ngood_shape=(), nsample_dtype=int32, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_35_{dtype=int64, nbad_shape=(), ngood_shape=(), nsample_dtype=int32, nsample_shape=(3, 2), shape=(3, 2)}] | 3.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_36_{dtype=int64, nbad_shape=(), ngood_shape=(), nsample_dtype=int64, nsample_shape=(), shape=(4, 3, 2)}] | 3.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_37_{dtype=int64, nbad_shape=(), ngood_shape=(), nsample_dtype=int64, nsample_shape=(), shape=(3, 2)}] | 3.90 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_38_{dtype=int64, nbad_shape=(), ngood_shape=(), nsample_dtype=int64, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_39_{dtype=int64, nbad_shape=(), ngood_shape=(), nsample_dtype=int64, nsample_shape=(3, 2), shape=(3, 2)}] | 3.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_40_{dtype=int64, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_41_{dtype=int64, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(), shape=(3, 2)}] | 3.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_42_{dtype=int64, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_43_{dtype=int64, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(3, 2), shape=(3, 2)}] | 3.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_44_{dtype=int64, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_45_{dtype=int64, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(), shape=(3, 2)}] | 3.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_46_{dtype=int64, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_47_{dtype=int64, nbad_shape=(), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(3, 2), shape=(3, 2)}] | 3.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_48_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int32, nsample_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_49_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int32, nsample_shape=(), shape=(3, 2)}] | 3.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_50_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int32, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_51_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int32, nsample_shape=(3, 2), shape=(3, 2)}] | 3.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_52_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int64, nsample_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_53_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int64, nsample_shape=(), shape=(3, 2)}] | 3.90 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_54_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int64, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_55_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(), nsample_dtype=int64, nsample_shape=(3, 2), shape=(3, 2)}] | 3.90 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_56_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_57_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(), shape=(3, 2)}] | 3.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_58_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_59_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int32, nsample_shape=(3, 2), shape=(3, 2)}] | 3.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_60_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_61_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(), shape=(3, 2)}] | 3.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_62_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsHyperGeometric::test_hypergeometric[_param_63_{dtype=int64, nbad_shape=(3, 2), ngood_shape=(3, 2), nsample_dtype=int64, nsample_shape=(3, 2), shape=(3, 2)}] | 3.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsuLaplace::test_laplace[_param_0_{loc_shape=(), scale_shape=(), shape=(4, 3, 2)}] | 1.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsuLaplace::test_laplace[_param_1_{loc_shape=(), scale_shape=(), shape=(3, 2)}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsuLaplace::test_laplace[_param_2_{loc_shape=(), scale_shape=(), shape=None}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsuLaplace::test_laplace[_param_3_{loc_shape=(), scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsuLaplace::test_laplace[_param_4_{loc_shape=(), scale_shape=(3, 2), shape=(3, 2)}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsuLaplace::test_laplace[_param_5_{loc_shape=(), scale_shape=(3, 2), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsuLaplace::test_laplace[_param_6_{loc_shape=(3, 2), scale_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsuLaplace::test_laplace[_param_7_{loc_shape=(3, 2), scale_shape=(), shape=(3, 2)}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsuLaplace::test_laplace[_param_8_{loc_shape=(3, 2), scale_shape=(), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsuLaplace::test_laplace[_param_9_{loc_shape=(3, 2), scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsuLaplace::test_laplace[_param_10_{loc_shape=(3, 2), scale_shape=(3, 2), shape=(3, 2)}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsuLaplace::test_laplace[_param_11_{loc_shape=(3, 2), scale_shape=(3, 2), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLogistic::test_logistic[_param_0_{loc_shape=(), scale_shape=(), shape=(4, 3, 2)}] | 3.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLogistic::test_logistic[_param_1_{loc_shape=(), scale_shape=(), shape=(3, 2)}] | 2.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLogistic::test_logistic[_param_2_{loc_shape=(), scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLogistic::test_logistic[_param_3_{loc_shape=(), scale_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLogistic::test_logistic[_param_4_{loc_shape=(3, 2), scale_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLogistic::test_logistic[_param_5_{loc_shape=(3, 2), scale_shape=(), shape=(3, 2)}] | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLogistic::test_logistic[_param_6_{loc_shape=(3, 2), scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLogistic::test_logistic[_param_7_{loc_shape=(3, 2), scale_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLognormal::test_lognormal[_param_0_{mean_shape=(), shape=(4, 3, 2), sigma_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLognormal::test_lognormal[_param_1_{mean_shape=(), shape=(4, 3, 2), sigma_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLognormal::test_lognormal[_param_2_{mean_shape=(), shape=(3, 2), sigma_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLognormal::test_lognormal[_param_3_{mean_shape=(), shape=(3, 2), sigma_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLognormal::test_lognormal[_param_4_{mean_shape=(), shape=None, sigma_shape=()}] | 2.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLognormal::test_lognormal[_param_5_{mean_shape=(), shape=None, sigma_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLognormal::test_lognormal[_param_6_{mean_shape=(3, 2), shape=(4, 3, 2), sigma_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLognormal::test_lognormal[_param_7_{mean_shape=(3, 2), shape=(4, 3, 2), sigma_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLognormal::test_lognormal[_param_8_{mean_shape=(3, 2), shape=(3, 2), sigma_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLognormal::test_lognormal[_param_9_{mean_shape=(3, 2), shape=(3, 2), sigma_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLognormal::test_lognormal[_param_10_{mean_shape=(3, 2), shape=None, sigma_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLognormal::test_lognormal[_param_11_{mean_shape=(3, 2), shape=None, sigma_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLogseries::test_logseries[_param_0_{p_shape=(), shape=(4, 3, 2)}] | 5.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLogseries::test_logseries[_param_1_{p_shape=(), shape=(3, 2)}] | 2.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLogseries::test_logseries_for_invalid_p[_param_0_{p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsLogseries::test_logseries_for_invalid_p[_param_1_{p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsMultivariateNormal::test_normal[_param_0_{d=2, shape=(4, 3, 2)}] | 1.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsMultivariateNormal::test_normal[_param_1_{d=2, shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsMultivariateNormal::test_normal[_param_2_{d=4, shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsMultivariateNormal::test_normal[_param_3_{d=4, shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_0_{dtype=int8, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 4.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_1_{dtype=int8, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_2_{dtype=int8, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_3_{dtype=int8, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_4_{dtype=int8, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_5_{dtype=int8, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_6_{dtype=int8, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_7_{dtype=int8, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_8_{dtype=int16, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_9_{dtype=int16, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_10_{dtype=int16, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_11_{dtype=int16, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_12_{dtype=int16, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_13_{dtype=int16, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_14_{dtype=int16, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_15_{dtype=int16, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_16_{dtype=int32, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_17_{dtype=int32, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_18_{dtype=int32, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_19_{dtype=int32, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_20_{dtype=int32, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_21_{dtype=int32, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_22_{dtype=int32, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_23_{dtype=int32, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_24_{dtype=int64, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_25_{dtype=int64, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_26_{dtype=int64, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_27_{dtype=int64, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_28_{dtype=int64, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_29_{dtype=int64, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_30_{dtype=int64, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_31_{dtype=int64, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_32_{dtype=longlong, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_33_{dtype=longlong, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_34_{dtype=longlong, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_35_{dtype=longlong, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_36_{dtype=longlong, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_37_{dtype=longlong, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_38_{dtype=longlong, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_39_{dtype=longlong, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_40_{dtype=uint8, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_41_{dtype=uint8, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_42_{dtype=uint8, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_43_{dtype=uint8, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_44_{dtype=uint8, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_45_{dtype=uint8, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_46_{dtype=uint8, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_47_{dtype=uint8, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_48_{dtype=uint16, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_49_{dtype=uint16, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_50_{dtype=uint16, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_51_{dtype=uint16, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_52_{dtype=uint16, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_53_{dtype=uint16, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_54_{dtype=uint16, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_55_{dtype=uint16, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_56_{dtype=uint32, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_57_{dtype=uint32, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_58_{dtype=uint32, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_59_{dtype=uint32, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_60_{dtype=uint32, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_61_{dtype=uint32, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_62_{dtype=uint32, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_63_{dtype=uint32, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_64_{dtype=uint64, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_65_{dtype=uint64, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_66_{dtype=uint64, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_67_{dtype=uint64, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_68_{dtype=uint64, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_69_{dtype=uint64, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_70_{dtype=uint64, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_71_{dtype=uint64, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_72_{dtype=ulonglong, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_73_{dtype=ulonglong, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_74_{dtype=ulonglong, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_75_{dtype=ulonglong, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_76_{dtype=ulonglong, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_77_{dtype=ulonglong, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_78_{dtype=ulonglong, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial[_param_79_{dtype=ulonglong, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_0_{dtype=int8, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_1_{dtype=int8, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_2_{dtype=int8, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_3_{dtype=int8, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_4_{dtype=int8, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_5_{dtype=int8, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_6_{dtype=int8, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_7_{dtype=int8, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_8_{dtype=int16, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_9_{dtype=int16, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_10_{dtype=int16, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_11_{dtype=int16, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_12_{dtype=int16, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_13_{dtype=int16, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_14_{dtype=int16, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_15_{dtype=int16, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_16_{dtype=int32, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_17_{dtype=int32, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_18_{dtype=int32, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_19_{dtype=int32, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_20_{dtype=int32, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_21_{dtype=int32, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_22_{dtype=int32, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_23_{dtype=int32, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_24_{dtype=int64, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_25_{dtype=int64, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_26_{dtype=int64, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_27_{dtype=int64, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_28_{dtype=int64, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_29_{dtype=int64, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_30_{dtype=int64, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_31_{dtype=int64, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_32_{dtype=longlong, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_33_{dtype=longlong, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_34_{dtype=longlong, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_35_{dtype=longlong, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_36_{dtype=longlong, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_37_{dtype=longlong, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_38_{dtype=longlong, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_39_{dtype=longlong, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_40_{dtype=uint8, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_41_{dtype=uint8, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_42_{dtype=uint8, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_43_{dtype=uint8, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_44_{dtype=uint8, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_45_{dtype=uint8, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_46_{dtype=uint8, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_47_{dtype=uint8, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_48_{dtype=uint16, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_49_{dtype=uint16, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_50_{dtype=uint16, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_51_{dtype=uint16, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_52_{dtype=uint16, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_53_{dtype=uint16, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_54_{dtype=uint16, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_55_{dtype=uint16, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_56_{dtype=uint32, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_57_{dtype=uint32, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_58_{dtype=uint32, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_59_{dtype=uint32, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_60_{dtype=uint32, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_61_{dtype=uint32, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_62_{dtype=uint32, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_63_{dtype=uint32, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_64_{dtype=uint64, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_65_{dtype=uint64, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_66_{dtype=uint64, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_67_{dtype=uint64, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_68_{dtype=uint64, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_69_{dtype=uint64, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_70_{dtype=uint64, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_71_{dtype=uint64, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_72_{dtype=ulonglong, n_shape=(), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_73_{dtype=ulonglong, n_shape=(), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_74_{dtype=ulonglong, n_shape=(), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_75_{dtype=ulonglong, n_shape=(), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_76_{dtype=ulonglong, n_shape=(3, 2), p_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_77_{dtype=ulonglong, n_shape=(3, 2), p_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_78_{dtype=ulonglong, n_shape=(3, 2), p_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNegativeBinomial::test_negative_binomial_for_noninteger_n[_param_79_{dtype=ulonglong, n_shape=(3, 2), p_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_0_{df_shape=(), dtype=int8, nonc_shape=(), shape=(4, 3, 2)}] | 2.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_1_{df_shape=(), dtype=int8, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_2_{df_shape=(), dtype=int8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_3_{df_shape=(), dtype=int8, nonc_shape=(3, 2), shape=(3, 2)}] | 2.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_4_{df_shape=(), dtype=int16, nonc_shape=(), shape=(4, 3, 2)}] | 2.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_5_{df_shape=(), dtype=int16, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_6_{df_shape=(), dtype=int16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_7_{df_shape=(), dtype=int16, nonc_shape=(3, 2), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_8_{df_shape=(), dtype=int32, nonc_shape=(), shape=(4, 3, 2)}] | 2.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_9_{df_shape=(), dtype=int32, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_10_{df_shape=(), dtype=int32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_11_{df_shape=(), dtype=int32, nonc_shape=(3, 2), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_12_{df_shape=(), dtype=int64, nonc_shape=(), shape=(4, 3, 2)}] | 2.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_13_{df_shape=(), dtype=int64, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_14_{df_shape=(), dtype=int64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_15_{df_shape=(), dtype=int64, nonc_shape=(3, 2), shape=(3, 2)}] | 2.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_16_{df_shape=(), dtype=longlong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_17_{df_shape=(), dtype=longlong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_18_{df_shape=(), dtype=longlong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_19_{df_shape=(), dtype=longlong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_20_{df_shape=(), dtype=uint8, nonc_shape=(), shape=(4, 3, 2)}] | 2.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_21_{df_shape=(), dtype=uint8, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_22_{df_shape=(), dtype=uint8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_23_{df_shape=(), dtype=uint8, nonc_shape=(3, 2), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_24_{df_shape=(), dtype=uint16, nonc_shape=(), shape=(4, 3, 2)}] | 2.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_25_{df_shape=(), dtype=uint16, nonc_shape=(), shape=(3, 2)}] | 2.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_26_{df_shape=(), dtype=uint16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_27_{df_shape=(), dtype=uint16, nonc_shape=(3, 2), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_28_{df_shape=(), dtype=uint32, nonc_shape=(), shape=(4, 3, 2)}] | 2.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_29_{df_shape=(), dtype=uint32, nonc_shape=(), shape=(3, 2)}] | 2.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_30_{df_shape=(), dtype=uint32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_31_{df_shape=(), dtype=uint32, nonc_shape=(3, 2), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_32_{df_shape=(), dtype=uint64, nonc_shape=(), shape=(4, 3, 2)}] | 2.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_33_{df_shape=(), dtype=uint64, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_34_{df_shape=(), dtype=uint64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_35_{df_shape=(), dtype=uint64, nonc_shape=(3, 2), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_36_{df_shape=(), dtype=ulonglong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_37_{df_shape=(), dtype=ulonglong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_38_{df_shape=(), dtype=ulonglong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_39_{df_shape=(), dtype=ulonglong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_40_{df_shape=(3, 2), dtype=int8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_41_{df_shape=(3, 2), dtype=int8, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_42_{df_shape=(3, 2), dtype=int8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_43_{df_shape=(3, 2), dtype=int8, nonc_shape=(3, 2), shape=(3, 2)}] | 2.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_44_{df_shape=(3, 2), dtype=int16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_45_{df_shape=(3, 2), dtype=int16, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_46_{df_shape=(3, 2), dtype=int16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_47_{df_shape=(3, 2), dtype=int16, nonc_shape=(3, 2), shape=(3, 2)}] | 2.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_48_{df_shape=(3, 2), dtype=int32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_49_{df_shape=(3, 2), dtype=int32, nonc_shape=(), shape=(3, 2)}] | 2.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_50_{df_shape=(3, 2), dtype=int32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_51_{df_shape=(3, 2), dtype=int32, nonc_shape=(3, 2), shape=(3, 2)}] | 2.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_52_{df_shape=(3, 2), dtype=int64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_53_{df_shape=(3, 2), dtype=int64, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_54_{df_shape=(3, 2), dtype=int64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_55_{df_shape=(3, 2), dtype=int64, nonc_shape=(3, 2), shape=(3, 2)}] | 2.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_56_{df_shape=(3, 2), dtype=longlong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_57_{df_shape=(3, 2), dtype=longlong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_58_{df_shape=(3, 2), dtype=longlong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_59_{df_shape=(3, 2), dtype=longlong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_60_{df_shape=(3, 2), dtype=uint8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_61_{df_shape=(3, 2), dtype=uint8, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_62_{df_shape=(3, 2), dtype=uint8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_63_{df_shape=(3, 2), dtype=uint8, nonc_shape=(3, 2), shape=(3, 2)}] | 2.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_64_{df_shape=(3, 2), dtype=uint16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_65_{df_shape=(3, 2), dtype=uint16, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_66_{df_shape=(3, 2), dtype=uint16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_67_{df_shape=(3, 2), dtype=uint16, nonc_shape=(3, 2), shape=(3, 2)}] | 2.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_68_{df_shape=(3, 2), dtype=uint32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_69_{df_shape=(3, 2), dtype=uint32, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_70_{df_shape=(3, 2), dtype=uint32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_71_{df_shape=(3, 2), dtype=uint32, nonc_shape=(3, 2), shape=(3, 2)}] | 2.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_72_{df_shape=(3, 2), dtype=uint64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_73_{df_shape=(3, 2), dtype=uint64, nonc_shape=(), shape=(3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_74_{df_shape=(3, 2), dtype=uint64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_75_{df_shape=(3, 2), dtype=uint64, nonc_shape=(3, 2), shape=(3, 2)}] | 2.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_76_{df_shape=(3, 2), dtype=ulonglong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_77_{df_shape=(3, 2), dtype=ulonglong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_78_{df_shape=(3, 2), dtype=ulonglong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare[_param_79_{df_shape=(3, 2), dtype=ulonglong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_0_{df_shape=(), dtype=int8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_1_{df_shape=(), dtype=int8, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_2_{df_shape=(), dtype=int8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_3_{df_shape=(), dtype=int8, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_4_{df_shape=(), dtype=int16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_5_{df_shape=(), dtype=int16, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_6_{df_shape=(), dtype=int16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_7_{df_shape=(), dtype=int16, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_8_{df_shape=(), dtype=int32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_9_{df_shape=(), dtype=int32, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_10_{df_shape=(), dtype=int32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_11_{df_shape=(), dtype=int32, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_12_{df_shape=(), dtype=int64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_13_{df_shape=(), dtype=int64, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_14_{df_shape=(), dtype=int64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_15_{df_shape=(), dtype=int64, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_16_{df_shape=(), dtype=longlong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_17_{df_shape=(), dtype=longlong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_18_{df_shape=(), dtype=longlong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_19_{df_shape=(), dtype=longlong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_20_{df_shape=(), dtype=uint8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_21_{df_shape=(), dtype=uint8, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_22_{df_shape=(), dtype=uint8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_23_{df_shape=(), dtype=uint8, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_24_{df_shape=(), dtype=uint16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_25_{df_shape=(), dtype=uint16, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_26_{df_shape=(), dtype=uint16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_27_{df_shape=(), dtype=uint16, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_28_{df_shape=(), dtype=uint32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_29_{df_shape=(), dtype=uint32, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_30_{df_shape=(), dtype=uint32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_31_{df_shape=(), dtype=uint32, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_32_{df_shape=(), dtype=uint64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_33_{df_shape=(), dtype=uint64, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_34_{df_shape=(), dtype=uint64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_35_{df_shape=(), dtype=uint64, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_36_{df_shape=(), dtype=ulonglong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_37_{df_shape=(), dtype=ulonglong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_38_{df_shape=(), dtype=ulonglong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_39_{df_shape=(), dtype=ulonglong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_40_{df_shape=(3, 2), dtype=int8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_41_{df_shape=(3, 2), dtype=int8, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_42_{df_shape=(3, 2), dtype=int8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_43_{df_shape=(3, 2), dtype=int8, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_44_{df_shape=(3, 2), dtype=int16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_45_{df_shape=(3, 2), dtype=int16, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_46_{df_shape=(3, 2), dtype=int16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_47_{df_shape=(3, 2), dtype=int16, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_48_{df_shape=(3, 2), dtype=int32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_49_{df_shape=(3, 2), dtype=int32, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_50_{df_shape=(3, 2), dtype=int32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_51_{df_shape=(3, 2), dtype=int32, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_52_{df_shape=(3, 2), dtype=int64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_53_{df_shape=(3, 2), dtype=int64, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_54_{df_shape=(3, 2), dtype=int64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_55_{df_shape=(3, 2), dtype=int64, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_56_{df_shape=(3, 2), dtype=longlong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_57_{df_shape=(3, 2), dtype=longlong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_58_{df_shape=(3, 2), dtype=longlong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_59_{df_shape=(3, 2), dtype=longlong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_60_{df_shape=(3, 2), dtype=uint8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_61_{df_shape=(3, 2), dtype=uint8, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_62_{df_shape=(3, 2), dtype=uint8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_63_{df_shape=(3, 2), dtype=uint8, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_64_{df_shape=(3, 2), dtype=uint16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_65_{df_shape=(3, 2), dtype=uint16, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_66_{df_shape=(3, 2), dtype=uint16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_67_{df_shape=(3, 2), dtype=uint16, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_68_{df_shape=(3, 2), dtype=uint32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_69_{df_shape=(3, 2), dtype=uint32, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_70_{df_shape=(3, 2), dtype=uint32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_71_{df_shape=(3, 2), dtype=uint32, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_72_{df_shape=(3, 2), dtype=uint64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_73_{df_shape=(3, 2), dtype=uint64, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_74_{df_shape=(3, 2), dtype=uint64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_75_{df_shape=(3, 2), dtype=uint64, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_76_{df_shape=(3, 2), dtype=ulonglong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_77_{df_shape=(3, 2), dtype=ulonglong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_78_{df_shape=(3, 2), dtype=ulonglong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralChisquare::test_noncentral_chisquare_for_invalid_params[_param_79_{df_shape=(3, 2), dtype=ulonglong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_0_{dfden_shape=(), dfnum_shape=(), dtype=int8, nonc_shape=(), shape=(4, 3, 2)}] | 3.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_1_{dfden_shape=(), dfnum_shape=(), dtype=int8, nonc_shape=(), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_2_{dfden_shape=(), dfnum_shape=(), dtype=int8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_3_{dfden_shape=(), dfnum_shape=(), dtype=int8, nonc_shape=(3, 2), shape=(3, 2)}] | 3.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_4_{dfden_shape=(), dfnum_shape=(), dtype=int16, nonc_shape=(), shape=(4, 3, 2)}] | 3.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_5_{dfden_shape=(), dfnum_shape=(), dtype=int16, nonc_shape=(), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_6_{dfden_shape=(), dfnum_shape=(), dtype=int16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_7_{dfden_shape=(), dfnum_shape=(), dtype=int16, nonc_shape=(3, 2), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_8_{dfden_shape=(), dfnum_shape=(), dtype=int32, nonc_shape=(), shape=(4, 3, 2)}] | 3.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_9_{dfden_shape=(), dfnum_shape=(), dtype=int32, nonc_shape=(), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_10_{dfden_shape=(), dfnum_shape=(), dtype=int32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_11_{dfden_shape=(), dfnum_shape=(), dtype=int32, nonc_shape=(3, 2), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_12_{dfden_shape=(), dfnum_shape=(), dtype=int64, nonc_shape=(), shape=(4, 3, 2)}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_13_{dfden_shape=(), dfnum_shape=(), dtype=int64, nonc_shape=(), shape=(3, 2)}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_14_{dfden_shape=(), dfnum_shape=(), dtype=int64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_15_{dfden_shape=(), dfnum_shape=(), dtype=int64, nonc_shape=(3, 2), shape=(3, 2)}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_16_{dfden_shape=(), dfnum_shape=(), dtype=longlong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_17_{dfden_shape=(), dfnum_shape=(), dtype=longlong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_18_{dfden_shape=(), dfnum_shape=(), dtype=longlong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_19_{dfden_shape=(), dfnum_shape=(), dtype=longlong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_20_{dfden_shape=(), dfnum_shape=(), dtype=uint8, nonc_shape=(), shape=(4, 3, 2)}] | 3.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_21_{dfden_shape=(), dfnum_shape=(), dtype=uint8, nonc_shape=(), shape=(3, 2)}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_22_{dfden_shape=(), dfnum_shape=(), dtype=uint8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_23_{dfden_shape=(), dfnum_shape=(), dtype=uint8, nonc_shape=(3, 2), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_24_{dfden_shape=(), dfnum_shape=(), dtype=uint16, nonc_shape=(), shape=(4, 3, 2)}] | 3.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_25_{dfden_shape=(), dfnum_shape=(), dtype=uint16, nonc_shape=(), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_26_{dfden_shape=(), dfnum_shape=(), dtype=uint16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_27_{dfden_shape=(), dfnum_shape=(), dtype=uint16, nonc_shape=(3, 2), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_28_{dfden_shape=(), dfnum_shape=(), dtype=uint32, nonc_shape=(), shape=(4, 3, 2)}] | 3.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_29_{dfden_shape=(), dfnum_shape=(), dtype=uint32, nonc_shape=(), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_30_{dfden_shape=(), dfnum_shape=(), dtype=uint32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_31_{dfden_shape=(), dfnum_shape=(), dtype=uint32, nonc_shape=(3, 2), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_32_{dfden_shape=(), dfnum_shape=(), dtype=uint64, nonc_shape=(), shape=(4, 3, 2)}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_33_{dfden_shape=(), dfnum_shape=(), dtype=uint64, nonc_shape=(), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_34_{dfden_shape=(), dfnum_shape=(), dtype=uint64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_35_{dfden_shape=(), dfnum_shape=(), dtype=uint64, nonc_shape=(3, 2), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_36_{dfden_shape=(), dfnum_shape=(), dtype=ulonglong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_37_{dfden_shape=(), dfnum_shape=(), dtype=ulonglong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_38_{dfden_shape=(), dfnum_shape=(), dtype=ulonglong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_39_{dfden_shape=(), dfnum_shape=(), dtype=ulonglong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_40_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_41_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_42_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_43_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(3, 2), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_44_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_45_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_46_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_47_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(3, 2), shape=(3, 2)}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_48_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_49_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(), shape=(3, 2)}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_50_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_51_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(3, 2), shape=(3, 2)}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_52_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_53_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_54_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_55_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(3, 2), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_56_{dfden_shape=(), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_57_{dfden_shape=(), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_58_{dfden_shape=(), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_59_{dfden_shape=(), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_60_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_61_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(), shape=(3, 2)}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_62_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_63_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(3, 2), shape=(3, 2)}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_64_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_65_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(), shape=(3, 2)}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_66_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_67_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(3, 2), shape=(3, 2)}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_68_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_69_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(), shape=(3, 2)}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_70_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_71_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(3, 2), shape=(3, 2)}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_72_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_73_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(), shape=(3, 2)}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_74_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_75_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(3, 2), shape=(3, 2)}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_76_{dfden_shape=(), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_77_{dfden_shape=(), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_78_{dfden_shape=(), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_79_{dfden_shape=(), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_80_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_81_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int8, nonc_shape=(), shape=(3, 2)}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_82_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_83_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int8, nonc_shape=(3, 2), shape=(3, 2)}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_84_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_85_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int16, nonc_shape=(), shape=(3, 2)}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_86_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_87_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int16, nonc_shape=(3, 2), shape=(3, 2)}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_88_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_89_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int32, nonc_shape=(), shape=(3, 2)}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_90_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_91_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int32, nonc_shape=(3, 2), shape=(3, 2)}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_92_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_93_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int64, nonc_shape=(), shape=(3, 2)}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_94_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_95_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int64, nonc_shape=(3, 2), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_96_{dfden_shape=(3, 2), dfnum_shape=(), dtype=longlong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_97_{dfden_shape=(3, 2), dfnum_shape=(), dtype=longlong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_98_{dfden_shape=(3, 2), dfnum_shape=(), dtype=longlong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_99_{dfden_shape=(3, 2), dfnum_shape=(), dtype=longlong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_100_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_101_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint8, nonc_shape=(), shape=(3, 2)}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_102_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_103_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint8, nonc_shape=(3, 2), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_104_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_105_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint16, nonc_shape=(), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_106_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_107_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint16, nonc_shape=(3, 2), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_108_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_109_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint32, nonc_shape=(), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_110_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_111_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint32, nonc_shape=(3, 2), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_112_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_113_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint64, nonc_shape=(), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_114_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_115_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint64, nonc_shape=(3, 2), shape=(3, 2)}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_116_{dfden_shape=(3, 2), dfnum_shape=(), dtype=ulonglong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_117_{dfden_shape=(3, 2), dfnum_shape=(), dtype=ulonglong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_118_{dfden_shape=(3, 2), dfnum_shape=(), dtype=ulonglong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_119_{dfden_shape=(3, 2), dfnum_shape=(), dtype=ulonglong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_120_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_121_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(), shape=(3, 2)}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_122_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_123_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(3, 2), shape=(3, 2)}] | 3.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_124_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_125_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_126_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_127_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(3, 2), shape=(3, 2)}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_128_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_129_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_130_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_131_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(3, 2), shape=(3, 2)}] | 3.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_132_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_133_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(), shape=(3, 2)}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_134_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_135_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(3, 2), shape=(3, 2)}] | 3.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_136_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_137_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_138_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_139_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_140_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_141_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_142_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_143_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(3, 2), shape=(3, 2)}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_144_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_145_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(), shape=(3, 2)}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_146_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_147_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(3, 2), shape=(3, 2)}] | 3.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_148_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_149_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(), shape=(3, 2)}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_150_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_151_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(3, 2), shape=(3, 2)}] | 3.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_152_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_153_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(), shape=(3, 2)}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_154_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_155_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(3, 2), shape=(3, 2)}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_156_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_157_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_158_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f[_param_159_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_0_{dfden_shape=(), dfnum_shape=(), dtype=int8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_1_{dfden_shape=(), dfnum_shape=(), dtype=int8, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_2_{dfden_shape=(), dfnum_shape=(), dtype=int8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_3_{dfden_shape=(), dfnum_shape=(), dtype=int8, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_4_{dfden_shape=(), dfnum_shape=(), dtype=int16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_5_{dfden_shape=(), dfnum_shape=(), dtype=int16, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_6_{dfden_shape=(), dfnum_shape=(), dtype=int16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_7_{dfden_shape=(), dfnum_shape=(), dtype=int16, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_8_{dfden_shape=(), dfnum_shape=(), dtype=int32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_9_{dfden_shape=(), dfnum_shape=(), dtype=int32, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_10_{dfden_shape=(), dfnum_shape=(), dtype=int32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_11_{dfden_shape=(), dfnum_shape=(), dtype=int32, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_12_{dfden_shape=(), dfnum_shape=(), dtype=int64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_13_{dfden_shape=(), dfnum_shape=(), dtype=int64, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_14_{dfden_shape=(), dfnum_shape=(), dtype=int64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_15_{dfden_shape=(), dfnum_shape=(), dtype=int64, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_16_{dfden_shape=(), dfnum_shape=(), dtype=longlong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_17_{dfden_shape=(), dfnum_shape=(), dtype=longlong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_18_{dfden_shape=(), dfnum_shape=(), dtype=longlong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_19_{dfden_shape=(), dfnum_shape=(), dtype=longlong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_20_{dfden_shape=(), dfnum_shape=(), dtype=uint8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_21_{dfden_shape=(), dfnum_shape=(), dtype=uint8, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_22_{dfden_shape=(), dfnum_shape=(), dtype=uint8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_23_{dfden_shape=(), dfnum_shape=(), dtype=uint8, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_24_{dfden_shape=(), dfnum_shape=(), dtype=uint16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_25_{dfden_shape=(), dfnum_shape=(), dtype=uint16, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_26_{dfden_shape=(), dfnum_shape=(), dtype=uint16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_27_{dfden_shape=(), dfnum_shape=(), dtype=uint16, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_28_{dfden_shape=(), dfnum_shape=(), dtype=uint32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_29_{dfden_shape=(), dfnum_shape=(), dtype=uint32, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_30_{dfden_shape=(), dfnum_shape=(), dtype=uint32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_31_{dfden_shape=(), dfnum_shape=(), dtype=uint32, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_32_{dfden_shape=(), dfnum_shape=(), dtype=uint64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_33_{dfden_shape=(), dfnum_shape=(), dtype=uint64, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_34_{dfden_shape=(), dfnum_shape=(), dtype=uint64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_35_{dfden_shape=(), dfnum_shape=(), dtype=uint64, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_36_{dfden_shape=(), dfnum_shape=(), dtype=ulonglong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_37_{dfden_shape=(), dfnum_shape=(), dtype=ulonglong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_38_{dfden_shape=(), dfnum_shape=(), dtype=ulonglong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_39_{dfden_shape=(), dfnum_shape=(), dtype=ulonglong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_40_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_41_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_42_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_43_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_44_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_45_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_46_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_47_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_48_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_49_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_50_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_51_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_52_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_53_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_54_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_55_{dfden_shape=(), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_56_{dfden_shape=(), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_57_{dfden_shape=(), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_58_{dfden_shape=(), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_59_{dfden_shape=(), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_60_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_61_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_62_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_63_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_64_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_65_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_66_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_67_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_68_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_69_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_70_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_71_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_72_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_73_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_74_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_75_{dfden_shape=(), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_76_{dfden_shape=(), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_77_{dfden_shape=(), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_78_{dfden_shape=(), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_79_{dfden_shape=(), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_80_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_81_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int8, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_82_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_83_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int8, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_84_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_85_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int16, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_86_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_87_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int16, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_88_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_89_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int32, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_90_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_91_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int32, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_92_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_93_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int64, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_94_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_95_{dfden_shape=(3, 2), dfnum_shape=(), dtype=int64, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_96_{dfden_shape=(3, 2), dfnum_shape=(), dtype=longlong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_97_{dfden_shape=(3, 2), dfnum_shape=(), dtype=longlong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_98_{dfden_shape=(3, 2), dfnum_shape=(), dtype=longlong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_99_{dfden_shape=(3, 2), dfnum_shape=(), dtype=longlong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_100_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_101_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint8, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_102_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_103_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint8, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_104_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_105_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint16, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_106_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_107_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint16, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_108_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_109_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint32, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_110_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_111_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint32, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_112_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_113_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint64, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_114_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_115_{dfden_shape=(3, 2), dfnum_shape=(), dtype=uint64, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_116_{dfden_shape=(3, 2), dfnum_shape=(), dtype=ulonglong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_117_{dfden_shape=(3, 2), dfnum_shape=(), dtype=ulonglong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_118_{dfden_shape=(3, 2), dfnum_shape=(), dtype=ulonglong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_119_{dfden_shape=(3, 2), dfnum_shape=(), dtype=ulonglong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_120_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_121_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_122_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_123_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int8, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_124_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_125_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_126_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_127_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int16, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_128_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_129_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_130_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_131_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int32, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_132_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_133_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_134_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_135_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=int64, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_136_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_137_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_138_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_139_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=longlong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_140_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_141_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_142_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_143_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint8, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_144_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_145_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_146_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_147_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint16, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_148_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_149_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_150_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_151_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint32, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_152_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_153_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_154_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_155_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=uint64, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_156_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_157_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_158_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNoncentralF::test_noncentral_f_for_invalid_params[_param_159_{dfden_shape=(3, 2), dfnum_shape=(3, 2), dtype=ulonglong, nonc_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNormal::test_normal[_param_0_{loc_shape=(), scale_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNormal::test_normal[_param_1_{loc_shape=(), scale_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNormal::test_normal[_param_2_{loc_shape=(), scale_shape=(), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNormal::test_normal[_param_3_{loc_shape=(), scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNormal::test_normal[_param_4_{loc_shape=(), scale_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNormal::test_normal[_param_5_{loc_shape=(), scale_shape=(3, 2), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNormal::test_normal[_param_6_{loc_shape=(3, 2), scale_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNormal::test_normal[_param_7_{loc_shape=(3, 2), scale_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNormal::test_normal[_param_8_{loc_shape=(3, 2), scale_shape=(), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNormal::test_normal[_param_9_{loc_shape=(3, 2), scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNormal::test_normal[_param_10_{loc_shape=(3, 2), scale_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsNormal::test_normal[_param_11_{loc_shape=(3, 2), scale_shape=(3, 2), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPareto::test_pareto[_param_0_{a_shape=(), shape=(4, 3, 2)}] | 2.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPareto::test_pareto[_param_1_{a_shape=(), shape=(3, 2)}] | 2.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPareto::test_pareto[_param_2_{a_shape=(), shape=None}] | 4.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPareto::test_pareto[_param_3_{a_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPareto::test_pareto[_param_4_{a_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPareto::test_pareto[_param_5_{a_shape=(3, 2), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoisson::test_poisson_legacy[_param_0_{lam_shape=(), shape=(4, 3, 2)}] | 21.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoisson::test_poisson_legacy[_param_1_{lam_shape=(), shape=(3, 2)}] | 21.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoisson::test_poisson_legacy[_param_2_{lam_shape=(), shape=None}] | 20.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoisson::test_poisson_legacy[_param_3_{lam_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoisson::test_poisson_legacy[_param_4_{lam_shape=(3, 2), shape=(3, 2)}] | 14.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoisson::test_poisson_legacy[_param_5_{lam_shape=(3, 2), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPoissonInvalid::test_none_lam_legacy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPower::test_power[_param_0_{a_shape=(), shape=(4, 3, 2)}] | 4.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPower::test_power[_param_1_{a_shape=(), shape=(3, 2)}] | 2.86 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPower::test_power_for_negative_a[_param_0_{a_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsPower::test_power_for_negative_a[_param_1_{a_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh[_param_0_{scale_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh[_param_1_{scale_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh[_param_2_{scale_shape=(), shape=None}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh[_param_3_{scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh[_param_4_{scale_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh[_param_5_{scale_shape=(3, 2), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh_for_zero_scale[_param_0_{scale_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh_for_zero_scale[_param_1_{scale_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh_for_zero_scale[_param_2_{scale_shape=(), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh_for_zero_scale[_param_3_{scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh_for_zero_scale[_param_4_{scale_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh_for_zero_scale[_param_5_{scale_shape=(3, 2), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh_for_negative_scale[_param_0_{scale_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh_for_negative_scale[_param_1_{scale_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh_for_negative_scale[_param_2_{scale_shape=(), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh_for_negative_scale[_param_3_{scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh_for_negative_scale[_param_4_{scale_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsRayleigh::test_rayleigh_for_negative_scale[_param_5_{scale_shape=(3, 2), shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardCauchy::test_standard_cauchy[_param_0_{shape=(4, 3, 2)}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardCauchy::test_standard_cauchy[_param_1_{shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardExponential::test_standard_exponential[_param_0_{shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardExponential::test_standard_exponential[_param_1_{shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardExponential::test_standard_exponential[_param_2_{shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGamma::test_standard_gamma_legacy[_param_0_{shape=(4, 3, 2), shape_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGamma::test_standard_gamma_legacy[_param_1_{shape=(4, 3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGamma::test_standard_gamma_legacy[_param_2_{shape=(3, 2), shape_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGamma::test_standard_gamma_legacy[_param_3_{shape=(3, 2), shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGamma::test_standard_gamma_legacy[_param_4_{shape=None, shape_shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGamma::test_standard_gamma_legacy[_param_5_{shape=None, shape_shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardGammaInvalid::test_none_shape_legacy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardNormal::test_standard_normal[_param_0_{shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardNormal::test_standard_normal[_param_1_{shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardNormal::test_standard_normal[_param_2_{shape=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardT::test_standard_t[_param_0_{df_shape=(), shape=(4, 3, 2)}] | 5.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardT::test_standard_t[_param_1_{df_shape=(), shape=(3, 2)}] | 5.24 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardT::test_standard_t[_param_2_{df_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsStandardT::test_standard_t[_param_3_{df_shape=(3, 2), shape=(3, 2)}] | 5.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_0_{dtype=float64, left_shape=(), mode_shape=(), right_shape=(), shape=(4, 3, 2)}] | 7.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_1_{dtype=float64, left_shape=(), mode_shape=(), right_shape=(), shape=(3, 2)}] | 2.99 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_2_{dtype=float64, left_shape=(), mode_shape=(), right_shape=(3, 2), shape=(4, 3, 2)}] | 5.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_3_{dtype=float64, left_shape=(), mode_shape=(), right_shape=(3, 2), shape=(3, 2)}] | 2.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_4_{dtype=float64, left_shape=(), mode_shape=(3, 2), right_shape=(), shape=(4, 3, 2)}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_5_{dtype=float64, left_shape=(), mode_shape=(3, 2), right_shape=(), shape=(3, 2)}] | 2.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_6_{dtype=float64, left_shape=(), mode_shape=(3, 2), right_shape=(3, 2), shape=(4, 3, 2)}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_7_{dtype=float64, left_shape=(), mode_shape=(3, 2), right_shape=(3, 2), shape=(3, 2)}] | 2.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_8_{dtype=float64, left_shape=(3, 2), mode_shape=(), right_shape=(), shape=(4, 3, 2)}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_9_{dtype=float64, left_shape=(3, 2), mode_shape=(), right_shape=(), shape=(3, 2)}] | 2.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_10_{dtype=float64, left_shape=(3, 2), mode_shape=(), right_shape=(3, 2), shape=(4, 3, 2)}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_11_{dtype=float64, left_shape=(3, 2), mode_shape=(), right_shape=(3, 2), shape=(3, 2)}] | 2.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_12_{dtype=float64, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_13_{dtype=float64, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(), shape=(3, 2)}] | 2.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_14_{dtype=float64, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_15_{dtype=float64, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(3, 2), shape=(3, 2)}] | 2.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_16_{dtype=float32, left_shape=(), mode_shape=(), right_shape=(), shape=(4, 3, 2)}] | 2.74 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_17_{dtype=float32, left_shape=(), mode_shape=(), right_shape=(), shape=(3, 2)}] | 2.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_18_{dtype=float32, left_shape=(), mode_shape=(), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_19_{dtype=float32, left_shape=(), mode_shape=(), right_shape=(3, 2), shape=(3, 2)}] | 2.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_20_{dtype=float32, left_shape=(), mode_shape=(3, 2), right_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_21_{dtype=float32, left_shape=(), mode_shape=(3, 2), right_shape=(), shape=(3, 2)}] | 2.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_22_{dtype=float32, left_shape=(), mode_shape=(3, 2), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_23_{dtype=float32, left_shape=(), mode_shape=(3, 2), right_shape=(3, 2), shape=(3, 2)}] | 2.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_24_{dtype=float32, left_shape=(3, 2), mode_shape=(), right_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_25_{dtype=float32, left_shape=(3, 2), mode_shape=(), right_shape=(), shape=(3, 2)}] | 2.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_26_{dtype=float32, left_shape=(3, 2), mode_shape=(), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_27_{dtype=float32, left_shape=(3, 2), mode_shape=(), right_shape=(3, 2), shape=(3, 2)}] | 2.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_28_{dtype=float32, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_29_{dtype=float32, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(), shape=(3, 2)}] | 2.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_30_{dtype=float32, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular[_param_31_{dtype=float32, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(3, 2), shape=(3, 2)}] | 2.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_0_{dtype=float64, left_shape=(), mode_shape=(), right_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_1_{dtype=float64, left_shape=(), mode_shape=(), right_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_2_{dtype=float64, left_shape=(), mode_shape=(), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_3_{dtype=float64, left_shape=(), mode_shape=(), right_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_4_{dtype=float64, left_shape=(), mode_shape=(3, 2), right_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_5_{dtype=float64, left_shape=(), mode_shape=(3, 2), right_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_6_{dtype=float64, left_shape=(), mode_shape=(3, 2), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_7_{dtype=float64, left_shape=(), mode_shape=(3, 2), right_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_8_{dtype=float64, left_shape=(3, 2), mode_shape=(), right_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_9_{dtype=float64, left_shape=(3, 2), mode_shape=(), right_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_10_{dtype=float64, left_shape=(3, 2), mode_shape=(), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_11_{dtype=float64, left_shape=(3, 2), mode_shape=(), right_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_12_{dtype=float64, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_13_{dtype=float64, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_14_{dtype=float64, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_15_{dtype=float64, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_16_{dtype=float32, left_shape=(), mode_shape=(), right_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_17_{dtype=float32, left_shape=(), mode_shape=(), right_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_18_{dtype=float32, left_shape=(), mode_shape=(), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_19_{dtype=float32, left_shape=(), mode_shape=(), right_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_20_{dtype=float32, left_shape=(), mode_shape=(3, 2), right_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_21_{dtype=float32, left_shape=(), mode_shape=(3, 2), right_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_22_{dtype=float32, left_shape=(), mode_shape=(3, 2), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_23_{dtype=float32, left_shape=(), mode_shape=(3, 2), right_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_24_{dtype=float32, left_shape=(3, 2), mode_shape=(), right_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_25_{dtype=float32, left_shape=(3, 2), mode_shape=(), right_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_26_{dtype=float32, left_shape=(3, 2), mode_shape=(), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_27_{dtype=float32, left_shape=(3, 2), mode_shape=(), right_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_28_{dtype=float32, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_29_{dtype=float32, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_30_{dtype=float32, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsTriangular::test_triangular_for_invalid_params[_param_31_{dtype=float32, left_shape=(3, 2), mode_shape=(3, 2), right_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsUniform::test_uniform[_param_0_{high_shape=(), low_shape=(), shape=(4, 3, 2)}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsUniform::test_uniform[_param_1_{high_shape=(), low_shape=(), shape=(3, 2)}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsUniform::test_uniform[_param_2_{high_shape=(), low_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsUniform::test_uniform[_param_3_{high_shape=(), low_shape=(3, 2), shape=(3, 2)}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsUniform::test_uniform[_param_4_{high_shape=(3, 2), low_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsUniform::test_uniform[_param_5_{high_shape=(3, 2), low_shape=(), shape=(3, 2)}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsUniform::test_uniform[_param_6_{high_shape=(3, 2), low_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsUniform::test_uniform[_param_7_{high_shape=(3, 2), low_shape=(3, 2), shape=(3, 2)}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_0_{dtype=float64, kappa_shape=(), mu_shape=(), shape=(4, 3, 2)}] | 4.53 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_1_{dtype=float64, kappa_shape=(), mu_shape=(), shape=(3, 2)}] | 4.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_2_{dtype=float64, kappa_shape=(), mu_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_3_{dtype=float64, kappa_shape=(), mu_shape=(3, 2), shape=(3, 2)}] | 4.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_4_{dtype=float64, kappa_shape=(3, 2), mu_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_5_{dtype=float64, kappa_shape=(3, 2), mu_shape=(), shape=(3, 2)}] | 4.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_6_{dtype=float64, kappa_shape=(3, 2), mu_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_7_{dtype=float64, kappa_shape=(3, 2), mu_shape=(3, 2), shape=(3, 2)}] | 4.54 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_8_{dtype=float32, kappa_shape=(), mu_shape=(), shape=(4, 3, 2)}] | 4.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_9_{dtype=float32, kappa_shape=(), mu_shape=(), shape=(3, 2)}] | 4.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_10_{dtype=float32, kappa_shape=(), mu_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_11_{dtype=float32, kappa_shape=(), mu_shape=(3, 2), shape=(3, 2)}] | 4.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_12_{dtype=float32, kappa_shape=(3, 2), mu_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_13_{dtype=float32, kappa_shape=(3, 2), mu_shape=(), shape=(3, 2)}] | 4.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_14_{dtype=float32, kappa_shape=(3, 2), mu_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_15_{dtype=float32, kappa_shape=(3, 2), mu_shape=(3, 2), shape=(3, 2)}] | 4.53 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_16_{dtype=float16, kappa_shape=(), mu_shape=(), shape=(4, 3, 2)}] | 4.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_17_{dtype=float16, kappa_shape=(), mu_shape=(), shape=(3, 2)}] | 4.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_18_{dtype=float16, kappa_shape=(), mu_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_19_{dtype=float16, kappa_shape=(), mu_shape=(3, 2), shape=(3, 2)}] | 4.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_20_{dtype=float16, kappa_shape=(3, 2), mu_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_21_{dtype=float16, kappa_shape=(3, 2), mu_shape=(), shape=(3, 2)}] | 4.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_22_{dtype=float16, kappa_shape=(3, 2), mu_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsVonmises::test_vonmises[_param_23_{dtype=float16, kappa_shape=(3, 2), mu_shape=(3, 2), shape=(3, 2)}] | 4.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_0_{dtype=float64, mean_shape=(), scale_shape=(), shape=(4, 3, 2)}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_1_{dtype=float64, mean_shape=(), scale_shape=(), shape=(3, 2)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_2_{dtype=float64, mean_shape=(), scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_3_{dtype=float64, mean_shape=(), scale_shape=(3, 2), shape=(3, 2)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_4_{dtype=float64, mean_shape=(3, 2), scale_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_5_{dtype=float64, mean_shape=(3, 2), scale_shape=(), shape=(3, 2)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_6_{dtype=float64, mean_shape=(3, 2), scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_7_{dtype=float64, mean_shape=(3, 2), scale_shape=(3, 2), shape=(3, 2)}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_8_{dtype=float32, mean_shape=(), scale_shape=(), shape=(4, 3, 2)}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_9_{dtype=float32, mean_shape=(), scale_shape=(), shape=(3, 2)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_10_{dtype=float32, mean_shape=(), scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_11_{dtype=float32, mean_shape=(), scale_shape=(3, 2), shape=(3, 2)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_12_{dtype=float32, mean_shape=(3, 2), scale_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_13_{dtype=float32, mean_shape=(3, 2), scale_shape=(), shape=(3, 2)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_14_{dtype=float32, mean_shape=(3, 2), scale_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWald::test_wald[_param_15_{dtype=float32, mean_shape=(3, 2), scale_shape=(3, 2), shape=(3, 2)}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWeibull::test_weibull[_param_0_{a_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWeibull::test_weibull[_param_1_{a_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWeibull::test_weibull[_param_2_{a_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWeibull::test_weibull[_param_3_{a_shape=(3, 2), shape=(3, 2)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWeibull::test_weibull_for_inf_a[_param_0_{a_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWeibull::test_weibull_for_inf_a[_param_1_{a_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWeibull::test_weibull_for_inf_a[_param_2_{a_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWeibull::test_weibull_for_inf_a[_param_3_{a_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWeibull::test_weibull_for_negative_a[_param_0_{a_shape=(), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWeibull::test_weibull_for_negative_a[_param_1_{a_shape=(), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWeibull::test_weibull_for_negative_a[_param_2_{a_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsWeibull::test_weibull_for_negative_a[_param_3_{a_shape=(3, 2), shape=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsZipf::test_zipf[_param_0_{a_shape=(), shape=(4, 3, 2)}] | 4.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsZipf::test_zipf[_param_1_{a_shape=(), shape=(3, 2)}] | 4.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsZipf::test_zipf[_param_2_{a_shape=(3, 2), shape=(4, 3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_distributions.py::TestDistributionsZipf::test_zipf[_param_3_{a_shape=(3, 2), shape=(3, 2)}] | 4.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestBeta_param_0_{a=1.0, b=3.0}::test_beta | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestBeta_param_0_{a=1.0, b=3.0}::test_beta_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestBeta_param_1_{a=3.0, b=3.0}::test_beta | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestBeta_param_1_{a=3.0, b=3.0}::test_beta_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestBeta_param_2_{a=3.0, b=1.0}::test_beta | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestBeta_param_2_{a=3.0, b=1.0}::test_beta_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestBinomial_param_0_{n=5, p=0.5}::test_binomial | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestBinomial_param_1_{n=5, p=0.0}::test_binomial | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestBinomial_param_2_{n=5, p=1.0}::test_binomial | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChisquare_param_0_{df=1.0}::test_chisquare | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChisquare_param_0_{df=1.0}::test_chisquare_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChisquare_param_1_{df=3.0}::test_chisquare | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChisquare_param_1_{df=3.0}::test_chisquare_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChisquare_param_2_{df=10.0}::test_chisquare | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChisquare_param_2_{df=10.0}::test_chisquare_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestDirichlet_param_0_{alpha=array([1., 1., 1.])}::test_dirichlet | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestDirichlet_param_0_{alpha=array([1., 1., 1.])}::test_dirichlet_int_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestDirichlet_param_1_{alpha=array([1., 3., 5.])}::test_dirichlet | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestDirichlet_param_1_{alpha=array([1., 3., 5.])}::test_dirichlet_int_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestExponential_param_0_{scale=0.5}::test_exponential | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestExponential_param_0_{scale=0.5}::test_exponential_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestExponential_param_1_{scale=1}::test_exponential | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestExponential_param_1_{scale=1}::test_exponential_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestExponential_param_2_{scale=10}::test_exponential | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestExponential_param_2_{scale=10}::test_exponential_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestF_param_0_{dfden=3.0, dfnum=1.0}::test_f | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestF_param_0_{dfden=3.0, dfnum=1.0}::test_f_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestF_param_1_{dfden=3.0, dfnum=3.0}::test_f | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestF_param_1_{dfden=3.0, dfnum=3.0}::test_f_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestF_param_2_{dfden=1.0, dfnum=3.0}::test_f | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestF_param_2_{dfden=1.0, dfnum=3.0}::test_f_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_0_{scale=0.5, shape=0.5}::test_gamma_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_0_{scale=0.5, shape=0.5}::test_gamma_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_0_{scale=0.5, shape=0.5}::test_gamma_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_1_{scale=0.5, shape=1.0}::test_gamma_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_1_{scale=0.5, shape=1.0}::test_gamma_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_1_{scale=0.5, shape=1.0}::test_gamma_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_2_{scale=0.5, shape=3.0}::test_gamma_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_2_{scale=0.5, shape=3.0}::test_gamma_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_2_{scale=0.5, shape=3.0}::test_gamma_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_3_{scale=1.0, shape=0.5}::test_gamma_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_3_{scale=1.0, shape=0.5}::test_gamma_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_3_{scale=1.0, shape=0.5}::test_gamma_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_4_{scale=1.0, shape=1.0}::test_gamma_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_4_{scale=1.0, shape=1.0}::test_gamma_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_4_{scale=1.0, shape=1.0}::test_gamma_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_5_{scale=1.0, shape=3.0}::test_gamma_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_5_{scale=1.0, shape=3.0}::test_gamma_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_5_{scale=1.0, shape=3.0}::test_gamma_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_6_{scale=3.0, shape=0.5}::test_gamma_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_6_{scale=3.0, shape=0.5}::test_gamma_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_6_{scale=3.0, shape=0.5}::test_gamma_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_7_{scale=3.0, shape=1.0}::test_gamma_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_7_{scale=3.0, shape=1.0}::test_gamma_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_7_{scale=3.0, shape=1.0}::test_gamma_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_8_{scale=3.0, shape=3.0}::test_gamma_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_8_{scale=3.0, shape=3.0}::test_gamma_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGamma_param_8_{scale=3.0, shape=3.0}::test_gamma_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGeometric_param_0_{p=0.5}::test_geometric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGeometric_param_0_{p=0.5}::test_geometric_ks | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGeometric_param_1_{p=0.1}::test_geometric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGeometric_param_1_{p=0.1}::test_geometric_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGeometric_param_2_{p=1.0}::test_geometric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGeometric_param_2_{p=1.0}::test_geometric_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestHypergeometric_param_0_{nbad=1, ngood=1, nsample=1}::test_hypergeometric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestHypergeometric_param_1_{nbad=1, ngood=1, nsample=2}::test_hypergeometric | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_0_{args=(0.0, 1.0), size=None}::test_lognormal_float | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_0_{args=(0.0, 1.0), size=None}::test_lognormal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_0_{args=(0.0, 1.0), size=None}::test_lognormal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_0_{args=(0.0, 1.0), size=None}::test_lognormal_ks | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_1_{args=(10.0, 20.0), size=None}::test_lognormal_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_1_{args=(10.0, 20.0), size=None}::test_lognormal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_1_{args=(10.0, 20.0), size=None}::test_lognormal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_1_{args=(10.0, 20.0), size=None}::test_lognormal_ks | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_2_{args=(0.0, 1.0), size=10}::test_lognormal_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_2_{args=(0.0, 1.0), size=10}::test_lognormal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_2_{args=(0.0, 1.0), size=10}::test_lognormal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_2_{args=(0.0, 1.0), size=10}::test_lognormal_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_3_{args=(0.0, 1.0), size=(1, 2, 3)}::test_lognormal_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_3_{args=(0.0, 1.0), size=(1, 2, 3)}::test_lognormal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_3_{args=(0.0, 1.0), size=(1, 2, 3)}::test_lognormal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_3_{args=(0.0, 1.0), size=(1, 2, 3)}::test_lognormal_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_4_{args=(0.0, 1.0), size=3}::test_lognormal_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_4_{args=(0.0, 1.0), size=3}::test_lognormal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_4_{args=(0.0, 1.0), size=3}::test_lognormal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_4_{args=(0.0, 1.0), size=3}::test_lognormal_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_5_{args=(0.0, 1.0), size=(3, 3)}::test_lognormal_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_5_{args=(0.0, 1.0), size=(3, 3)}::test_lognormal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_5_{args=(0.0, 1.0), size=(3, 3)}::test_lognormal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_5_{args=(0.0, 1.0), size=(3, 3)}::test_lognormal_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_6_{args=(0.0, 1.0), size=()}::test_lognormal_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_6_{args=(0.0, 1.0), size=()}::test_lognormal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_6_{args=(0.0, 1.0), size=()}::test_lognormal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogNormal_param_6_{args=(0.0, 1.0), size=()}::test_lognormal_ks | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogseries_param_0_{p=0.5}::test_logseries | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogseries_param_1_{p=0.1}::test_logseries | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogseries_param_2_{p=0.9}::test_logseries | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_0_{args=([0.0, 0.0], [[1.0, 0.0], [0.0, 1.0]]), size=None, tol=1e-06}::test_multivariate_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_0_{args=([0.0, 0.0], [[1.0, 0.0], [0.0, 1.0]]), size=None, tol=1e-06}::test_multivariate_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_1_{args=([10.0, 10.0], [[20.0, 10.0], [10.0, 20.0]]), size=None, tol=1e-06}::test_multivariate_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_1_{args=([10.0, 10.0], [[20.0, 10.0], [10.0, 20.0]]), size=None, tol=1e-06}::test_multivariate_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_2_{args=([0.0, 0.0], [[1.0, 0.0], [0.0, 1.0]]), size=10, tol=1e-06}::test_multivariate_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_2_{args=([0.0, 0.0], [[1.0, 0.0], [0.0, 1.0]]), size=10, tol=1e-06}::test_multivariate_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_3_{args=([0.0, 0.0], [[1.0, 0.0], [0.0, 1.0]]), size=(1, 2, 3), tol=1e-06}::test_multivariate_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_3_{args=([0.0, 0.0], [[1.0, 0.0], [0.0, 1.0]]), size=(1, 2, 3), tol=1e-06}::test_multivariate_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_4_{args=([0.0, 0.0], [[1.0, 0.0], [0.0, 1.0]]), size=3, tol=1e-06}::test_multivariate_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_4_{args=([0.0, 0.0], [[1.0, 0.0], [0.0, 1.0]]), size=3, tol=1e-06}::test_multivariate_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_5_{args=([0.0, 0.0], [[1.0, 0.0], [0.0, 1.0]]), size=(3, 3), tol=1e-06}::test_multivariate_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_5_{args=([0.0, 0.0], [[1.0, 0.0], [0.0, 1.0]]), size=(3, 3), tol=1e-06}::test_multivariate_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_6_{args=([0.0, 0.0], [[1.0, 0.0], [0.0, 1.0]]), size=(), tol=1e-06}::test_multivariate_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestMultivariateNormal_param_6_{args=([0.0, 0.0], [[1.0, 0.0], [0.0, 1.0]]), size=(), tol=1e-06}::test_multivariate_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNegativeBinomial_param_0_{n=5, p=0.5}::test_negative_binomial | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNoncentralChisquare_param_0_{df=1.5, nonc=2.0}::test_noncentral_chisquare | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNoncentralChisquare_param_0_{df=1.5, nonc=2.0}::test_noncentral_chisquare_ks | 2.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNoncentralChisquare_param_1_{df=2.0, nonc=0.0}::test_noncentral_chisquare | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNoncentralChisquare_param_1_{df=2.0, nonc=0.0}::test_noncentral_chisquare_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNoncentralF_param_0_{dfden=3.0, dfnum=2.0, nonc=4.0}::test_noncentral_f | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNoncentralF_param_0_{dfden=3.0, dfnum=2.0, nonc=4.0}::test_noncentral_f_ks | 3.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNoncentralF_param_1_{dfden=1.5, dfnum=2.5, nonc=0.0}::test_noncentral_f | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNoncentralF_param_1_{dfden=1.5, dfnum=2.5, nonc=0.0}::test_noncentral_f_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_0_{args=(0.0, 1.0), size=None}::test_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_0_{args=(0.0, 1.0), size=None}::test_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_0_{args=(0.0, 1.0), size=None}::test_normal_ks | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_1_{args=(10.0, 20.0), size=None}::test_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_1_{args=(10.0, 20.0), size=None}::test_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_1_{args=(10.0, 20.0), size=None}::test_normal_ks | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_2_{args=(0.0, 1.0), size=10}::test_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_2_{args=(0.0, 1.0), size=10}::test_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_2_{args=(0.0, 1.0), size=10}::test_normal_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_3_{args=(0.0, 1.0), size=(1, 2, 3)}::test_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_3_{args=(0.0, 1.0), size=(1, 2, 3)}::test_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_3_{args=(0.0, 1.0), size=(1, 2, 3)}::test_normal_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_4_{args=(0.0, 1.0), size=3}::test_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_4_{args=(0.0, 1.0), size=3}::test_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_4_{args=(0.0, 1.0), size=3}::test_normal_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_5_{args=(0.0, 1.0), size=(3, 3)}::test_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_5_{args=(0.0, 1.0), size=(3, 3)}::test_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_5_{args=(0.0, 1.0), size=(3, 3)}::test_normal_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_6_{args=(0.0, 1.0), size=()}::test_normal_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_6_{args=(0.0, 1.0), size=()}::test_normal_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestNormal_param_6_{args=(0.0, 1.0), size=()}::test_normal_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPareto_param_0_{a=1.0}::test_pareto | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPareto_param_0_{a=1.0}::test_pareto_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPareto_param_1_{a=3.0}::test_pareto | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPareto_param_1_{a=3.0}::test_pareto_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPareto_param_2_{a=10.0}::test_pareto | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPareto_param_2_{a=10.0}::test_pareto_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPoisson_param_0_{lam=1.0}::test_poisson | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPoisson_param_0_{lam=1.0}::test_poisson_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPoisson_param_0_{lam=1.0}::test_poisson_large | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPoisson_param_1_{lam=3.0}::test_poisson | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPoisson_param_1_{lam=3.0}::test_poisson_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPoisson_param_1_{lam=3.0}::test_poisson_large | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPoisson_param_2_{lam=10.0}::test_poisson | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPoisson_param_2_{lam=10.0}::test_poisson_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPoisson_param_2_{lam=10.0}::test_poisson_large | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardT_param_0_{df=1.0}::test_standard_t | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardT_param_0_{df=1.0}::test_standard_t_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardT_param_1_{df=3.0}::test_standard_t | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardT_param_1_{df=3.0}::test_standard_t_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardT_param_2_{df=10.0}::test_standard_t | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardT_param_2_{df=10.0}::test_standard_t_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomSample_param_0_{size=None}::test_random_sample_float32 | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomSample_param_0_{size=None}::test_random_sample_float64 | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomSample_param_1_{size=10}::test_random_sample_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomSample_param_1_{size=10}::test_random_sample_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomSample_param_2_{size=(1, 2, 3)}::test_random_sample_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomSample_param_2_{size=(1, 2, 3)}::test_random_sample_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomSample_param_3_{size=3}::test_random_sample_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomSample_param_3_{size=3}::test_random_sample_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomSample_param_4_{size=()}::test_random_sample_float32 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomSample_param_4_{size=()}::test_random_sample_float64 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPower_param_0_{a=0.5}::test_power | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestPower_param_0_{a=0.5}::test_power_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRayleigh_param_0_{scale=1.0}::test_rayleigh | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRayleigh_param_0_{scale=1.0}::test_rayleigh_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRayleigh_param_1_{scale=3.0}::test_rayleigh | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRayleigh_param_1_{scale=3.0}::test_rayleigh_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardGamma_param_0_{shape=0.5}::test_standard_gamma | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardGamma_param_0_{shape=0.5}::test_standard_gamma_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardGamma_param_1_{shape=1.0}::test_standard_gamma | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardGamma_param_1_{shape=1.0}::test_standard_gamma_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardGamma_param_2_{shape=3.0}::test_standard_gamma | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardGamma_param_2_{shape=3.0}::test_standard_gamma_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_0_{a=3, p=None, size=2}::test_bound | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_0_{a=3, p=None, size=2}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_1_{a=3, p=[0.3, 0.3, 0.4], size=2}::test_bound | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_1_{a=3, p=[0.3, 0.3, 0.4], size=2}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_2_{a=3, p=[0.3, 0.3, 0.4], size=(5, 5)}::test_bound | 0.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_2_{a=3, p=[0.3, 0.3, 0.4], size=(5, 5)}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_3_{a=3, p=array([0.3, 0.3, 0.4]), size=(5, 5)}::test_bound | 0.09 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_3_{a=3, p=array([0.3, 0.3, 0.4]), size=(5, 5)}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_4_{a=3, p=None, size=()}::test_bound | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_4_{a=3, p=None, size=()}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_5_{a=array([0., 1., 2.]), p=[0.3, 0.3, 0.4], size=2}::test_bound | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_5_{a=array([0., 1., 2.]), p=[0.3, 0.3, 0.4], size=2}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_6_{a=0, p=None, size=0}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice1_param_7_{a=array([], dtype=float64), p=None, size=0}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice2_param_0_{a=[0, 1, 2], p=[0.3, 0.3, 0.4], size=2}::test_bound | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoice2_param_0_{a=[0, 1, 2], p=[0.3, 0.3, 0.4], size=2}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceFailure_param_0_{a=3.1, p=[0.1, 0.1, 0.8], size=1}::test_choice_invalid_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceFailure_param_1_{a=None, p=[0.1, 0.1, 0.8], size=1}::test_choice_invalid_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceFailure_param_2_{a=-3, p=[0.1, 0.1, 0.8], size=1}::test_choice_invalid_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceFailure_param_3_{a=[[0, 1], [2, 3]], p=[[0.1, 0.2], [0.3, 0.4]], size=1}::test_choice_invalid_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceFailure_param_4_{a=[[0, 1], [2, 3]], p=[0.3, 0.7], size=1}::test_choice_invalid_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceFailure_param_5_{a=[], p=[0.1, 0.1, 0.8], size=1}::test_choice_invalid_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceFailure_param_6_{a=4, p=[[0.1, 0.2], [0.3, 0.4]], size=1}::test_choice_invalid_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceFailure_param_7_{a=2, p=[0.1, 0.1, 0.8], size=1}::test_choice_invalid_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceFailure_param_8_{a=3, p=[-0.1, 0.3, 0.8], size=1}::test_choice_invalid_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceFailure_param_9_{a=3, p=[0.1, 0.1, 0.7], size=1}::test_choice_invalid_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceReplaceFalse_param_0_{a=5, size=2}::test_bound | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceReplaceFalse_param_0_{a=5, size=2}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceReplaceFalse_param_1_{a=5, size=(2, 2)}::test_bound | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceReplaceFalse_param_1_{a=5, size=(2, 2)}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceReplaceFalse_param_2_{a=5, size=()}::test_bound | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceReplaceFalse_param_2_{a=5, size=()}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceReplaceFalse_param_3_{a=array([0., 2., 4.]), size=2}::test_bound | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceReplaceFalse_param_3_{a=array([0., 2., 4.]), size=2}::test_dtype_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestVonmises_param_0_{kappa=1.0, mu=0.0}::test_vonmises | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestVonmises_param_0_{kappa=1.0, mu=0.0}::test_vonmises_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestVonmises_param_1_{kappa=3.0, mu=3.0}::test_vonmises | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestVonmises_param_1_{kappa=3.0, mu=3.0}::test_vonmises_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestVonmises_param_2_{kappa=1.0, mu=3.0}::test_vonmises | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestVonmises_param_2_{kappa=1.0, mu=3.0}::test_vonmises_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWald_param_0_{mean=1.0, scale=3.0}::test_wald | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWald_param_0_{mean=1.0, scale=3.0}::test_wald_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWald_param_1_{mean=3.0, scale=3.0}::test_wald | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWald_param_1_{mean=3.0, scale=3.0}::test_wald_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWald_param_2_{mean=3.0, scale=1.0}::test_wald | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWald_param_2_{mean=3.0, scale=1.0}::test_wald_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWeibull_param_0_{a=0.5}::test_weibull | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWeibull_param_0_{a=0.5}::test_weibull_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWeibull_param_1_{a=1.0}::test_weibull | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWeibull_param_1_{a=1.0}::test_weibull_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWeibull_param_2_{a=3.0}::test_weibull | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWeibull_param_2_{a=3.0}::test_weibull_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWeibull_param_3_{a=inf}::test_weibull | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestWeibull_param_3_{a=inf}::test_weibull_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestZipf_param_0_{a=2.0}::test_zipf | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceReplaceFalseFailure_param_0_{a=3, size=5}::test_choice_invalid_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceReplaceFalseFailure_param_1_{a=[1, 2, 3], size=5}::test_choice_invalid_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestTriangular_param_0_{left=-1.0, mode=0.0, right=2.0}::test_triangular | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomState::test_array_seed | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomState::test_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomState::test_seed_invalid_type_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomState::test_seed_invalid_type_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomState::test_seed_not_none | 0.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLaplace::test_laplace_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLaplace::test_laplace_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLaplace::test_laplace_ks_1 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLaplace::test_laplace_ks_2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogistic::test_logistic_1 | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogistic::test_logistic_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogistic::test_logistic_ks_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestLogistic::test_logistic_ks_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomSampleDistrib::test_random_sample_ks | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandAndRandN::test_rand_invalid_argument | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandAndRandN::test_randn_invalid_argument | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardCauchy::test_standard_cauchy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardCauchy::test_standard_cauchy_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestInterval::test_bound_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestInterval::test_bound_2 | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestInterval::test_goodness_of_fit | 0.50 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestInterval::test_goodness_of_fit_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestInterval::test_shape_multi_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestInterval::test_shape_one_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestInterval::test_shape_zero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestInterval::test_zero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestTomaxint::test_tomaxint_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestTomaxint::test_tomaxint_none | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestTomaxint::test_tomaxint_tuple | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceChi::test_goodness_of_fit | 0.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestChoiceMultinomial::test_choice_multinomial | 2.10 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGumbel::test_gumbel_1 | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGumbel::test_gumbel_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGumbel::test_gumbel_ks_1 | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGumbel::test_gumbel_ks_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandint::test_randint_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandint::test_randint_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandint::test_randint_empty1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandint::test_randint_empty2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandint::test_randint_float1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandint::test_randint_float2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandint::test_randint_int64_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandint::test_randint_overflow | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestUniform::test_uniform_1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestUniform::test_uniform_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestUniform::test_uniform_ks_1 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestUniform::test_uniform_ks_2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestResetStates::test_reset_states | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGetRandomState::test_get_random_state_initialize | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGetRandomState::test_get_random_state_memoized | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestSetRandomState::test_set_random_state | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestSetRandomState::test_set_random_state_call_multiple_times | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardExponential::test_standard_exponential | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestStandardExponential::test_standard_exponential_ks | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomStateThreadSafe::test_get_random_state_thread_safe | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestRandomStateThreadSafe::test_set_random_state_thread_safe | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGetRandomState2::test_get_random_state_no_cupy | 0.66 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestGetRandomState2::test_get_random_state_with_cupy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestCheckAndGetDtype::test_float16 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestCheckAndGetDtype::test_float32_64_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_generator.py::TestCheckAndGetDtype::test_int_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_init.py::test_bytes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutations_param_0_{seed=None}::test_permutation_seed1 | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutations_param_0_{seed=None}::test_permutation_sort_1dim | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutations_param_0_{seed=None}::test_permutation_sort_ndim | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutations_param_1_{seed=0}::test_permutation_seed1 | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutations_param_1_{seed=0}::test_permutation_sort_1dim | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutations_param_1_{seed=0}::test_permutation_sort_ndim | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationSoundness_param_0_{num=0}::test_permutation_soundness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationSoundness_param_1_{num=1}::test_permutation_soundness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationSoundness_param_2_{num=100}::test_permutation_soundness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationSoundness_param_3_{num=1000}::test_permutation_soundness | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationSoundness_param_4_{num=10000}::test_permutation_soundness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationSoundness_param_5_{num=100000}::test_permutation_soundness | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_0_{gap=1, mask=1, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_1_{gap=1, mask=1, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_2_{gap=1, mask=1, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_3_{gap=1, mask=1, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_4_{gap=1, mask=2, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_5_{gap=1, mask=2, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_6_{gap=1, mask=2, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_7_{gap=1, mask=2, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_8_{gap=1, mask=4, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_9_{gap=1, mask=4, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_10_{gap=1, mask=4, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_11_{gap=1, mask=4, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_12_{gap=1, mask=8, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_13_{gap=1, mask=8, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_14_{gap=1, mask=8, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_15_{gap=1, mask=8, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_16_{gap=1, mask=16, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_17_{gap=1, mask=16, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_18_{gap=1, mask=16, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_19_{gap=1, mask=16, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_20_{gap=1, mask=32, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_21_{gap=1, mask=32, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_22_{gap=1, mask=32, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_23_{gap=1, mask=32, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_24_{gap=1, mask=64, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_25_{gap=1, mask=64, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_26_{gap=1, mask=64, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_27_{gap=1, mask=64, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_28_{gap=1, mask=128, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_29_{gap=1, mask=128, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_30_{gap=1, mask=128, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_31_{gap=1, mask=128, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_32_{gap=2, mask=1, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_33_{gap=2, mask=1, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_34_{gap=2, mask=1, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_35_{gap=2, mask=1, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_36_{gap=2, mask=2, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_37_{gap=2, mask=2, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_38_{gap=2, mask=2, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_39_{gap=2, mask=2, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_40_{gap=2, mask=4, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_41_{gap=2, mask=4, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_42_{gap=2, mask=4, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_43_{gap=2, mask=4, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_44_{gap=2, mask=8, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_45_{gap=2, mask=8, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_46_{gap=2, mask=8, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_47_{gap=2, mask=8, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_48_{gap=2, mask=16, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_49_{gap=2, mask=16, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_50_{gap=2, mask=16, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_51_{gap=2, mask=16, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_52_{gap=2, mask=32, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_53_{gap=2, mask=32, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_54_{gap=2, mask=32, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_55_{gap=2, mask=32, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_56_{gap=2, mask=64, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_57_{gap=2, mask=64, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_58_{gap=2, mask=64, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_59_{gap=2, mask=64, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_60_{gap=2, mask=128, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_61_{gap=2, mask=128, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_62_{gap=2, mask=128, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_63_{gap=2, mask=128, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_64_{gap=3, mask=1, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_65_{gap=3, mask=1, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_66_{gap=3, mask=1, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_67_{gap=3, mask=1, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_68_{gap=3, mask=2, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_69_{gap=3, mask=2, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_70_{gap=3, mask=2, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_71_{gap=3, mask=2, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_72_{gap=3, mask=4, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_73_{gap=3, mask=4, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_74_{gap=3, mask=4, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_75_{gap=3, mask=4, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_76_{gap=3, mask=8, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_77_{gap=3, mask=8, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_78_{gap=3, mask=8, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_79_{gap=3, mask=8, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_80_{gap=3, mask=16, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_81_{gap=3, mask=16, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_82_{gap=3, mask=16, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_83_{gap=3, mask=16, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_84_{gap=3, mask=32, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_85_{gap=3, mask=32, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_86_{gap=3, mask=32, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_87_{gap=3, mask=32, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_88_{gap=3, mask=64, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_89_{gap=3, mask=64, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_90_{gap=3, mask=64, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_91_{gap=3, mask=64, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_92_{gap=3, mask=128, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_93_{gap=3, mask=128, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_94_{gap=3, mask=128, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_95_{gap=3, mask=128, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_96_{gap=5, mask=1, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_97_{gap=5, mask=1, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_98_{gap=5, mask=1, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_99_{gap=5, mask=1, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_100_{gap=5, mask=2, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_101_{gap=5, mask=2, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_102_{gap=5, mask=2, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_103_{gap=5, mask=2, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_104_{gap=5, mask=4, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_105_{gap=5, mask=4, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_106_{gap=5, mask=4, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_107_{gap=5, mask=4, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_108_{gap=5, mask=8, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_109_{gap=5, mask=8, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_110_{gap=5, mask=8, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_111_{gap=5, mask=8, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_112_{gap=5, mask=16, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_113_{gap=5, mask=16, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_114_{gap=5, mask=16, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_115_{gap=5, mask=16, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_116_{gap=5, mask=32, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_117_{gap=5, mask=32, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_118_{gap=5, mask=32, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_119_{gap=5, mask=32, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_120_{gap=5, mask=64, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_121_{gap=5, mask=64, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_122_{gap=5, mask=64, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_123_{gap=5, mask=64, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_124_{gap=5, mask=128, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_125_{gap=5, mask=128, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_126_{gap=5, mask=128, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_127_{gap=5, mask=128, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_128_{gap=7, mask=1, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_129_{gap=7, mask=1, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_130_{gap=7, mask=1, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_131_{gap=7, mask=1, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_132_{gap=7, mask=2, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_133_{gap=7, mask=2, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_134_{gap=7, mask=2, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_135_{gap=7, mask=2, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_136_{gap=7, mask=4, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_137_{gap=7, mask=4, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_138_{gap=7, mask=4, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_139_{gap=7, mask=4, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_140_{gap=7, mask=8, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_141_{gap=7, mask=8, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_142_{gap=7, mask=8, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_143_{gap=7, mask=8, offset=51}::test_permutation_randomness | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_144_{gap=7, mask=16, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_145_{gap=7, mask=16, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_146_{gap=7, mask=16, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_147_{gap=7, mask=16, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_148_{gap=7, mask=32, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_149_{gap=7, mask=32, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_150_{gap=7, mask=32, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_151_{gap=7, mask=32, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_152_{gap=7, mask=64, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_153_{gap=7, mask=64, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_154_{gap=7, mask=64, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_155_{gap=7, mask=64, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_156_{gap=7, mask=128, offset=0}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_157_{gap=7, mask=128, offset=17}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_158_{gap=7, mask=128, offset=34}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestPermutationRandomness_param_159_{gap=7, mask=128, offset=51}::test_permutation_randomness | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestShuffle::test_shuffle_seed1 | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestShuffle::test_shuffle_sort_1dim | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestShuffle::test_shuffle_sort_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_permutations.py::TestShuffle::test_shuffle_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_random.py::TestResetSeed::test_reset_seed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestMultinomial_param_0_{size=None}::test_multinomial | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestMultinomial_param_1_{size=()}::test_multinomial | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestMultinomial_param_2_{size=4}::test_multinomial | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestMultinomial_param_3_{size=(0,)}::test_multinomial | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestMultinomial_param_4_{size=(1, 0)}::test_multinomial | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandint::test_lo_hi_equal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandint::test_lo_hi_nonrandom | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandint::test_lo_hi_reversed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandint::test_zero_sizes | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandint2::test_bound_1 | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandint2::test_bound_2 | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandint2::test_bound_float1 | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandint2::test_bound_float2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandint2::test_bound_overflow | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandint2::test_goodness_of_fit | 0.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandintDtype::test_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandintDtype::test_dtype2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandomIntegers::test_high_is_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandomIntegers::test_normal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandomIntegers::test_size_is_not_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandomIntegers2::test_bound_1 | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandomIntegers2::test_bound_2 | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandomIntegers2::test_goodness_of_fit | 0.22 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestChoice::test_no_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestChoice::test_p_is_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestChoice::test_replace_and_p_are_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestChoice::test_replace_is_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestChoice::test_size_and_p_are_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestChoice::test_size_and_replace_and_p_are_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestChoice::test_size_and_replace_are_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestChoice::test_size_is_none | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandomSample::test_rand | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandomSample::test_rand_default_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandomSample::test_rand_invalid_argument | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandomSample::test_randn | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandomSample::test_randn_default_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/random_tests/test_sample.py::TestRandomSample::test_randn_invalid_argument | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_count.py::TestCount::test_count_nonzero | 8.93 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_count.py::TestCount::test_count_nonzero_int_axis | 29.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_count.py::TestCount::test_count_nonzero_tuple_axis | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_count.py::TestCount::test_count_nonzero_zero_dim | 9.52 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_4_{backend='device', order_and_axis=('C', None), shape=(10,)}::test_cub_argmax | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_4_{backend='device', order_and_axis=('C', None), shape=(10,)}::test_cub_argmin | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_5_{backend='device', order_and_axis=('C', None), shape=(10, 20)}::test_cub_argmax | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_5_{backend='device', order_and_axis=('C', None), shape=(10, 20)}::test_cub_argmin | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_6_{backend='device', order_and_axis=('C', None), shape=(10, 20, 30)}::test_cub_argmax | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_6_{backend='device', order_and_axis=('C', None), shape=(10, 20, 30)}::test_cub_argmin | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_7_{backend='device', order_and_axis=('C', None), shape=(10, 20, 30, 40)}::test_cub_argmax | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_7_{backend='device', order_and_axis=('C', None), shape=(10, 20, 30, 40)}::test_cub_argmin | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_12_{backend='device', order_and_axis=('F', None), shape=(10,)}::test_cub_argmax | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_12_{backend='device', order_and_axis=('F', None), shape=(10,)}::test_cub_argmin | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_13_{backend='device', order_and_axis=('F', None), shape=(10, 20)}::test_cub_argmax | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_13_{backend='device', order_and_axis=('F', None), shape=(10, 20)}::test_cub_argmin | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_14_{backend='device', order_and_axis=('F', None), shape=(10, 20, 30)}::test_cub_argmax | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_14_{backend='device', order_and_axis=('F', None), shape=(10, 20, 30)}::test_cub_argmin | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_15_{backend='device', order_and_axis=('F', None), shape=(10, 20, 30, 40)}::test_cub_argmax | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_15_{backend='device', order_and_axis=('F', None), shape=(10, 20, 30, 40)}::test_cub_argmin | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_16_{backend='block', order_and_axis=('C', -1), shape=(10,)}::test_cub_argmax | 36.17 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_16_{backend='block', order_and_axis=('C', -1), shape=(10,)}::test_cub_argmin | 36.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_17_{backend='block', order_and_axis=('C', -1), shape=(10, 20)}::test_cub_argmax | 18.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_17_{backend='block', order_and_axis=('C', -1), shape=(10, 20)}::test_cub_argmin | 18.21 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_18_{backend='block', order_and_axis=('C', -1), shape=(10, 20, 30)}::test_cub_argmax | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_18_{backend='block', order_and_axis=('C', -1), shape=(10, 20, 30)}::test_cub_argmin | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_19_{backend='block', order_and_axis=('C', -1), shape=(10, 20, 30, 40)}::test_cub_argmax | 0.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_19_{backend='block', order_and_axis=('C', -1), shape=(10, 20, 30, 40)}::test_cub_argmin | 0.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_20_{backend='block', order_and_axis=('C', None), shape=(10,)}::test_cub_argmax | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_20_{backend='block', order_and_axis=('C', None), shape=(10,)}::test_cub_argmin | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_21_{backend='block', order_and_axis=('C', None), shape=(10, 20)}::test_cub_argmax | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_21_{backend='block', order_and_axis=('C', None), shape=(10, 20)}::test_cub_argmin | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_22_{backend='block', order_and_axis=('C', None), shape=(10, 20, 30)}::test_cub_argmax | 36.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_22_{backend='block', order_and_axis=('C', None), shape=(10, 20, 30)}::test_cub_argmin | 36.56 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_23_{backend='block', order_and_axis=('C', None), shape=(10, 20, 30, 40)}::test_cub_argmax | 0.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_23_{backend='block', order_and_axis=('C', None), shape=(10, 20, 30, 40)}::test_cub_argmin | 0.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_24_{backend='block', order_and_axis=('F', 0), shape=(10,)}::test_cub_argmax | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_24_{backend='block', order_and_axis=('F', 0), shape=(10,)}::test_cub_argmin | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_25_{backend='block', order_and_axis=('F', 0), shape=(10, 20)}::test_cub_argmax | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_25_{backend='block', order_and_axis=('F', 0), shape=(10, 20)}::test_cub_argmin | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_26_{backend='block', order_and_axis=('F', 0), shape=(10, 20, 30)}::test_cub_argmax | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_26_{backend='block', order_and_axis=('F', 0), shape=(10, 20, 30)}::test_cub_argmin | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_27_{backend='block', order_and_axis=('F', 0), shape=(10, 20, 30, 40)}::test_cub_argmax | 0.15 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_27_{backend='block', order_and_axis=('F', 0), shape=(10, 20, 30, 40)}::test_cub_argmin | 0.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_28_{backend='block', order_and_axis=('F', None), shape=(10,)}::test_cub_argmax | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_28_{backend='block', order_and_axis=('F', None), shape=(10,)}::test_cub_argmin | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_29_{backend='block', order_and_axis=('F', None), shape=(10, 20)}::test_cub_argmax | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_29_{backend='block', order_and_axis=('F', None), shape=(10, 20)}::test_cub_argmin | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_30_{backend='block', order_and_axis=('F', None), shape=(10, 20, 30)}::test_cub_argmax | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_30_{backend='block', order_and_axis=('F', None), shape=(10, 20, 30)}::test_cub_argmin | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_31_{backend='block', order_and_axis=('F', None), shape=(10, 20, 30, 40)}::test_cub_argmax | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestCubReduction_param_31_{backend='block', order_and_axis=('F', None), shape=(10, 20, 30, 40)}::test_cub_argmin | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgMinMaxDtype_param_0_{func='argmin', is_module=True, shape=(3, 4)}::test_argminmax_dtype | 33.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgMinMaxDtype_param_1_{func='argmin', is_module=True, shape=()}::test_argminmax_dtype | 39.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgMinMaxDtype_param_2_{func='argmin', is_module=False, shape=(3, 4)}::test_argminmax_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgMinMaxDtype_param_3_{func='argmin', is_module=False, shape=()}::test_argminmax_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgMinMaxDtype_param_4_{func='argmax', is_module=True, shape=(3, 4)}::test_argminmax_dtype | 33.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgMinMaxDtype_param_5_{func='argmax', is_module=True, shape=()}::test_argminmax_dtype | 38.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgMinMaxDtype_param_6_{func='argmax', is_module=False, shape=(3, 4)}::test_argminmax_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgMinMaxDtype_param_7_{func='argmax', is_module=False, shape=()}::test_argminmax_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestWhereTwoArrays_param_0_{cond_shape=(2, 3, 4), x_shape=(2, 3, 4), y_shape=(2, 3, 4)}::test_where_two_arrays | 8.85 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestWhereTwoArrays_param_1_{cond_shape=(4,), x_shape=(2, 3, 4), y_shape=(2, 3, 4)}::test_where_two_arrays | 20.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestWhereTwoArrays_param_2_{cond_shape=(2, 3, 4), x_shape=(2, 3, 4), y_shape=(3, 4)}::test_where_two_arrays | 20.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestWhereTwoArrays_param_3_{cond_shape=(3, 4), x_shape=(2, 3, 4), y_shape=(4,)}::test_where_two_arrays | 20.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestWhereCond_param_0_{cond_shape=(2, 3, 4)}::test_where_cond | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestWhereCond_param_1_{cond_shape=(4,)}::test_where_cond | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestWhereCond_param_2_{cond_shape=(2, 3, 4)}::test_where_cond | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestWhereCond_param_3_{cond_shape=(3, 4)}::test_where_cond | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNonzero_param_0_{array=array([1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1])}::test_nonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNonzero_param_1_{array=array([[[ 0.85278091, -0.4450107 , -0.34817848, ...032405, 1.6625544 , -3.52021712, 0.2188629 ]]])}::test_nonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNonzero_param_2_{array=array([], dtype=float64)}::test_nonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNonzero_param_3_{array=array([], shape=(0, 2), dtype=float64)}::test_nonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNonzero_param_4_{array=array([], shape=(0, 2, 0), dtype=float64)}::test_nonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNonzeroZeroDimension_param_0_{array=array(0)}::test_nonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNonzeroZeroDimension_param_1_{array=array(1)}::test_nonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestFlatNonzero_param_0_{array=array([0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1])}::test_flatnonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestFlatNonzero_param_1_{array=array([[[-1.89374761, 1.70946046, -0.35260335, ...762995, -1.49683343, -0.08232233, 2.13867856]]])}::test_flatnonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestFlatNonzero_param_2_{array=array(0)}::test_flatnonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestFlatNonzero_param_3_{array=array(1)}::test_flatnonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestFlatNonzero_param_4_{array=array([], dtype=float64)}::test_flatnonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestFlatNonzero_param_5_{array=array([], shape=(0, 2), dtype=float64)}::test_flatnonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestFlatNonzero_param_6_{array=array([], shape=(0, 2, 0), dtype=float64)}::test_flatnonzero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgwhere_param_0_{array=array([1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1])}::test_argwhere | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgwhere_param_1_{array=array([[[-1.28572567e+00, 3.81630051e-01, -9.45...01, -7.36684094e-01, 2.88559888e+00]]])}::test_argwhere | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgwhere_param_2_{array=array([], dtype=float64)}::test_argwhere | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgwhere_param_3_{array=array([], shape=(0, 2), dtype=float64)}::test_argwhere | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgwhere_param_4_{array=array([], shape=(0, 2, 0), dtype=float64)}::test_argwhere | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgwhereZeroDimension_param_0_{value=0}::test_argwhere | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestArgwhereZeroDimension_param_1_{value=3}::test_argwhere | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_0_{bins=[], shape=(), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_1_{bins=[], shape=(), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_2_{bins=[], shape=(10,), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_3_{bins=[], shape=(10,), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_4_{bins=[], shape=(6, 3, 3), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_5_{bins=[], shape=(6, 3, 3), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_6_{bins=[0, 1, 2, 4, 10], shape=(), side='left'}::test_searchsorted | 8.98 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_7_{bins=[0, 1, 2, 4, 10], shape=(), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_8_{bins=[0, 1, 2, 4, 10], shape=(10,), side='left'}::test_searchsorted | 6.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_9_{bins=[0, 1, 2, 4, 10], shape=(10,), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_10_{bins=[0, 1, 2, 4, 10], shape=(6, 3, 3), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_11_{bins=[0, 1, 2, 4, 10], shape=(6, 3, 3), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_12_{bins=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], shape=(), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_13_{bins=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], shape=(), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_14_{bins=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], shape=(10,), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_15_{bins=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], shape=(10,), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_16_{bins=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], shape=(6, 3, 3), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_17_{bins=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], shape=(6, 3, 3), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_18_{bins=[0.0, 1.0, 2.5, 4.0, 10.0], shape=(), side='left'}::test_searchsorted | 7.63 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_19_{bins=[0.0, 1.0, 2.5, 4.0, 10.0], shape=(), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_20_{bins=[0.0, 1.0, 2.5, 4.0, 10.0], shape=(10,), side='left'}::test_searchsorted | 7.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_21_{bins=[0.0, 1.0, 2.5, 4.0, 10.0], shape=(10,), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_22_{bins=[0.0, 1.0, 2.5, 4.0, 10.0], shape=(6, 3, 3), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_23_{bins=[0.0, 1.0, 2.5, 4.0, 10.0], shape=(6, 3, 3), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_24_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], shape=(), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_25_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], shape=(), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_26_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], shape=(10,), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_27_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], shape=(10,), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_28_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], shape=(6, 3, 3), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_29_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], shape=(6, 3, 3), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_30_{bins=[1.5, 2.5, 4.0, 6.0], shape=(), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_31_{bins=[1.5, 2.5, 4.0, 6.0], shape=(), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_32_{bins=[1.5, 2.5, 4.0, 6.0], shape=(10,), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_33_{bins=[1.5, 2.5, 4.0, 6.0], shape=(10,), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_34_{bins=[1.5, 2.5, 4.0, 6.0], shape=(6, 3, 3), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_35_{bins=[1.5, 2.5, 4.0, 6.0], shape=(6, 3, 3), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_36_{bins=[-inf, 1.5, 2.5, 4.0, 6.0], shape=(), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_37_{bins=[-inf, 1.5, 2.5, 4.0, 6.0], shape=(), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_38_{bins=[-inf, 1.5, 2.5, 4.0, 6.0], shape=(10,), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_39_{bins=[-inf, 1.5, 2.5, 4.0, 6.0], shape=(10,), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_40_{bins=[-inf, 1.5, 2.5, 4.0, 6.0], shape=(6, 3, 3), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_41_{bins=[-inf, 1.5, 2.5, 4.0, 6.0], shape=(6, 3, 3), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_42_{bins=[1.5, 2.5, 4.0, 6.0, inf], shape=(), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_43_{bins=[1.5, 2.5, 4.0, 6.0, inf], shape=(), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_44_{bins=[1.5, 2.5, 4.0, 6.0, inf], shape=(10,), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_45_{bins=[1.5, 2.5, 4.0, 6.0, inf], shape=(10,), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_46_{bins=[1.5, 2.5, 4.0, 6.0, inf], shape=(6, 3, 3), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_47_{bins=[1.5, 2.5, 4.0, 6.0, inf], shape=(6, 3, 3), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_48_{bins=[-inf, 1.5, 2.5, 4.0, 6.0, inf], shape=(), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_49_{bins=[-inf, 1.5, 2.5, 4.0, 6.0, inf], shape=(), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_50_{bins=[-inf, 1.5, 2.5, 4.0, 6.0, inf], shape=(10,), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_51_{bins=[-inf, 1.5, 2.5, 4.0, 6.0, inf], shape=(10,), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_52_{bins=[-inf, 1.5, 2.5, 4.0, 6.0, inf], shape=(6, 3, 3), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_53_{bins=[-inf, 1.5, 2.5, 4.0, 6.0, inf], shape=(6, 3, 3), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_54_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], shape=(), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_55_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], shape=(), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_56_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], shape=(10,), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_57_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], shape=(10,), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_58_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], shape=(6, 3, 3), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_59_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], shape=(6, 3, 3), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_60_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 4.0, 4.0, 10.0], shape=(), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_61_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 4.0, 4.0, 10.0], shape=(), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_62_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 4.0, 4.0, 10.0], shape=(10,), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_63_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 4.0, 4.0, 10.0], shape=(10,), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_64_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 4.0, 4.0, 10.0], shape=(6, 3, 3), side='left'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSorted_param_65_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 4.0, 4.0, 10.0], shape=(6, 3, 3), side='right'}::test_searchsorted | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_0_{side='left'}::test_searchsorted_all_nans | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_0_{side='left'}::test_searchsorted_inf | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_0_{side='left'}::test_searchsorted_minf | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_0_{side='left'}::test_searchsorted_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_0_{side='left'}::test_searchsorted_nan_last | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_0_{side='left'}::test_searchsorted_nan_last_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_0_{side='left'}::test_searchsorted_nanbins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_1_{side='right'}::test_searchsorted_all_nans | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_1_{side='right'}::test_searchsorted_inf | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_1_{side='right'}::test_searchsorted_minf | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_1_{side='right'}::test_searchsorted_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_1_{side='right'}::test_searchsorted_nan_last | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_1_{side='right'}::test_searchsorted_nan_last_repeat | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedNanInf_param_1_{side='right'}::test_searchsorted_nanbins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmax_all | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmax_axis0 | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmax_axis1 | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmax_axis2 | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmax_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmax_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmax_tie | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmax_zero_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmax_zero_size_axis0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmax_zero_size_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmin_all | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmin_axis0 | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmin_axis1 | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmin_axis2 | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmin_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmin_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmin_tie | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmin_zero_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmin_zero_size_axis0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_argmin_zero_size_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_external_argmax_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_external_argmax_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_external_argmin_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearch::test_external_argmin_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestWhereError::test_one_argument | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_all | 2.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_axis0 | 2.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_axis1 | 2.24 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_axis2 | 2.20 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_nan2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_nan3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_nan4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_nan5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_tie | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_zero_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_zero_size_axis0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMin::test_nanargmin_zero_size_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_all | 2.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_axis0 | 2.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_axis1 | 2.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_axis2 | 2.19 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_nan2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_nan3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_nan4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_nan5 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_tie | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_zero_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_zero_size_axis0 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestNanArgMax::test_nanargmax_zero_size_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedInvalid::test_searchsorted_ndbins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedWithSorter::test_invalid_sorter | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedWithSorter::test_nonint_sorter | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_search.py::TestSearchSortedWithSorter::test_sorter | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_invalid_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_invalid_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_invalid_negative_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_invalid_negative_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_multi_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_negative_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_none_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_one_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_original_array_not_modified_multi_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_original_array_not_modified_one_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_zero_dim_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_argsort_zero_dim_invalid_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_nan1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_0_{external=False}::test_nan2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_invalid_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_invalid_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_invalid_negative_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_invalid_negative_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_multi_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_negative_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_none_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_one_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_original_array_not_modified_multi_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_original_array_not_modified_one_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_zero_dim_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_argsort_zero_dim_invalid_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_nan1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgsort_param_1_{external=True}::test_nan2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_invalid_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_invalid_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_invalid_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_invalid_negative_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_invalid_negative_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_invalid_negative_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_multi_dim | 9.77 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_negative_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_negative_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_none_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_one_dim | 17.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_sequence_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_0_{external=False, length=10}::test_partition_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_axis | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_invalid_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_invalid_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_invalid_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_invalid_negative_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_invalid_negative_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_invalid_negative_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_multi_dim | 11.11 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_negative_axis | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_negative_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_none_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_one_dim | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_sequence_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_1_{external=False, length=20000}::test_partition_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_invalid_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_invalid_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_invalid_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_invalid_negative_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_invalid_negative_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_invalid_negative_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_multi_dim | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_negative_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_negative_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_none_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_one_dim | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_sequence_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_2_{external=True, length=10}::test_partition_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_axis | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_invalid_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_invalid_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_invalid_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_invalid_negative_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_invalid_negative_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_invalid_negative_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_multi_dim | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_negative_axis | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_negative_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_none_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_one_dim | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_sequence_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestPartition_param_3_{external=True, length=20000}::test_partition_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_axis | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_invalid_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_invalid_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_invalid_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_invalid_negative_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_invalid_negative_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_invalid_negative_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_multi_dim | 9.78 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_negative_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_negative_kth | 2.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_non_contiguous | 2.74 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_none_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_one_dim | 8.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_sequence_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_0_{external=False}::test_argpartition_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_invalid_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_invalid_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_invalid_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_invalid_negative_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_invalid_negative_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_invalid_negative_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_multi_dim | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_negative_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_negative_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_none_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_one_dim | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_sequence_kth | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestArgpartition_param_1_{external=True}::test_argpartition_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_external_sort_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_external_sort_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_external_sort_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_external_sort_invalid_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_external_sort_invalid_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_external_sort_invalid_negative_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_external_sort_invalid_negative_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_external_sort_negative_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_external_sort_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_external_sort_none_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_external_sort_two_or_more_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_external_sort_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_nan1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_nan2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_nan3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_nan4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_axis3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_invalid_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_invalid_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_invalid_negative_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_invalid_negative_axis2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_negative_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_two_or_more_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort::test_sort_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestLexsort::test_F_order | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestLexsort::test_lexsort_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestLexsort::test_lexsort_one_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestLexsort::test_lexsort_three_or_more_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestLexsort::test_lexsort_two_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestLexsort::test_nan1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestLexsort::test_nan2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestLexsort::test_nan3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestLexsort::test_view | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestMsort::test_msort_multi_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestMsort::test_msort_one_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestMsort::test_msort_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort_complex::test_sort_complex_1dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort_complex::test_sort_complex_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort_complex::test_sort_complex_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/sorting_tests/test_sort.py::TestSort_complex::test_sort_complex_zero_dim | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_0_{mode='valid', shape1=(5,), shape2=(5,)}::test_correlate | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_1_{mode='valid', shape1=(5,), shape2=(6,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_2_{mode='valid', shape1=(5,), shape2=(20,)}::test_correlate | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_3_{mode='valid', shape1=(5,), shape2=(21,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_4_{mode='valid', shape1=(6,), shape2=(5,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_5_{mode='valid', shape1=(6,), shape2=(6,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_6_{mode='valid', shape1=(6,), shape2=(20,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_7_{mode='valid', shape1=(6,), shape2=(21,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_8_{mode='valid', shape1=(20,), shape2=(5,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_9_{mode='valid', shape1=(20,), shape2=(6,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_10_{mode='valid', shape1=(20,), shape2=(20,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_11_{mode='valid', shape1=(20,), shape2=(21,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_12_{mode='valid', shape1=(21,), shape2=(5,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_13_{mode='valid', shape1=(21,), shape2=(6,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_14_{mode='valid', shape1=(21,), shape2=(20,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_15_{mode='valid', shape1=(21,), shape2=(21,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_16_{mode='same', shape1=(5,), shape2=(5,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_17_{mode='same', shape1=(5,), shape2=(6,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_18_{mode='same', shape1=(5,), shape2=(20,)}::test_correlate | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_19_{mode='same', shape1=(5,), shape2=(21,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_20_{mode='same', shape1=(6,), shape2=(5,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_21_{mode='same', shape1=(6,), shape2=(6,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_22_{mode='same', shape1=(6,), shape2=(20,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_23_{mode='same', shape1=(6,), shape2=(21,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_24_{mode='same', shape1=(20,), shape2=(5,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_25_{mode='same', shape1=(20,), shape2=(6,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_26_{mode='same', shape1=(20,), shape2=(20,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_27_{mode='same', shape1=(20,), shape2=(21,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_28_{mode='same', shape1=(21,), shape2=(5,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_29_{mode='same', shape1=(21,), shape2=(6,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_30_{mode='same', shape1=(21,), shape2=(20,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_31_{mode='same', shape1=(21,), shape2=(21,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_32_{mode='full', shape1=(5,), shape2=(5,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_33_{mode='full', shape1=(5,), shape2=(6,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_34_{mode='full', shape1=(5,), shape2=(20,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_35_{mode='full', shape1=(5,), shape2=(21,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_36_{mode='full', shape1=(6,), shape2=(5,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_37_{mode='full', shape1=(6,), shape2=(6,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_38_{mode='full', shape1=(6,), shape2=(20,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_39_{mode='full', shape1=(6,), shape2=(21,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_40_{mode='full', shape1=(20,), shape2=(5,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_41_{mode='full', shape1=(20,), shape2=(6,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_42_{mode='full', shape1=(20,), shape2=(20,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_43_{mode='full', shape1=(20,), shape2=(21,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_44_{mode='full', shape1=(21,), shape2=(5,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_45_{mode='full', shape1=(21,), shape2=(6,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_46_{mode='full', shape1=(21,), shape2=(20,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateShapeCombination_param_47_{mode='full', shape1=(21,), shape2=(21,)}::test_correlate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelate_param_0_{mode='valid'}::test_correlate_large_non_contiguous | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelate_param_0_{mode='valid'}::test_correlate_non_contiguous | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelate_param_1_{mode='full'}::test_correlate_large_non_contiguous | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelate_param_2_{mode='same'}::test_correlate_large_non_contiguous | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelate_param_2_{mode='same'}::test_correlate_non_contiguous | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateInvalid_param_0_{mode='valid'}::test_correlate_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateInvalid_param_0_{mode='valid'}::test_correlate_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateInvalid_param_0_{mode='valid'}::test_correlate_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateInvalid_param_1_{mode='same'}::test_correlate_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateInvalid_param_1_{mode='same'}::test_correlate_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateInvalid_param_1_{mode='same'}::test_correlate_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateInvalid_param_2_{mode='full'}::test_correlate_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateInvalid_param_2_{mode='full'}::test_correlate_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrelateInvalid_param_2_{mode='full'}::test_correlate_zero_dim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrcoef::test_corrcoef | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrcoef::test_corrcoef_diag_exception | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrcoef::test_corrcoef_rowvar | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCorrcoef::test_corrcoef_y | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCov::test_cov | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCov::test_cov_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCov::test_cov_raises | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_correlation.py::TestCov::test_cov_warns | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_0_{right=True}::test_digitize_all_nan_bins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_0_{right=True}::test_digitize_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_0_{right=True}::test_digitize_nan_bins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_0_{right=True}::test_digitize_nan_bins_decreasing | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_0_{right=True}::test_digitize_nan_bins_decreasing_repeated | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_0_{right=True}::test_digitize_nan_bins_repeated | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_0_{right=True}::test_searchsorted_inf | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_0_{right=True}::test_searchsorted_minf | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_1_{right=False}::test_digitize_all_nan_bins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_1_{right=False}::test_digitize_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_1_{right=False}::test_digitize_nan_bins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_1_{right=False}::test_digitize_nan_bins_decreasing | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_1_{right=False}::test_digitize_nan_bins_decreasing_repeated | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_1_{right=False}::test_digitize_nan_bins_repeated | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_1_{right=False}::test_searchsorted_inf | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeNanInf_param_1_{right=False}::test_searchsorted_minf | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_bincount | 4.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_bincount_duplicated_value | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_bincount_invalid_weight_length | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_bincount_negative | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_bincount_too_deep | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_bincount_too_small | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_bincount_too_small_minlength | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_bincount_with_minlength | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_bincount_with_weight | 10.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_bincount_zero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram | 8.13 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_array_bins | 5.44 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_bins_not_ordered | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_complex_weights | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_complex_weights_uneven_bins | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_density | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_float_weights | 2.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_float_weights_dtype | 7.48 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_int_bins | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_int_weights | 5.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_int_weights_dtype | 6.80 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_int_weights_nonuniform_bins | 5.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_int_weights_normalized | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_invalid_range | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_invalid_range2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_list_bins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_numpy_bins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_range_lower_outliers | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_range_upper_outliers | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_range_with_density | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_range_with_weights_and_density | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_same_value | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_weights_basic | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram::test_histogram_weights_mismatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestCubHistogram::test_histogram | 2.74 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestCubHistogram::test_histogram_range_float | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestCubHistogram::test_histogram_with_bins | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestCubHistogram::test_histogram_with_bins2 | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_0_{bins=[1.5, 2.5, 4.0, 6.0], increasing=True, right=True, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_1_{bins=[1.5, 2.5, 4.0, 6.0], increasing=True, right=True, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_2_{bins=[1.5, 2.5, 4.0, 6.0], increasing=True, right=True, shape=(6, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_3_{bins=[1.5, 2.5, 4.0, 6.0], increasing=True, right=False, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_4_{bins=[1.5, 2.5, 4.0, 6.0], increasing=True, right=False, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_5_{bins=[1.5, 2.5, 4.0, 6.0], increasing=True, right=False, shape=(6, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_6_{bins=[1.5, 2.5, 4.0, 6.0], increasing=False, right=True, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_7_{bins=[1.5, 2.5, 4.0, 6.0], increasing=False, right=True, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_8_{bins=[1.5, 2.5, 4.0, 6.0], increasing=False, right=True, shape=(6, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_9_{bins=[1.5, 2.5, 4.0, 6.0], increasing=False, right=False, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_10_{bins=[1.5, 2.5, 4.0, 6.0], increasing=False, right=False, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_11_{bins=[1.5, 2.5, 4.0, 6.0], increasing=False, right=False, shape=(6, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_12_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], increasing=True, right=True, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_13_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], increasing=True, right=True, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_14_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], increasing=True, right=True, shape=(6, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_15_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], increasing=True, right=False, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_16_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], increasing=True, right=False, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_17_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], increasing=True, right=False, shape=(6, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_18_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], increasing=False, right=True, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_19_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], increasing=False, right=True, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_20_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], increasing=False, right=True, shape=(6, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_21_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], increasing=False, right=False, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_22_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], increasing=False, right=False, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_23_{bins=[-1.0, 1.0, 2.5, 4.0, 20.0], increasing=False, right=False, shape=(6, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_24_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], increasing=True, right=True, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_25_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], increasing=True, right=True, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_26_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], increasing=True, right=True, shape=(6, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_27_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], increasing=True, right=False, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_28_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], increasing=True, right=False, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_29_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], increasing=True, right=False, shape=(6, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_30_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], increasing=False, right=True, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_31_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], increasing=False, right=True, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_32_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], increasing=False, right=True, shape=(6, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_33_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], increasing=False, right=False, shape=()}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_34_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], increasing=False, right=False, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitize::test_digitize[_param_35_{bins=[0.0, 1.0, 1.0, 4.0, 4.0, 10.0], increasing=False, right=False, shape=(6, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeInvalid::test_digitize_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestDigitizeInvalid::test_digitize_nd_bins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_0_{bins=10, density=True, range=None, weights=None, weights_dtype=int32}] | 32.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_1_{bins=10, density=True, range=None, weights=None, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_2_{bins=10, density=True, range=None, weights=1, weights_dtype=int32}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_3_{bins=10, density=True, range=None, weights=1, weights_dtype=float64}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_4_{bins=10, density=True, range=None, weights=2, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_5_{bins=10, density=True, range=None, weights=2, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_6_{bins=10, density=True, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_7_{bins=10, density=True, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_8_{bins=10, density=True, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_9_{bins=10, density=True, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_10_{bins=10, density=True, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_11_{bins=10, density=True, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_12_{bins=10, density=False, range=None, weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_13_{bins=10, density=False, range=None, weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_14_{bins=10, density=False, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_15_{bins=10, density=False, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_16_{bins=10, density=False, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_17_{bins=10, density=False, range=None, weights=2, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_18_{bins=10, density=False, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_19_{bins=10, density=False, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_20_{bins=10, density=False, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_21_{bins=10, density=False, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_22_{bins=10, density=False, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_23_{bins=10, density=False, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_24_{bins=(8, 16, 12), density=True, range=None, weights=None, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_25_{bins=(8, 16, 12), density=True, range=None, weights=None, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_26_{bins=(8, 16, 12), density=True, range=None, weights=1, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_27_{bins=(8, 16, 12), density=True, range=None, weights=1, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_28_{bins=(8, 16, 12), density=True, range=None, weights=2, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_29_{bins=(8, 16, 12), density=True, range=None, weights=2, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_30_{bins=(8, 16, 12), density=True, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_31_{bins=(8, 16, 12), density=True, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_32_{bins=(8, 16, 12), density=True, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_33_{bins=(8, 16, 12), density=True, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_34_{bins=(8, 16, 12), density=True, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_35_{bins=(8, 16, 12), density=True, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_36_{bins=(8, 16, 12), density=False, range=None, weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_37_{bins=(8, 16, 12), density=False, range=None, weights=None, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_38_{bins=(8, 16, 12), density=False, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_39_{bins=(8, 16, 12), density=False, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_40_{bins=(8, 16, 12), density=False, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_41_{bins=(8, 16, 12), density=False, range=None, weights=2, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_42_{bins=(8, 16, 12), density=False, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_43_{bins=(8, 16, 12), density=False, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_44_{bins=(8, 16, 12), density=False, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_45_{bins=(8, 16, 12), density=False, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_46_{bins=(8, 16, 12), density=False, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_47_{bins=(8, 16, 12), density=False, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_48_{bins=(16, 8, 12), density=True, range=None, weights=None, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_49_{bins=(16, 8, 12), density=True, range=None, weights=None, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_50_{bins=(16, 8, 12), density=True, range=None, weights=1, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_51_{bins=(16, 8, 12), density=True, range=None, weights=1, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_52_{bins=(16, 8, 12), density=True, range=None, weights=2, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_53_{bins=(16, 8, 12), density=True, range=None, weights=2, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_54_{bins=(16, 8, 12), density=True, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_55_{bins=(16, 8, 12), density=True, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_56_{bins=(16, 8, 12), density=True, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_57_{bins=(16, 8, 12), density=True, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_58_{bins=(16, 8, 12), density=True, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_59_{bins=(16, 8, 12), density=True, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_60_{bins=(16, 8, 12), density=False, range=None, weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_61_{bins=(16, 8, 12), density=False, range=None, weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_62_{bins=(16, 8, 12), density=False, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_63_{bins=(16, 8, 12), density=False, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_64_{bins=(16, 8, 12), density=False, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_65_{bins=(16, 8, 12), density=False, range=None, weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_66_{bins=(16, 8, 12), density=False, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_67_{bins=(16, 8, 12), density=False, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_68_{bins=(16, 8, 12), density=False, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_69_{bins=(16, 8, 12), density=False, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_70_{bins=(16, 8, 12), density=False, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_71_{bins=(16, 8, 12), density=False, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_72_{bins=(16, 12, 8), density=True, range=None, weights=None, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_73_{bins=(16, 12, 8), density=True, range=None, weights=None, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_74_{bins=(16, 12, 8), density=True, range=None, weights=1, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_75_{bins=(16, 12, 8), density=True, range=None, weights=1, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_76_{bins=(16, 12, 8), density=True, range=None, weights=2, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_77_{bins=(16, 12, 8), density=True, range=None, weights=2, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_78_{bins=(16, 12, 8), density=True, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_79_{bins=(16, 12, 8), density=True, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_80_{bins=(16, 12, 8), density=True, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_81_{bins=(16, 12, 8), density=True, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_82_{bins=(16, 12, 8), density=True, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_83_{bins=(16, 12, 8), density=True, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_84_{bins=(16, 12, 8), density=False, range=None, weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_85_{bins=(16, 12, 8), density=False, range=None, weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_86_{bins=(16, 12, 8), density=False, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_87_{bins=(16, 12, 8), density=False, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_88_{bins=(16, 12, 8), density=False, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_89_{bins=(16, 12, 8), density=False, range=None, weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_90_{bins=(16, 12, 8), density=False, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_91_{bins=(16, 12, 8), density=False, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_92_{bins=(16, 12, 8), density=False, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_93_{bins=(16, 12, 8), density=False, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_94_{bins=(16, 12, 8), density=False, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_95_{bins=(16, 12, 8), density=False, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_96_{bins=(12, 8, 16), density=True, range=None, weights=None, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_97_{bins=(12, 8, 16), density=True, range=None, weights=None, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_98_{bins=(12, 8, 16), density=True, range=None, weights=1, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_99_{bins=(12, 8, 16), density=True, range=None, weights=1, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_100_{bins=(12, 8, 16), density=True, range=None, weights=2, weights_dtype=int32}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_101_{bins=(12, 8, 16), density=True, range=None, weights=2, weights_dtype=float64}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_102_{bins=(12, 8, 16), density=True, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_103_{bins=(12, 8, 16), density=True, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_104_{bins=(12, 8, 16), density=True, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_105_{bins=(12, 8, 16), density=True, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_106_{bins=(12, 8, 16), density=True, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_107_{bins=(12, 8, 16), density=True, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_108_{bins=(12, 8, 16), density=False, range=None, weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_109_{bins=(12, 8, 16), density=False, range=None, weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_110_{bins=(12, 8, 16), density=False, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_111_{bins=(12, 8, 16), density=False, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_112_{bins=(12, 8, 16), density=False, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_113_{bins=(12, 8, 16), density=False, range=None, weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_114_{bins=(12, 8, 16), density=False, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_115_{bins=(12, 8, 16), density=False, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_116_{bins=(12, 8, 16), density=False, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_117_{bins=(12, 8, 16), density=False, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_118_{bins=(12, 8, 16), density=False, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_119_{bins=(12, 8, 16), density=False, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_120_{bins='array_list', density=True, range=None, weights=None, weights_dtype=int32}] | 17.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_121_{bins='array_list', density=True, range=None, weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_122_{bins='array_list', density=True, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_123_{bins='array_list', density=True, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_124_{bins='array_list', density=True, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_125_{bins='array_list', density=True, range=None, weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_126_{bins='array_list', density=True, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_127_{bins='array_list', density=True, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_128_{bins='array_list', density=True, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_129_{bins='array_list', density=True, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_130_{bins='array_list', density=True, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_131_{bins='array_list', density=True, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_132_{bins='array_list', density=False, range=None, weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_133_{bins='array_list', density=False, range=None, weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_134_{bins='array_list', density=False, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_135_{bins='array_list', density=False, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_136_{bins='array_list', density=False, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_137_{bins='array_list', density=False, range=None, weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_138_{bins='array_list', density=False, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_139_{bins='array_list', density=False, range=((20, 50), (10, 100), (0, 40)), weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_140_{bins='array_list', density=False, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_141_{bins='array_list', density=False, range=((20, 50), (10, 100), (0, 40)), weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_142_{bins='array_list', density=False, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramdd::test_histogramdd[_param_143_{bins='array_list', density=False, range=((20, 50), (10, 100), (0, 40)), weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramddErrors::test_histogramdd_disallow_arraylike_bins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramddErrors::test_histogramdd_invalid_bins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramddErrors::test_histogramdd_invalid_bins2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramddErrors::test_histogramdd_invalid_bins3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramddErrors::test_histogramdd_invalid_bins4 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogramddErrors::test_histogramdd_invalid_range | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_0_{bins=10, density=True, range=None, weights=None, weights_dtype=int32}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_1_{bins=10, density=True, range=None, weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_2_{bins=10, density=True, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_3_{bins=10, density=True, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_4_{bins=10, density=True, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_5_{bins=10, density=True, range=None, weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_6_{bins=10, density=True, range=((20, 50), (10, 100)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_7_{bins=10, density=True, range=((20, 50), (10, 100)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_8_{bins=10, density=True, range=((20, 50), (10, 100)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_9_{bins=10, density=True, range=((20, 50), (10, 100)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_10_{bins=10, density=True, range=((20, 50), (10, 100)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_11_{bins=10, density=True, range=((20, 50), (10, 100)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_12_{bins=10, density=False, range=None, weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_13_{bins=10, density=False, range=None, weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_14_{bins=10, density=False, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_15_{bins=10, density=False, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_16_{bins=10, density=False, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_17_{bins=10, density=False, range=None, weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_18_{bins=10, density=False, range=((20, 50), (10, 100)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_19_{bins=10, density=False, range=((20, 50), (10, 100)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_20_{bins=10, density=False, range=((20, 50), (10, 100)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_21_{bins=10, density=False, range=((20, 50), (10, 100)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_22_{bins=10, density=False, range=((20, 50), (10, 100)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_23_{bins=10, density=False, range=((20, 50), (10, 100)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_24_{bins=(8, 16), density=True, range=None, weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_25_{bins=(8, 16), density=True, range=None, weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_26_{bins=(8, 16), density=True, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_27_{bins=(8, 16), density=True, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_28_{bins=(8, 16), density=True, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_29_{bins=(8, 16), density=True, range=None, weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_30_{bins=(8, 16), density=True, range=((20, 50), (10, 100)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_31_{bins=(8, 16), density=True, range=((20, 50), (10, 100)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_32_{bins=(8, 16), density=True, range=((20, 50), (10, 100)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_33_{bins=(8, 16), density=True, range=((20, 50), (10, 100)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_34_{bins=(8, 16), density=True, range=((20, 50), (10, 100)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_35_{bins=(8, 16), density=True, range=((20, 50), (10, 100)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_36_{bins=(8, 16), density=False, range=None, weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_37_{bins=(8, 16), density=False, range=None, weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_38_{bins=(8, 16), density=False, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_39_{bins=(8, 16), density=False, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_40_{bins=(8, 16), density=False, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_41_{bins=(8, 16), density=False, range=None, weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_42_{bins=(8, 16), density=False, range=((20, 50), (10, 100)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_43_{bins=(8, 16), density=False, range=((20, 50), (10, 100)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_44_{bins=(8, 16), density=False, range=((20, 50), (10, 100)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_45_{bins=(8, 16), density=False, range=((20, 50), (10, 100)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_46_{bins=(8, 16), density=False, range=((20, 50), (10, 100)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_47_{bins=(8, 16), density=False, range=((20, 50), (10, 100)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_48_{bins=(16, 8), density=True, range=None, weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_49_{bins=(16, 8), density=True, range=None, weights=None, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_50_{bins=(16, 8), density=True, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_51_{bins=(16, 8), density=True, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_52_{bins=(16, 8), density=True, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_53_{bins=(16, 8), density=True, range=None, weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_54_{bins=(16, 8), density=True, range=((20, 50), (10, 100)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_55_{bins=(16, 8), density=True, range=((20, 50), (10, 100)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_56_{bins=(16, 8), density=True, range=((20, 50), (10, 100)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_57_{bins=(16, 8), density=True, range=((20, 50), (10, 100)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_58_{bins=(16, 8), density=True, range=((20, 50), (10, 100)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_59_{bins=(16, 8), density=True, range=((20, 50), (10, 100)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_60_{bins=(16, 8), density=False, range=None, weights=None, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_61_{bins=(16, 8), density=False, range=None, weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_62_{bins=(16, 8), density=False, range=None, weights=1, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_63_{bins=(16, 8), density=False, range=None, weights=1, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_64_{bins=(16, 8), density=False, range=None, weights=2, weights_dtype=int32}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_65_{bins=(16, 8), density=False, range=None, weights=2, weights_dtype=float64}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_66_{bins=(16, 8), density=False, range=((20, 50), (10, 100)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_67_{bins=(16, 8), density=False, range=((20, 50), (10, 100)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_68_{bins=(16, 8), density=False, range=((20, 50), (10, 100)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_69_{bins=(16, 8), density=False, range=((20, 50), (10, 100)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_70_{bins=(16, 8), density=False, range=((20, 50), (10, 100)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_71_{bins=(16, 8), density=False, range=((20, 50), (10, 100)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_72_{bins='array_list', density=True, range=None, weights=None, weights_dtype=int32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_73_{bins='array_list', density=True, range=None, weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_74_{bins='array_list', density=True, range=None, weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_75_{bins='array_list', density=True, range=None, weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_76_{bins='array_list', density=True, range=None, weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_77_{bins='array_list', density=True, range=None, weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_78_{bins='array_list', density=True, range=((20, 50), (10, 100)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_79_{bins='array_list', density=True, range=((20, 50), (10, 100)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_80_{bins='array_list', density=True, range=((20, 50), (10, 100)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_81_{bins='array_list', density=True, range=((20, 50), (10, 100)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_82_{bins='array_list', density=True, range=((20, 50), (10, 100)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_83_{bins='array_list', density=True, range=((20, 50), (10, 100)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_84_{bins='array_list', density=False, range=None, weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_85_{bins='array_list', density=False, range=None, weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_86_{bins='array_list', density=False, range=None, weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_87_{bins='array_list', density=False, range=None, weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_88_{bins='array_list', density=False, range=None, weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_89_{bins='array_list', density=False, range=None, weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_90_{bins='array_list', density=False, range=((20, 50), (10, 100)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_91_{bins='array_list', density=False, range=((20, 50), (10, 100)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_92_{bins='array_list', density=False, range=((20, 50), (10, 100)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_93_{bins='array_list', density=False, range=((20, 50), (10, 100)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_94_{bins='array_list', density=False, range=((20, 50), (10, 100)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_95_{bins='array_list', density=False, range=((20, 50), (10, 100)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_96_{bins='array', density=True, range=None, weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_97_{bins='array', density=True, range=None, weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_98_{bins='array', density=True, range=None, weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_99_{bins='array', density=True, range=None, weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_100_{bins='array', density=True, range=None, weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_101_{bins='array', density=True, range=None, weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_102_{bins='array', density=True, range=((20, 50), (10, 100)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_103_{bins='array', density=True, range=((20, 50), (10, 100)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_104_{bins='array', density=True, range=((20, 50), (10, 100)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_105_{bins='array', density=True, range=((20, 50), (10, 100)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_106_{bins='array', density=True, range=((20, 50), (10, 100)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_107_{bins='array', density=True, range=((20, 50), (10, 100)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_108_{bins='array', density=False, range=None, weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_109_{bins='array', density=False, range=None, weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_110_{bins='array', density=False, range=None, weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_111_{bins='array', density=False, range=None, weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_112_{bins='array', density=False, range=None, weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_113_{bins='array', density=False, range=None, weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_114_{bins='array', density=False, range=((20, 50), (10, 100)), weights=None, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_115_{bins='array', density=False, range=((20, 50), (10, 100)), weights=None, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_116_{bins='array', density=False, range=((20, 50), (10, 100)), weights=1, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_117_{bins='array', density=False, range=((20, 50), (10, 100)), weights=1, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_118_{bins='array', density=False, range=((20, 50), (10, 100)), weights=2, weights_dtype=int32}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2d::test_histogram2d[_param_119_{bins='array', density=False, range=((20, 50), (10, 100)), weights=2, weights_dtype=float64}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_histogram.py::TestHistogram2dErrors::test_histogram2d_disallow_arraylike_bins | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedian::test_median_noaxis | 9.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedian::test_median_axis1 | 10.26 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedian::test_median_axis2 | 9.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedian::test_median_overwrite_input | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedian::test_median_keepdims_axis1 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedian::test_median_keepdims_noaxis | 8.32 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedian::test_median_invalid_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedianAxis::test_median_axis_sequence[_param_0_{axis=(0, 1), keepdims=True, shape=(3, 4, 5)}] | 7.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedianAxis::test_median_axis_sequence[_param_1_{axis=(0, 1), keepdims=False, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedianAxis::test_median_axis_sequence[_param_2_{axis=(0, -1), keepdims=True, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedianAxis::test_median_axis_sequence[_param_3_{axis=(0, -1), keepdims=False, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedianAxis::test_median_axis_sequence[_param_4_{axis=(1, 2), keepdims=True, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedianAxis::test_median_axis_sequence[_param_5_{axis=(1, 2), keepdims=False, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedianAxis::test_median_axis_sequence[_param_6_{axis=(1,), keepdims=True, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMedianAxis::test_median_axis_sequence[_param_7_{axis=(1,), keepdims=False, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_0_{axis=None, keepdims=True, overwrite_input=True, shape=(3, 4, 5)}] | 6.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_1_{axis=None, keepdims=True, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_2_{axis=None, keepdims=False, overwrite_input=True, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_3_{axis=None, keepdims=False, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_4_{axis=0, keepdims=True, overwrite_input=True, shape=(3, 4, 5)}] | 6.79 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_5_{axis=0, keepdims=True, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_6_{axis=0, keepdims=False, overwrite_input=True, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_7_{axis=0, keepdims=False, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_8_{axis=1, keepdims=True, overwrite_input=True, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_9_{axis=1, keepdims=True, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_10_{axis=1, keepdims=False, overwrite_input=True, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_11_{axis=1, keepdims=False, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_12_{axis=-1, keepdims=True, overwrite_input=True, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_13_{axis=-1, keepdims=True, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_14_{axis=-1, keepdims=False, overwrite_input=True, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_15_{axis=-1, keepdims=False, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_16_{axis=(0, 1), keepdims=True, overwrite_input=True, shape=(3, 4, 5)}] | 6.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_17_{axis=(0, 1), keepdims=True, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_18_{axis=(0, 1), keepdims=False, overwrite_input=True, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_19_{axis=(0, 1), keepdims=False, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_20_{axis=(0, 2), keepdims=True, overwrite_input=True, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_21_{axis=(0, 2), keepdims=True, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_22_{axis=(0, 2), keepdims=False, overwrite_input=True, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_23_{axis=(0, 2), keepdims=False, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_24_{axis=(-1, -2), keepdims=True, overwrite_input=True, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_25_{axis=(-1, -2), keepdims=True, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_26_{axis=(-1, -2), keepdims=False, overwrite_input=True, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_27_{axis=(-1, -2), keepdims=False, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_28_{axis=[0, 1], keepdims=True, overwrite_input=True, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_29_{axis=[0, 1], keepdims=True, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_30_{axis=[0, 1], keepdims=False, overwrite_input=True, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMedian::test_nanmedian[_param_31_{axis=[0, 1], keepdims=False, overwrite_input=False, shape=(3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestAverage::test_average_all | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestAverage::test_average_axis | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestAverage::test_average_weights | 8.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestAverage::test_average_axis_weights | 4.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestAverage::test_returned | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_mean_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_external_mean_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_mean_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_external_mean_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_mean_all_float64_dtype | 1.38 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_mean_all_int64_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_mean_all_complex_dtype | 9.14 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_var_all | 10.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_external_var_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_var_all_ddof | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_external_var_all_ddof | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_var_axis | 10.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_external_var_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_var_axis_ddof | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_external_var_axis_ddof | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_std_all | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_external_std_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_std_all_ddof | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_external_std_all_ddof | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_std_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_external_std_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_std_axis_ddof | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestMeanVar::test_external_std_axis_ddof | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_without_nan[_param_0_{axis=None, keepdims=True, shape=(3, 4)}] | 2.82 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_without_nan[_param_1_{axis=None, keepdims=True, shape=(30, 40, 50)}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_without_nan[_param_2_{axis=None, keepdims=False, shape=(3, 4)}] | 2.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_without_nan[_param_3_{axis=None, keepdims=False, shape=(30, 40, 50)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_without_nan[_param_4_{axis=0, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_without_nan[_param_5_{axis=0, keepdims=True, shape=(30, 40, 50)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_without_nan[_param_6_{axis=0, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_without_nan[_param_7_{axis=0, keepdims=False, shape=(30, 40, 50)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_without_nan[_param_8_{axis=1, keepdims=True, shape=(3, 4)}] | 2.91 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_without_nan[_param_9_{axis=1, keepdims=True, shape=(30, 40, 50)}] | 2.99 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_without_nan[_param_10_{axis=1, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_without_nan[_param_11_{axis=1, keepdims=False, shape=(30, 40, 50)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_with_nan_float[_param_0_{axis=None, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_with_nan_float[_param_1_{axis=None, keepdims=True, shape=(30, 40, 50)}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_with_nan_float[_param_2_{axis=None, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_with_nan_float[_param_3_{axis=None, keepdims=False, shape=(30, 40, 50)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_with_nan_float[_param_4_{axis=0, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_with_nan_float[_param_5_{axis=0, keepdims=True, shape=(30, 40, 50)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_with_nan_float[_param_6_{axis=0, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_with_nan_float[_param_7_{axis=0, keepdims=False, shape=(30, 40, 50)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_with_nan_float[_param_8_{axis=1, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_with_nan_float[_param_9_{axis=1, keepdims=True, shape=(30, 40, 50)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_with_nan_float[_param_10_{axis=1, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMean::test_nanmean_with_nan_float[_param_11_{axis=1, keepdims=False, shape=(30, 40, 50)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMeanAdditional::test_nanmean_out | 6.28 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMeanAdditional::test_nanmean_float16 | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanMeanAdditional::test_nanmean_all_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_0_{axis=None, ddof=0, keepdims=True, shape=(3, 4)}] | 10.69 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_1_{axis=None, ddof=0, keepdims=True, shape=(4, 3, 5)}] | 7.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_2_{axis=None, ddof=0, keepdims=False, shape=(3, 4)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_3_{axis=None, ddof=0, keepdims=False, shape=(4, 3, 5)}] | 7.65 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_4_{axis=None, ddof=1, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_5_{axis=None, ddof=1, keepdims=True, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_6_{axis=None, ddof=1, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_7_{axis=None, ddof=1, keepdims=False, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_8_{axis=0, ddof=0, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_9_{axis=0, ddof=0, keepdims=True, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_10_{axis=0, ddof=0, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_11_{axis=0, ddof=0, keepdims=False, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_12_{axis=0, ddof=1, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_13_{axis=0, ddof=1, keepdims=True, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_14_{axis=0, ddof=1, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_15_{axis=0, ddof=1, keepdims=False, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_16_{axis=1, ddof=0, keepdims=True, shape=(3, 4)}] | 10.88 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_17_{axis=1, ddof=0, keepdims=True, shape=(4, 3, 5)}] | 2.94 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_18_{axis=1, ddof=0, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_19_{axis=1, ddof=0, keepdims=False, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_20_{axis=1, ddof=1, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_21_{axis=1, ddof=1, keepdims=True, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_22_{axis=1, ddof=1, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanvar[_param_23_{axis=1, ddof=1, keepdims=False, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_0_{axis=None, ddof=0, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_1_{axis=None, ddof=0, keepdims=True, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_2_{axis=None, ddof=0, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_3_{axis=None, ddof=0, keepdims=False, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_4_{axis=None, ddof=1, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_5_{axis=None, ddof=1, keepdims=True, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_6_{axis=None, ddof=1, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_7_{axis=None, ddof=1, keepdims=False, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_8_{axis=0, ddof=0, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_9_{axis=0, ddof=0, keepdims=True, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_10_{axis=0, ddof=0, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_11_{axis=0, ddof=0, keepdims=False, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_12_{axis=0, ddof=1, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_13_{axis=0, ddof=1, keepdims=True, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_14_{axis=0, ddof=1, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_15_{axis=0, ddof=1, keepdims=False, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_16_{axis=1, ddof=0, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_17_{axis=1, ddof=0, keepdims=True, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_18_{axis=1, ddof=0, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_19_{axis=1, ddof=0, keepdims=False, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_20_{axis=1, ddof=1, keepdims=True, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_21_{axis=1, ddof=1, keepdims=True, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_22_{axis=1, ddof=1, keepdims=False, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStd::test_nanstd[_param_23_{axis=1, ddof=1, keepdims=False, shape=(4, 3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStdAdditional::test_nanvar_out | 7.93 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStdAdditional::test_nanvar_float16 | 2.12 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStdAdditional::test_nanstd_out | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestNanVarStdAdditional::test_nanstd_float16 | 2.16 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_0_{func='mean', params=((), None)}] | 8.29 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_1_{func='mean', params=((0,), None)}] | 8.34 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_2_{func='mean', params=((0, 0), None)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_3_{func='mean', params=((0, 0), 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_4_{func='mean', params=((0, 0, 0), None)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_5_{func='mean', params=((0, 0, 0), (0, 2))}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_6_{func='std', params=((), None)}] | 8.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_7_{func='std', params=((0,), None)}] | 16.62 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_8_{func='std', params=((0, 0), None)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_9_{func='std', params=((0, 0), 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_10_{func='std', params=((0, 0, 0), None)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_11_{func='std', params=((0, 0, 0), (0, 2))}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_12_{func='var', params=((), None)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_13_{func='var', params=((0,), None)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_14_{func='var', params=((0, 0), None)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_15_{func='var', params=((0, 0), 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_16_{func='var', params=((0, 0, 0), None)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_meanvar.py::TestProductZeroLength::test_external_mean_zero_len[_param_17_{func='var', params=((0, 0, 0), (0, 2))}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmax_all | 16.41 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmax_all_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmax_axis0 | 9.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmax_axis1 | 10.75 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmax_axis2 | 10.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmax_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmax_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmin_all | 11.30 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmin_all_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmin_axis0 | 9.97 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmin_axis1 | 10.96 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmin_axis2 | 10.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmin_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_nanmin_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_percentile_bad_q | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_percentile_defaults | 6.89 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_percentile_keepdims | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_percentile_memory_access | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_percentile_neg_axis | 14.25 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_percentile_no_axis | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_percentile_out | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_percentile_out_of_range_q | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_percentile_q_list | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_percentile_scalar_q | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_percentile_tuple_axis | 7.06 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_percentile_unexpected_interpolation | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_ptp_all | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_ptp_all_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_ptp_axis0 | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_ptp_axis1 | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_ptp_axis2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_ptp_axis_large | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_ptp_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_quantile_bad_q | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_quantile_defaults | 6.81 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_quantile_keepdims | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_quantile_neg_axis | 6.40 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_quantile_no_axis | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_quantile_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_quantile_out_of_range_q | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_quantile_q_list | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_quantile_scalar_q | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_quantile_tuple_axis | 6.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/statistics_tests/test_order.py::TestOrder::test_quantile_unexpected_interpolation | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_0_{array_module_x=numpy, array_module_y=numpy, assertion='assert_allclose'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_0_{array_module_x=numpy, array_module_y=numpy, assertion='assert_allclose'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_1_{array_module_x=numpy, array_module_y=numpy, assertion='assert_array_almost_equal'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_1_{array_module_x=numpy, array_module_y=numpy, assertion='assert_array_almost_equal'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_2_{array_module_x=numpy, array_module_y=numpy, assertion='assert_array_almost_equal_nulp'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_2_{array_module_x=numpy, array_module_y=numpy, assertion='assert_array_almost_equal_nulp'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_3_{array_module_x=numpy, array_module_y=numpy, assertion='assert_array_max_ulp'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_3_{array_module_x=numpy, array_module_y=numpy, assertion='assert_array_max_ulp'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_4_{array_module_x=numpy, array_module_y=numpy, assertion='assert_array_equal'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_4_{array_module_x=numpy, array_module_y=numpy, assertion='assert_array_equal'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_5_{array_module_x=numpy, array_module_y=cupy, assertion='assert_allclose'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_5_{array_module_x=numpy, array_module_y=cupy, assertion='assert_allclose'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_6_{array_module_x=numpy, array_module_y=cupy, assertion='assert_array_almost_equal'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_6_{array_module_x=numpy, array_module_y=cupy, assertion='assert_array_almost_equal'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_7_{array_module_x=numpy, array_module_y=cupy, assertion='assert_array_almost_equal_nulp'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_7_{array_module_x=numpy, array_module_y=cupy, assertion='assert_array_almost_equal_nulp'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_8_{array_module_x=numpy, array_module_y=cupy, assertion='assert_array_max_ulp'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_8_{array_module_x=numpy, array_module_y=cupy, assertion='assert_array_max_ulp'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_9_{array_module_x=numpy, array_module_y=cupy, assertion='assert_array_equal'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_9_{array_module_x=numpy, array_module_y=cupy, assertion='assert_array_equal'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_10_{array_module_x=cupy, array_module_y=numpy, assertion='assert_allclose'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_10_{array_module_x=cupy, array_module_y=numpy, assertion='assert_allclose'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_11_{array_module_x=cupy, array_module_y=numpy, assertion='assert_array_almost_equal'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_11_{array_module_x=cupy, array_module_y=numpy, assertion='assert_array_almost_equal'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_12_{array_module_x=cupy, array_module_y=numpy, assertion='assert_array_almost_equal_nulp'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_12_{array_module_x=cupy, array_module_y=numpy, assertion='assert_array_almost_equal_nulp'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_13_{array_module_x=cupy, array_module_y=numpy, assertion='assert_array_max_ulp'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_13_{array_module_x=cupy, array_module_y=numpy, assertion='assert_array_max_ulp'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_14_{array_module_x=cupy, array_module_y=numpy, assertion='assert_array_equal'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_14_{array_module_x=cupy, array_module_y=numpy, assertion='assert_array_equal'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_15_{array_module_x=cupy, array_module_y=cupy, assertion='assert_allclose'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_15_{array_module_x=cupy, array_module_y=cupy, assertion='assert_allclose'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_16_{array_module_x=cupy, array_module_y=cupy, assertion='assert_array_almost_equal'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_16_{array_module_x=cupy, array_module_y=cupy, assertion='assert_array_almost_equal'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_17_{array_module_x=cupy, array_module_y=cupy, assertion='assert_array_almost_equal_nulp'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_17_{array_module_x=cupy, array_module_y=cupy, assertion='assert_array_almost_equal_nulp'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_18_{array_module_x=cupy, array_module_y=cupy, assertion='assert_array_max_ulp'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_18_{array_module_x=cupy, array_module_y=cupy, assertion='assert_array_max_ulp'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_19_{array_module_x=cupy, array_module_y=cupy, assertion='assert_array_equal'}::test_equality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestEqualityAssertion_param_19_{array_module_x=cupy, array_module_y=cupy, assertion='assert_array_equal'}::test_inequality | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_0_{array_module_x='all_numpy', array_module_y='all_numpy'}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_0_{array_module_x='all_numpy', array_module_y='all_numpy'}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_1_{array_module_x='all_numpy', array_module_y='all_cupy'}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_1_{array_module_x='all_numpy', array_module_y='all_cupy'}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_2_{array_module_x='all_numpy', array_module_y='random'}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_2_{array_module_x='all_numpy', array_module_y='random'}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_3_{array_module_x='all_cupy', array_module_y='all_numpy'}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_3_{array_module_x='all_cupy', array_module_y='all_numpy'}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_4_{array_module_x='all_cupy', array_module_y='all_cupy'}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_4_{array_module_x='all_cupy', array_module_y='all_cupy'}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_5_{array_module_x='all_cupy', array_module_y='random'}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_5_{array_module_x='all_cupy', array_module_y='random'}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_6_{array_module_x='random', array_module_y='all_numpy'}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_6_{array_module_x='random', array_module_y='all_numpy'}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_7_{array_module_x='random', array_module_y='all_cupy'}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_7_{array_module_x='random', array_module_y='all_cupy'}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_8_{array_module_x='random', array_module_y='random'}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestListEqualityAssertion_param_8_{array_module_x='random', array_module_y='random'}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestStridesEqualityAssertion_param_0_{array_module_x=numpy, array_module_y=numpy}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestStridesEqualityAssertion_param_0_{array_module_x=numpy, array_module_y=numpy}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestStridesEqualityAssertion_param_1_{array_module_x=numpy, array_module_y=cupy}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestStridesEqualityAssertion_param_1_{array_module_x=numpy, array_module_y=cupy}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestStridesEqualityAssertion_param_2_{array_module_x=cupy, array_module_y=numpy}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestStridesEqualityAssertion_param_2_{array_module_x=cupy, array_module_y=numpy}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestStridesEqualityAssertion_param_3_{array_module_x=cupy, array_module_y=cupy}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestStridesEqualityAssertion_param_3_{array_module_x=cupy, array_module_y=cupy}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestLessAssertion_param_0_{array_module_x=numpy, array_module_y=numpy}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestLessAssertion_param_0_{array_module_x=numpy, array_module_y=numpy}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestLessAssertion_param_1_{array_module_x=numpy, array_module_y=cupy}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestLessAssertion_param_1_{array_module_x=numpy, array_module_y=cupy}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestLessAssertion_param_2_{array_module_x=cupy, array_module_y=numpy}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestLessAssertion_param_2_{array_module_x=cupy, array_module_y=numpy}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestLessAssertion_param_3_{array_module_x=cupy, array_module_y=cupy}::test_equality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_array.py::TestLessAssertion_param_3_{array_module_x=cupy, array_module_y=cupy}::test_inequality_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::MockUnitTest::runTest | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRepeatWithSuccessAtLeast::test_all_trials_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRepeatWithSuccessAtLeast::test_all_trials_fail | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRepeatWithSuccessAtLeast::test_all_trials_fail2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRepeatWithSuccessAtLeast::test_all_trials_succeed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRepeatWithSuccessAtLeast::test_all_trials_succeed2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRepeatWithSuccessAtLeast::test_half_of_trials_succeed | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRepeatWithSuccessAtLeast::test_half_of_trials_succeed2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRepeat::test_failure_case | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRepeat::test_probabilistic_case | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRepeat::test_skip_case | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRepeat::test_success_case | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRetry::test_failure_case | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRetry::test_probabilistic_case | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRetry::test_skip_case | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_condition.py::TestRetry::test_success_case | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_0_{decorator='numpy_cupy_allclose'}::test_accept_error_cupy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_0_{decorator='numpy_cupy_allclose'}::test_accept_error_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_0_{decorator='numpy_cupy_allclose'}::test_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_0_{decorator='numpy_cupy_allclose'}::test_name | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_0_{decorator='numpy_cupy_allclose'}::test_valid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_1_{decorator='numpy_cupy_array_almost_equal'}::test_accept_error_cupy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_1_{decorator='numpy_cupy_array_almost_equal'}::test_accept_error_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_1_{decorator='numpy_cupy_array_almost_equal'}::test_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_1_{decorator='numpy_cupy_array_almost_equal'}::test_name | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_1_{decorator='numpy_cupy_array_almost_equal'}::test_valid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_2_{decorator='numpy_cupy_array_almost_equal_nulp'}::test_accept_error_cupy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_2_{decorator='numpy_cupy_array_almost_equal_nulp'}::test_accept_error_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_2_{decorator='numpy_cupy_array_almost_equal_nulp'}::test_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_2_{decorator='numpy_cupy_array_almost_equal_nulp'}::test_name | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_2_{decorator='numpy_cupy_array_almost_equal_nulp'}::test_valid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_3_{decorator='numpy_cupy_array_max_ulp'}::test_accept_error_cupy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_3_{decorator='numpy_cupy_array_max_ulp'}::test_accept_error_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_3_{decorator='numpy_cupy_array_max_ulp'}::test_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_3_{decorator='numpy_cupy_array_max_ulp'}::test_name | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_3_{decorator='numpy_cupy_array_max_ulp'}::test_valid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_4_{decorator='numpy_cupy_array_equal'}::test_accept_error_cupy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_4_{decorator='numpy_cupy_array_equal'}::test_accept_error_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_4_{decorator='numpy_cupy_array_equal'}::test_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_4_{decorator='numpy_cupy_array_equal'}::test_name | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyEqual_param_4_{decorator='numpy_cupy_array_equal'}::test_valid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyListEqual_param_0_{decorator='numpy_cupy_array_equal'}::test_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyListEqual_param_0_{decorator='numpy_cupy_array_equal'}::test_name | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyListEqual_param_0_{decorator='numpy_cupy_array_equal'}::test_valid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyLess_param_0_{decorator='numpy_cupy_array_less'}::test_accept_error_cupy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyLess_param_0_{decorator='numpy_cupy_array_less'}::test_accept_error_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyLess_param_0_{decorator='numpy_cupy_array_less'}::test_invalid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyLess_param_0_{decorator='numpy_cupy_array_less'}::test_name | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyLess_param_0_{decorator='numpy_cupy_array_less'}::test_valid | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_0_{shape=(3, 2), xp=numpy}::test_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_0_{shape=(3, 2), xp=numpy}::test_shape_and_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_0_{shape=(3, 2), xp=numpy}::test_value_range | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_1_{shape=(3, 2), xp=cupy}::test_complex | 2.76 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_1_{shape=(3, 2), xp=cupy}::test_shape_and_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_1_{shape=(3, 2), xp=cupy}::test_value_range | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_2_{shape=(), xp=numpy}::test_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_2_{shape=(), xp=numpy}::test_shape_and_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_2_{shape=(), xp=numpy}::test_value_range | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_3_{shape=(), xp=cupy}::test_complex | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_3_{shape=(), xp=cupy}::test_shape_and_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_3_{shape=(), xp=cupy}::test_value_range | 4.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_4_{shape=(3, 0, 2), xp=numpy}::test_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_4_{shape=(3, 0, 2), xp=numpy}::test_shape_and_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_4_{shape=(3, 0, 2), xp=numpy}::test_value_range | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_5_{shape=(3, 0, 2), xp=cupy}::test_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_5_{shape=(3, 0, 2), xp=cupy}::test_shape_and_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandom_param_5_{shape=(3, 0, 2), xp=cupy}::test_value_range | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandomBool_param_0_{xp=numpy}::test_bool | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestShapedRandomBool_param_1_{xp=cupy}::test_bool | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_0_{dtype=float16, x_s_shapes=((0, 0), (0,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_1_{dtype=float16, x_s_shapes=((0, 0), (0,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_2_{dtype=float16, x_s_shapes=((2, 2), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_3_{dtype=float16, x_s_shapes=((2, 2), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_4_{dtype=float16, x_s_shapes=((2, 3), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_5_{dtype=float16, x_s_shapes=((2, 3), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_6_{dtype=float16, x_s_shapes=((3, 2), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_7_{dtype=float16, x_s_shapes=((3, 2), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_8_{dtype=float16, x_s_shapes=((2, 2), ()), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_9_{dtype=float16, x_s_shapes=((2, 2), ()), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_10_{dtype=float32, x_s_shapes=((0, 0), (0,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_11_{dtype=float32, x_s_shapes=((0, 0), (0,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_12_{dtype=float32, x_s_shapes=((2, 2), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_13_{dtype=float32, x_s_shapes=((2, 2), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_14_{dtype=float32, x_s_shapes=((2, 3), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_15_{dtype=float32, x_s_shapes=((2, 3), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_16_{dtype=float32, x_s_shapes=((3, 2), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_17_{dtype=float32, x_s_shapes=((3, 2), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_18_{dtype=float32, x_s_shapes=((2, 2), ()), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_19_{dtype=float32, x_s_shapes=((2, 2), ()), xp=cupy}::test_generate_matrix | 0.67 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_20_{dtype=float64, x_s_shapes=((0, 0), (0,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_21_{dtype=float64, x_s_shapes=((0, 0), (0,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_22_{dtype=float64, x_s_shapes=((2, 2), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_23_{dtype=float64, x_s_shapes=((2, 2), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_24_{dtype=float64, x_s_shapes=((2, 3), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_25_{dtype=float64, x_s_shapes=((2, 3), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_26_{dtype=float64, x_s_shapes=((3, 2), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_27_{dtype=float64, x_s_shapes=((3, 2), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_28_{dtype=float64, x_s_shapes=((2, 2), ()), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_29_{dtype=float64, x_s_shapes=((2, 2), ()), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_30_{dtype=complex64, x_s_shapes=((0, 0), (0,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_31_{dtype=complex64, x_s_shapes=((0, 0), (0,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_32_{dtype=complex64, x_s_shapes=((2, 2), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_33_{dtype=complex64, x_s_shapes=((2, 2), (2,)), xp=cupy}::test_generate_matrix | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_34_{dtype=complex64, x_s_shapes=((2, 3), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_35_{dtype=complex64, x_s_shapes=((2, 3), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_36_{dtype=complex64, x_s_shapes=((3, 2), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_37_{dtype=complex64, x_s_shapes=((3, 2), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_38_{dtype=complex64, x_s_shapes=((2, 2), ()), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_39_{dtype=complex64, x_s_shapes=((2, 2), ()), xp=cupy}::test_generate_matrix | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_40_{dtype=complex128, x_s_shapes=((0, 0), (0,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_41_{dtype=complex128, x_s_shapes=((0, 0), (0,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_42_{dtype=complex128, x_s_shapes=((2, 2), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_43_{dtype=complex128, x_s_shapes=((2, 2), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_44_{dtype=complex128, x_s_shapes=((2, 3), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_45_{dtype=complex128, x_s_shapes=((2, 3), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_46_{dtype=complex128, x_s_shapes=((3, 2), (2,)), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_47_{dtype=complex128, x_s_shapes=((3, 2), (2,)), xp=cupy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_48_{dtype=complex128, x_s_shapes=((2, 2), ()), xp=numpy}::test_generate_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrix_param_49_{dtype=complex128, x_s_shapes=((2, 2), ()), xp=cupy}::test_generate_matrix | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_0_{framework='unittest'}::test_dtypes | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float32'> (Test for skipping a dtype in @for_all_dtypes) | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_0_{framework='unittest'}::test_dtypes_allclose | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float32'> (Test for skipping a dtype in @for_all_dtypes) | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_1_{framework='pytest'}::test_dtypes | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float32'> (Test for skipping a dtype in @for_all_dtypes) | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestSkip_param_1_{framework='pytest'}::test_dtypes_allclose | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float32'> (Test for skipping a dtype in @for_all_dtypes) | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestContainsSignedAndUnsigned::test_include | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestContainsSignedAndUnsigned::test_signed_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestContainsSignedAndUnsigned::test_unsigned_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_axis_error_different_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_axis_error_index_different_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_axis_error_value_different_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_both_success | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_cupy_derived_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_cupy_derived_unaccept_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_cupy_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_cupy_numpy_different_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_forbidden_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_numpy_derived_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_numpy_derived_unaccept_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_numpy_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestCheckCupyNumpyError::test_same_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyAllCloseTolPerDtype::test_atol_invalid_key | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyAllCloseTolPerDtype::test_atol_per_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyAllCloseTolPerDtype::test_rtol_invalid_key | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestNumPyCuPyAllCloseTolPerDtype::test_rtol_per_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestIgnoreOfNegativeValueDifferenceOnCpuAndGpu::test_correct_failure | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestIgnoreOfNegativeValueDifferenceOnCpuAndGpu::test_correct_success | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrixInvalid::test_invalid_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrixInvalid::test_invalid_dtype_singular_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrixInvalid::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrixInvalid::test_negative_singular_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrixInvalid::test_no_singular_values | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrixInvalid::test_shape_mismatch | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestGenerateMatrixInvalid::test_shape_mismatch_2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestAssertFunctionIsCalled::test_fail_called_twice | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestAssertFunctionIsCalled::test_fail_not_called | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestAssertFunctionIsCalled::test_inner_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestAssertFunctionIsCalled::test_patch_ndarray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestAssertFunctionIsCalled::test_spy_ndarray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_helper.py::TestAssertFunctionIsCalled::test_times_called | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestProduct_param_0_{actual={'a': [1, 2], 'b': [3, 4, 5]}, expect=[{'a': 1, 'b': 3}, {'a': 1, 'b': 4}, {'a': 1, 'b...: 2, 'b': 3}, {'a': 2, 'b': 4}, {'a': 2, 'b': 5}]}::test_product | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestProduct_param_1_{actual={'a': [1, 2]}, expect=[{'a': 1}, {'a': 2}]}::test_product | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestProduct_param_2_{actual={'a': [1, 2], 'b': []}, expect=[]}::test_product | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestProduct_param_3_{actual={'a': []}, expect=[]}::test_product | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestProduct_param_4_{actual={}, expect=[{}]}::test_product | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestProductDict_param_0_{actual=[[{'a': 1, 'b': 3}, {'a': 2, 'b': 4}], [{'c': 5}, {'c': 6}]], expect=[{'a': 1, 'b': 3, 'c': 5}, {'a': 1, 'b': 3, 'c':...a': 2, 'b': 4, 'c': 5}, {'a': 2, 'b': 4, 'c': 6}]}::test_product_dict | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestProductDict_param_1_{actual=[[{'a': 1}, {'a': 2}], [{'b': 3}, {'b': 4}, {'b': 5}]], expect=[{'a': 1, 'b': 3}, {'a': 1, 'b': 4}, {'a': 1, 'b...: 2, 'b': 3}, {'a': 2, 'b': 4}, {'a': 2, 'b': 5}]}::test_product_dict | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestProductDict_param_2_{actual=[[{'a': 1}, {'a': 2}]], expect=[{'a': 1}, {'a': 2}]}::test_product_dict | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestProductDict_param_3_{actual=[[{'a': 1}, {'a': 2}], []], expect=[]}::test_product_dict | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestProductDict_param_4_{actual=[[]], expect=[]}::test_product_dict | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestProductDict_param_5_{actual=[], expect=[{}]}::test_product_dict | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterize_param_0_{callable=f}::test_callable | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterize_param_1_{callable=<lambda>}::test_callable | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterize_param_2_{callable=<cupy_tests.testing_tests.test_parameterized.C object at 0x7f24d265dc40>}::test_callable | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterize_param_3_{callable=method}::test_callable | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterizePytestImpl::test_callable[_param_0_{callable=f}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterizePytestImpl::test_callable[_param_1_{callable=<lambda>}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterizePytestImpl::test_callable[_param_2_{callable=<cupy_tests.testing_tests.test_parameterized.C object at 0x7f24d265de50>}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::TestParameterizePytestImpl::test_callable[_param_3_{callable=method}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::test_parameterize_pytest_impl[@testing.parameterize({'a': 1}, {'a': 2}) class TestA: def test_a(self): assert self.a > 0 -outcomes0] | 0.05 | |
|
------------------------------Captured stdout call------------------------------ ============================= test session starts ============================== platform linux -- Python 3.8.7, pytest-6.2.2, py-1.10.0, pluggy-0.13.1 -- /home/kmaeh/.pyenv/versions/rocm-ci/bin/python cachedir: .pytest_cache metadata: {'Python': '3.8.7', 'Platform': 'Linux-5.4.0-65-generic-x86_64-with-glibc2.27', 'Packages': {'pytest': '6.2.2', 'py': '1.10.0', 'pluggy': '0.13.1'}, 'Plugins': {'html': '3.1.1', 'metadata': '1.11.0'}} rootdir: /tmp/pytest-of-kmaeh/pytest-0/test_parameterize_pytest_impl0 plugins: html-3.1.1, metadata-1.11.0 collecting ... collected 2 items test_parameterize_pytest_impl.py::TestA::test_a[_param_0_{a=1}] PASSED [ 50%] test_parameterize_pytest_impl.py::TestA::test_a[_param_1_{a=2}] PASSED [100%] ============================== 2 passed in 0.01s =============================== | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::test_parameterize_pytest_impl[@testing.parameterize({'a': 1}, {'a': 2}) class TestA: def test_a(self): assert self.a == 1 -outcomes1] | 0.04 | |
|
------------------------------Captured stdout call------------------------------ ============================= test session starts ============================== platform linux -- Python 3.8.7, pytest-6.2.2, py-1.10.0, pluggy-0.13.1 -- /home/kmaeh/.pyenv/versions/rocm-ci/bin/python cachedir: .pytest_cache metadata: {'Python': '3.8.7', 'Platform': 'Linux-5.4.0-65-generic-x86_64-with-glibc2.27', 'Packages': {'pytest': '6.2.2', 'py': '1.10.0', 'pluggy': '0.13.1'}, 'Plugins': {'html': '3.1.1', 'metadata': '1.11.0'}} rootdir: /tmp/pytest-of-kmaeh/pytest-0/test_parameterize_pytest_impl1 plugins: html-3.1.1, metadata-1.11.0 collecting ... collected 2 items test_parameterize_pytest_impl.py::TestA::test_a[_param_0_{a=1}] PASSED [ 50%] test_parameterize_pytest_impl.py::TestA::test_a[_param_1_{a=2}] FAILED [100%] =========================== short test summary info ============================ FAILED test_parameterize_pytest_impl.py::TestA::test_a[_param_1_{a=2}] - asse... ========================= 1 failed, 1 passed in 0.01s ========================== | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::test_parameterize_pytest_impl[@testing.parameterize({'a': 1}, {'b': 2}) class TestA: def test_a(self): a = getattr(self, 'a', 3) b = getattr(self, 'b', 4) assert (a, b) in [(1, 4), (3, 2)] -outcomes2] | 0.04 | |
|
------------------------------Captured stdout call------------------------------ ============================= test session starts ============================== platform linux -- Python 3.8.7, pytest-6.2.2, py-1.10.0, pluggy-0.13.1 -- /home/kmaeh/.pyenv/versions/rocm-ci/bin/python cachedir: .pytest_cache metadata: {'Python': '3.8.7', 'Platform': 'Linux-5.4.0-65-generic-x86_64-with-glibc2.27', 'Packages': {'pytest': '6.2.2', 'py': '1.10.0', 'pluggy': '0.13.1'}, 'Plugins': {'html': '3.1.1', 'metadata': '1.11.0'}} rootdir: /tmp/pytest-of-kmaeh/pytest-0/test_parameterize_pytest_impl2 plugins: html-3.1.1, metadata-1.11.0 collecting ... collected 2 items test_parameterize_pytest_impl.py::TestA::test_a[_param_0_{a=1}] PASSED [ 50%] test_parameterize_pytest_impl.py::TestA::test_a[_param_1_{b=2}] PASSED [100%] ============================== 2 passed in 0.01s =============================== | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::test_parameterize_pytest_impl[import numpy @testing.parameterize({'a': numpy.array(1)}, {'a': 1}) class TestA: def test_first(self): assert self.a == 1 self.a += 2 def test_second(self): assert self.a == 1 self.a += 2 -outcomes3] | 0.04 | |
|
------------------------------Captured stdout call------------------------------ ============================= test session starts ============================== platform linux -- Python 3.8.7, pytest-6.2.2, py-1.10.0, pluggy-0.13.1 -- /home/kmaeh/.pyenv/versions/rocm-ci/bin/python cachedir: .pytest_cache metadata: {'Python': '3.8.7', 'Platform': 'Linux-5.4.0-65-generic-x86_64-with-glibc2.27', 'Packages': {'pytest': '6.2.2', 'py': '1.10.0', 'pluggy': '0.13.1'}, 'Plugins': {'html': '3.1.1', 'metadata': '1.11.0'}} rootdir: /tmp/pytest-of-kmaeh/pytest-0/test_parameterize_pytest_impl3 plugins: html-3.1.1, metadata-1.11.0 collecting ... collected 4 items test_parameterize_pytest_impl.py::TestA::test_first[_param_0_{a=array(1)}] PASSED [ 25%] test_parameterize_pytest_impl.py::TestA::test_first[_param_1_{a=1}] PASSED [ 50%] test_parameterize_pytest_impl.py::TestA::test_second[_param_0_{a=array(1)}] FAILED [ 75%] test_parameterize_pytest_impl.py::TestA::test_second[_param_1_{a=1}] PASSED [100%] =========================== short test summary info ============================ FAILED test_parameterize_pytest_impl.py::TestA::test_second[_param_0_{a=array(1)}] ========================= 1 failed, 3 passed in 0.01s ========================== | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::test_parameterize_pytest_impl[@testing.parameterize({'a': 1, 'b': 4}, {'a': 2, 'b': 3}) class TestA: c = 5 def test_a(self): assert self.a + self.b == self.c -outcomes4] | 0.04 | |
|
------------------------------Captured stdout call------------------------------ ============================= test session starts ============================== platform linux -- Python 3.8.7, pytest-6.2.2, py-1.10.0, pluggy-0.13.1 -- /home/kmaeh/.pyenv/versions/rocm-ci/bin/python cachedir: .pytest_cache metadata: {'Python': '3.8.7', 'Platform': 'Linux-5.4.0-65-generic-x86_64-with-glibc2.27', 'Packages': {'pytest': '6.2.2', 'py': '1.10.0', 'pluggy': '0.13.1'}, 'Plugins': {'html': '3.1.1', 'metadata': '1.11.0'}} rootdir: /tmp/pytest-of-kmaeh/pytest-0/test_parameterize_pytest_impl4 plugins: html-3.1.1, metadata-1.11.0 collecting ... collected 2 items test_parameterize_pytest_impl.py::TestA::test_a[_param_0_{a=1, b=4}] PASSED [ 50%] test_parameterize_pytest_impl.py::TestA::test_a[_param_1_{a=2, b=3}] PASSED [100%] ============================== 2 passed in 0.01s =============================== | |||
| Passed | tests/cupy_tests/testing_tests/test_parameterized.py::test_parameterize_pytest_impl[import pytest @pytest.mark.parametrize("outer", ["E", "e"]) @testing.parameterize({"x": "D"}, {"x": "d"}) @pytest.mark.parametrize("inner", ["c", "C"]) class TestA: @pytest.mark.parametrize( ("fn1", "fn2"), [("A", "b"), ("a", "B")]) def test_a(self, fn2, inner, outer, fn1): assert ( (fn1 + fn2 + inner + self.x + outer).lower() == "abcde") @pytest.mark.parametrize( "fn", ["A", "a"]) def test_b(self, outer, fn, inner): assert sum( c.isupper() for c in [fn, inner, self.x, outer] ) != 2 -outcomes5] | 0.09 | |
|
------------------------------Captured stdout call------------------------------ ============================= test session starts ============================== platform linux -- Python 3.8.7, pytest-6.2.2, py-1.10.0, pluggy-0.13.1 -- /home/kmaeh/.pyenv/versions/rocm-ci/bin/python cachedir: .pytest_cache metadata: {'Python': '3.8.7', 'Platform': 'Linux-5.4.0-65-generic-x86_64-with-glibc2.27', 'Packages': {'pytest': '6.2.2', 'py': '1.10.0', 'pluggy': '0.13.1'}, 'Plugins': {'html': '3.1.1', 'metadata': '1.11.0'}} rootdir: /tmp/pytest-of-kmaeh/pytest-0/test_parameterize_pytest_impl5 plugins: html-3.1.1, metadata-1.11.0 collecting ... collected 32 items test_parameterize_pytest_impl.py::TestA::test_a[A-b-c-_param_0_{x='D'}-E] PASSED [ 3%] test_parameterize_pytest_impl.py::TestA::test_a[A-b-c-_param_0_{x='D'}-e] PASSED [ 6%] test_parameterize_pytest_impl.py::TestA::test_a[A-b-c-_param_1_{x='d'}-E] PASSED [ 9%] test_parameterize_pytest_impl.py::TestA::test_a[A-b-c-_param_1_{x='d'}-e] PASSED [ 12%] test_parameterize_pytest_impl.py::TestA::test_a[A-b-C-_param_0_{x='D'}-E] PASSED [ 15%] test_parameterize_pytest_impl.py::TestA::test_a[A-b-C-_param_0_{x='D'}-e] PASSED [ 18%] test_parameterize_pytest_impl.py::TestA::test_a[A-b-C-_param_1_{x='d'}-E] PASSED [ 21%] test_parameterize_pytest_impl.py::TestA::test_a[A-b-C-_param_1_{x='d'}-e] PASSED [ 25%] test_parameterize_pytest_impl.py::TestA::test_a[a-B-c-_param_0_{x='D'}-E] PASSED [ 28%] test_parameterize_pytest_impl.py::TestA::test_a[a-B-c-_param_0_{x='D'}-e] PASSED [ 31%] test_parameterize_pytest_impl.py::TestA::test_a[a-B-c-_param_1_{x='d'}-E] PASSED [ 34%] test_parameterize_pytest_impl.py::TestA::test_a[a-B-c-_param_1_{x='d'}-e] PASSED [ 37%] test_parameterize_pytest_impl.py::TestA::test_a[a-B-C-_param_0_{x='D'}-E] PASSED [ 40%] test_parameterize_pytest_impl.py::TestA::test_a[a-B-C-_param_0_{x='D'}-e] PASSED [ 43%] test_parameterize_pytest_impl.py::TestA::test_a[a-B-C-_param_1_{x='d'}-E] PASSED [ 46%] test_parameterize_pytest_impl.py::TestA::test_a[a-B-C-_param_1_{x='d'}-e] PASSED [ 50%] test_parameterize_pytest_impl.py::TestA::test_b[A-c-_param_0_{x='D'}-E] PASSED [ 53%] test_parameterize_pytest_impl.py::TestA::test_b[A-c-_param_0_{x='D'}-e] FAILED [ 56%] test_parameterize_pytest_impl.py::TestA::test_b[A-c-_param_1_{x='d'}-E] FAILED [ 59%] test_parameterize_pytest_impl.py::TestA::test_b[A-c-_param_1_{x='d'}-e] PASSED [ 62%] test_parameterize_pytest_impl.py::TestA::test_b[A-C-_param_0_{x='D'}-E] PASSED [ 65%] test_parameterize_pytest_impl.py::TestA::test_b[A-C-_param_0_{x='D'}-e] PASSED [ 68%] test_parameterize_pytest_impl.py::TestA::test_b[A-C-_param_1_{x='d'}-E] PASSED [ 71%] test_parameterize_pytest_impl.py::TestA::test_b[A-C-_param_1_{x='d'}-e] FAILED [ 75%] test_parameterize_pytest_impl.py::TestA::test_b[a-c-_param_0_{x='D'}-E] FAILED [ 78%] test_parameterize_pytest_impl.py::TestA::test_b[a-c-_param_0_{x='D'}-e] PASSED [ 81%] test_parameterize_pytest_impl.py::TestA::test_b[a-c-_param_1_{x='d'}-E] PASSED [ 84%] test_parameterize_pytest_impl.py::TestA::test_b[a-c-_param_1_{x='d'}-e] PASSED [ 87%] test_parameterize_pytest_impl.py::TestA::test_b[a-C-_param_0_{x='D'}-E] PASSED [ 90%] test_parameterize_pytest_impl.py::TestA::test_b[a-C-_param_0_{x='D'}-e] FAILED [ 93%] test_parameterize_pytest_impl.py::TestA::test_b[a-C-_param_1_{x='d'}-E] FAILED [ 96%] test_parameterize_pytest_impl.py::TestA::test_b[a-C-_param_1_{x='d'}-e] PASSED [100%] =========================== short test summary info ============================ FAILED test_parameterize_pytest_impl.py::TestA::test_b[A-c-_param_0_{x='D'}-e] FAILED test_parameterize_pytest_impl.py::TestA::test_b[A-c-_param_1_{x='d'}-E] FAILED test_parameterize_pytest_impl.py::TestA::test_b[A-C-_param_1_{x='d'}-e] FAILED test_parameterize_pytest_impl.py::TestA::test_b[a-c-_param_0_{x='D'}-E] FAILED test_parameterize_pytest_impl.py::TestA::test_b[a-C-_param_0_{x='D'}-e] FAILED test_parameterize_pytest_impl.py::TestA::test_b[a-C-_param_1_{x='d'}-E] ========================= 6 failed, 26 passed in 0.05s ========================= | |||
| Passed | tests/cupyx_tests/test_cupyx.py::TestErrState_param_0_{divide=None}::test_errstate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_cupyx.py::TestErrState_param_0_{divide=None}::test_seterr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_0_{dtype=float32, n=3, nrhs=None, order='C'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_1_{dtype=float32, n=3, nrhs=None, order='F'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_2_{dtype=float32, n=3, nrhs=1, order='C'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_3_{dtype=float32, n=3, nrhs=1, order='F'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_4_{dtype=float32, n=3, nrhs=4, order='C'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_4_{dtype=float32, n=3, nrhs=4, order='C'}::test_invalid_cases | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_5_{dtype=float32, n=3, nrhs=4, order='F'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_5_{dtype=float32, n=3, nrhs=4, order='F'}::test_invalid_cases | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_6_{dtype=float64, n=3, nrhs=None, order='C'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_7_{dtype=float64, n=3, nrhs=None, order='F'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_8_{dtype=float64, n=3, nrhs=1, order='C'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_9_{dtype=float64, n=3, nrhs=1, order='F'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_10_{dtype=float64, n=3, nrhs=4, order='C'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_10_{dtype=float64, n=3, nrhs=4, order='C'}::test_invalid_cases | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_11_{dtype=float64, n=3, nrhs=4, order='F'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_11_{dtype=float64, n=3, nrhs=4, order='F'}::test_invalid_cases | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_12_{dtype=complex64, n=3, nrhs=None, order='C'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_13_{dtype=complex64, n=3, nrhs=None, order='F'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_14_{dtype=complex64, n=3, nrhs=1, order='C'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_15_{dtype=complex64, n=3, nrhs=1, order='F'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_16_{dtype=complex64, n=3, nrhs=4, order='C'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_16_{dtype=complex64, n=3, nrhs=4, order='C'}::test_invalid_cases | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_17_{dtype=complex64, n=3, nrhs=4, order='F'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_17_{dtype=complex64, n=3, nrhs=4, order='F'}::test_invalid_cases | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_18_{dtype=complex128, n=3, nrhs=None, order='C'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_19_{dtype=complex128, n=3, nrhs=None, order='F'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_20_{dtype=complex128, n=3, nrhs=1, order='C'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_21_{dtype=complex128, n=3, nrhs=1, order='F'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_22_{dtype=complex128, n=3, nrhs=4, order='C'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_22_{dtype=complex128, n=3, nrhs=4, order='C'}::test_invalid_cases | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_23_{dtype=complex128, n=3, nrhs=4, order='F'}::test_gesv | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGesv_param_23_{dtype=complex128, n=3, nrhs=4, order='F'}::test_invalid_cases | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGels_param_0_{nrhs=None, shape=(4, 4)}::test_gels | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGels_param_1_{nrhs=None, shape=(5, 4)}::test_gels | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGels_param_2_{nrhs=None, shape=(4, 5)}::test_gels | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGels_param_3_{nrhs=1, shape=(4, 4)}::test_gels | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGels_param_4_{nrhs=1, shape=(5, 4)}::test_gels | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGels_param_5_{nrhs=1, shape=(4, 5)}::test_gels | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGels_param_6_{nrhs=4, shape=(4, 4)}::test_gels | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGels_param_7_{nrhs=4, shape=(5, 4)}::test_gels | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_lapack.py::TestGels_param_8_{nrhs=4, shape=(4, 5)}::test_gels | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_K_strides_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_contiguity2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_contiguity2_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_contiguity3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_contiguity3_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_contiguity_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_0_{shape=4}::test_empty_like_reshape_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_0_{shape=4}::test_zeros_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_0_{shape=4}::test_zeros_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_K_strides_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_contiguity2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_contiguity2_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_contiguity3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_contiguity3_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_contiguity_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_1_{shape=(4,)}::test_empty_like_reshape_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_1_{shape=(4,)}::test_zeros_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_1_{shape=(4,)}::test_zeros_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_K_strides_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_contiguity2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_contiguity2_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_contiguity3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_contiguity3_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_contiguity_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_empty_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_zeros_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_2_{shape=(4, 2)}::test_zeros_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_K_strides_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_contiguity2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_contiguity2_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_contiguity3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_contiguity3_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_contiguity_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_empty_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_zeros_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_3_{shape=(4, 2, 3)}::test_zeros_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_K_strides_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_contiguity2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_contiguity2_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_contiguity3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_contiguity3_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_contiguity_cupy_only | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_empty_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_zeros_like_reshape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasicReshape_param_4_{shape=(5, 4, 2, 3)}::test_zeros_like_reshape_cupy_only | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_empty_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_empty_like | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_empty_like_K_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_empty_like_contiguity | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_empty_like_contiguity2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_empty_like_contiguity3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_empty_like_invalid_order | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_empty_like_subok | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_empty_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_empty_zero_sized_array_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_zeros | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_zeros_int | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_zeros_like | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_zeros_like_subok | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_zeros_scalar | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_pinned_array.py::TestBasic::test_zeros_strides | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_rsqrt.py::TestRsqrt::test_rsqrt | 2.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_runtime.py::TestRuntime::test_runtime | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_scatter.py::TestScatter::test_scatter_add | 3.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_scatter.py::TestScatter::test_scatter_max | 3.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_scatter.py::TestScatter::test_scatter_min | 3.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_time.py::TestRepeat::test_cpu_routine | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_time.py::TestRepeat::test_multigpu_routine | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_time.py::TestRepeat::test_repeat_kwargs | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_time.py::TestRepeat::test_repeat_max_duration | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_time.py::TestPerfCaseResult::test_no_show_gpu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_time.py::TestPerfCaseResult::test_show_gpu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_time.py::TestPerfCaseResult::test_show_multigpu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_time.py::TestPerfCaseResult::test_single_no_show_gpu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/test_time.py::TestPerfCaseResult::test_single_show_gpu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternal_param_0_{args=(), func='min', kwargs={'axis': 0}, shape=(3, 4)}::test_fallback_methods_array_external | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternal_param_1_{args=(), func='argmin', kwargs={}, shape=(3, 4)}::test_fallback_methods_array_external | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternal_param_2_{args=(), func='roots', kwargs={}, shape=(3,)}::test_fallback_methods_array_external | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternal_param_3_{args=((6, 2),), func='resize', kwargs={}, shape=(2, 6)}::test_fallback_methods_array_external | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternal_param_4_{args=((4, 9),), func='resize', kwargs={}, shape=(3, 4)}::test_fallback_methods_array_external | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternal_param_5_{args=(1, 0), func='delete', kwargs={}, shape=(5, 4)}::test_fallback_methods_array_external | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternal_param_6_{args=([[7, 8, 9]],), func='append', kwargs={'axis': 0}, shape=(2, 3)}::test_fallback_methods_array_external | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternal_param_7_{args=(), func='asarray_chkfinite', kwargs={'dtype': <class 'numpy.float64'>}, shape=(2, 4)}::test_fallback_methods_array_external | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternalOut_param_0_{args=(), func='min', kwargs={'axis': 0}, numpy_version=None, shape=(3, 4)}::test_fallback_methods_array_external_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternalOut_param_1_{args=(), func='argmin', kwargs={}, numpy_version=(1, 10, 0), shape=(3, 4)}::test_fallback_methods_array_external_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternalOut_param_2_{args=(), func='arccos', kwargs={}, numpy_version=None, shape=(2, 3)}::test_fallback_methods_array_external_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternalOut_param_3_{args=(), func='fabs', kwargs={}, numpy_version=None, shape=(2, 3)}::test_fallback_methods_array_external_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternalOut_param_4_{args=(), func='nancumsum', kwargs={'axis': 1}, numpy_version=(1, 12, 0), shape=(5, 3)}::test_fallback_methods_array_external_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMethodsArrayExternalOut_param_5_{args=(50,), func='nanpercentile', kwargs={'axis': 0}, numpy_version=None, shape=(3, 4)}::test_fallback_methods_array_external_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestDocs_param_0_{object='ndarray'}::test_docs | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestDocs_param_1_{object='ndarray.__add__'}::test_docs | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestDocs_param_2_{object='vectorize'}::test_docs | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestDocs_param_3_{object='linalg.eig'}::test_docs | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArrayMethodsInternal_param_0_{args=(), func='min', kwargs={}, shape=(5,)}::test_fallback_array_methods_internal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArrayMethodsInternal_param_0_{args=(), func='min', kwargs={}, shape=(5,)}::test_fallback_array_methods_internal_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArrayMethodsInternal_param_1_{args=(), func='argmax', kwargs={'axis': 0}, shape=(5, 3)}::test_fallback_array_methods_internal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArrayMethodsInternal_param_1_{args=(), func='argmax', kwargs={'axis': 0}, shape=(5, 3)}::test_fallback_array_methods_internal_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArrayMethodsInternal_param_2_{args=(), func='ptp', kwargs={'axis': 1}, shape=(3, 3)}::test_fallback_array_methods_internal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArrayMethodsInternal_param_2_{args=(), func='ptp', kwargs={'axis': 1}, shape=(3, 3)}::test_fallback_array_methods_internal_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArrayMethodsInternal_param_3_{args=([False, True],), func='compress', kwargs={'axis': 0}, shape=(3, 2)}::test_fallback_array_methods_internal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArrayMethodsInternal_param_3_{args=([False, True],), func='compress', kwargs={'axis': 0}, shape=(3, 2)}::test_fallback_array_methods_internal_out | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayComparison_param_0_{func='__eq__', shape=(3, 4)}::test_ndarray_comparison | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayComparison_param_1_{func='__ne__', shape=(3, 1)}::test_ndarray_comparison | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayComparison_param_2_{func='__gt__', shape=(4,)}::test_ndarray_comparison | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayComparison_param_3_{func='__lt__', shape=(1, 1)}::test_ndarray_comparison | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayComparison_param_4_{func='__ge__', shape=(1, 2)}::test_ndarray_comparison | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayComparison_param_5_{func='__le__', shape=(1,)}::test_ndarray_comparison | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayUnaryMethods_param_0_{func='__str__', shape=(5, 6)}::test_unary_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayUnaryMethods_param_1_{func='__repr__', shape=(3, 4)}::test_unary_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayUnaryMethods_param_2_{func='__int__', shape=(1,)}::test_unary_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayUnaryMethods_param_3_{func='__float__', shape=(1, 1)}::test_unary_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayUnaryMethods_param_4_{func='__len__', shape=(3, 3)}::test_unary_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayUnaryMethods_param_5_{func='__bool__', shape=(1,)}::test_unary_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayUnaryMethodsArray_param_0_{dtype=float32, func='__abs__', shape=(5, 6)}::test_unary_methods_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayUnaryMethodsArray_param_1_{dtype=float32, func='__copy__', shape=(3, 4)}::test_unary_methods_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayUnaryMethodsArray_param_2_{dtype=float32, func='__neg__', shape=(3, 3)}::test_unary_methods_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayUnaryMethodsArray_param_3_{dtype=int32, func='__invert__', shape=(2, 4)}::test_unary_methods_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayArithmeticMethods_param_0_{dtype=float32, func='__add__', shape=(3, 4)}::test_arithmetic_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayArithmeticMethods_param_1_{dtype=float32, func='__sub__', shape=(2, 2)}::test_arithmetic_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayArithmeticMethods_param_2_{dtype=float32, func='__mul__', shape=(5, 6)}::test_arithmetic_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayArithmeticMethods_param_3_{dtype=float32, func='__mod__', shape=(3, 4)}::test_arithmetic_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayArithmeticMethods_param_4_{dtype=float32, func='__iadd__', shape=(1,)}::test_arithmetic_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayArithmeticMethods_param_5_{dtype=float32, func='__imul__', shape=(1, 1)}::test_arithmetic_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayArithmeticMethods_param_6_{dtype=int32, func='__and__', shape=(3, 3)}::test_arithmetic_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayArithmeticMethods_param_7_{dtype=int32, func='__ipow__', shape=(4, 5)}::test_arithmetic_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayArithmeticMethods_param_8_{dtype=int32, func='__xor__', shape=(4, 4)}::test_arithmetic_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayArithmeticMethods_param_9_{dtype=int32, func='__lshift__', shape=(2,)}::test_arithmetic_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayArithmeticMethods_param_10_{dtype=int32, func='__irshift__', shape=(3, 2)}::test_arithmetic_methods | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMode::test_cupy_specific_func | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMode::test_func_not_in_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMode::test_isinstance | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMode::test_module_not_callable | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMode::test_numpy_scalars | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackMode::test_same_reference | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArray::test_base | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArray::test_getitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArray::test_instancecheck_ndarray | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArray::test_instancecheck_type | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArray::test_ndarray_creation_compatible | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArray::test_ndarray_creation_not_compatible | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArray::test_ndarray_init | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArray::test_ndarray_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArray::test_ndarray_shape_creation | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArray::test_setitem | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArray::test_type_assert | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestFallbackArray::test_type_call | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayMatmul::test_mm_matmul | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestVectorizeWrapper::test_doc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestVectorizeWrapper::test_getattr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestVectorizeWrapper::test_pyfunc_builtin | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestVectorizeWrapper::test_pyfunc_custom_list | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestVectorizeWrapper::test_pyfunc_numpy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestVectorizeWrapper::test_setattr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestInplaceSpecialMethods::test_ndarray_byteswap | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestInplaceSpecialMethods::test_ndarray_byteswap_inplace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestInplaceSpecialMethods::test_out_is_returned_when_fallbacked | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestInplaceSpecialMethods::test_out_is_returned_when_not_fallbacked | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestInplaceSpecialMethods::test_put_along_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestInplaceSpecialMethods::test_putmask | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestInplaceSpecialMethods::test_resize_internal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_creation_char | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_creation_masked | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_inplace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_ma_func | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_ma_func_inverse | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_magic_method_char | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_magic_method_masked | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_matrix_returned | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_method_external_char | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_method_external_masked | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_method_internal | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_method_internal_not_callable | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_fallback.py::TestArrayVariants::test_record_array | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_notifications.py::TestNotifications::test_seterr_geterr | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_notifications.py::TestNotifications::test_errstate | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_notifications.py::TestNotificationModes::test_notification_ignore[_param_0_{func_name='array_equiv', shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_notifications.py::TestNotificationModes::test_notification_print[_param_0_{func_name='array_equiv', shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_notifications.py::TestNotificationModes::test_notification_warn[_param_0_{func_name='array_equiv', shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_notifications.py::TestNotificationModes::test_notification_raise[_param_0_{func_name='array_equiv', shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_notifications.py::TestNotificationVectorize::test_custom_or_builtin_pyfunc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_notifications.py::TestNotificationVectorize::test_cupy_supported_pyfunc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/fallback_mode_tests/test_notifications.py::TestNotificationVectorize::test_numpy_only_pyfunc | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/jit_tests/test_raw.py::TestRaw::test_error_msg | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/jit_tests/test_raw.py::TestRaw::test_raw_0dim_array | 1.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/jit_tests/test_raw.py::TestRaw::test_raw_elementwise_loop | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/jit_tests/test_raw.py::TestRaw::test_raw_elementwise_single_op | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/jit_tests/test_raw.py::TestRaw::test_raw_grid_block_interface | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/jit_tests/test_raw.py::TestRaw::test_raw_multidimensional_array | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/jit_tests/test_raw.py::TestRaw::test_raw_onw_thread | 0.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/jit_tests/test_raw.py::TestRaw::test_shared_memory_dynamic | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/jit_tests/test_raw.py::TestRaw::test_shared_memory_static | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/jit_tests/test_raw.py::TestRaw::test_syncthreads | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/linalg_tests/test_solve.py::TestErrorInvh_param_0_{dtype=float32, size=8}::test_invh | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/linalg_tests/test_solve.py::TestErrorInvh_param_1_{dtype=float64, size=8}::test_invh | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/linalg_tests/test_solve.py::TestErrorInvh_param_2_{dtype=complex64, size=8}::test_invh | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/linalg_tests/test_solve.py::TestErrorInvh_param_3_{dtype=complex128, size=8}::test_invh | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/test_get_array_module.py::TestSpecial::test_get_array_module | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/test_get_array_module.py::TestSpecial::test_get_array_module_multiple_parameters | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_overwrite_plan[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_plan_manager[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_fft_backend_plan[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_overwrite_plan[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_plan_manager[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_20_{axis=-1, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_21_{axis=-1, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_22_{axis=-1, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_23_{axis=-1, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_24_{axis=-1, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_25_{axis=-1, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_26_{axis=-1, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_27_{axis=-1, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_28_{axis=-1, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_29_{axis=-1, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_30_{axis=-1, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_31_{axis=-1, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_32_{axis=-1, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_33_{axis=-1, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_34_{axis=-1, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_35_{axis=-1, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_36_{axis=-1, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_37_{axis=-1, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_38_{axis=-1, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_39_{axis=-1, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_40_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_41_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_42_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_43_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_44_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_45_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_46_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_47_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_48_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_49_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_50_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_51_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_52_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_53_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_54_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_55_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_56_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_57_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_58_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_60_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_61_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_62_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_63_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_64_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_65_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_66_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_67_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_68_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_69_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_70_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_71_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_72_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_73_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_74_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_75_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_76_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_77_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_78_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_79_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_80_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_81_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_82_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_83_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_84_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_85_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_86_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_87_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_88_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_89_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_90_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_91_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_92_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_93_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_94_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_95_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_96_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_97_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_98_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_99_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_100_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_101_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_102_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_103_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_104_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_105_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_106_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_107_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_108_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_109_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_110_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_111_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_112_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_113_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_114_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_115_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_116_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_117_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_118_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_119_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_120_{axis=0, n=0, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_121_{axis=0, n=0, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_122_{axis=0, n=0, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_123_{axis=0, n=0, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_124_{axis=0, n=0, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_125_{axis=0, n=0, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_126_{axis=0, n=0, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_127_{axis=0, n=0, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_128_{axis=0, n=0, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_129_{axis=0, n=0, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_130_{axis=0, n=0, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_131_{axis=0, n=0, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_132_{axis=0, n=0, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_133_{axis=0, n=0, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_134_{axis=0, n=0, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_135_{axis=0, n=0, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_136_{axis=0, n=0, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_137_{axis=0, n=0, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_138_{axis=0, n=0, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_139_{axis=0, n=0, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_140_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_141_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_142_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_143_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_144_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_145_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_146_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_147_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_148_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_149_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_150_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_151_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_152_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_153_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_154_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_155_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_156_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_157_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_158_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_159_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_160_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_161_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_162_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_163_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_164_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_165_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_166_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_167_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_168_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_169_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_170_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_171_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_172_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_173_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_174_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_175_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_176_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_177_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_178_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_179_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_180_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_181_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_182_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_183_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_184_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_185_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_186_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_187_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_188_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_189_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_190_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_191_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_192_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_193_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_194_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_195_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_196_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_197_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_198_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft::test_ifft_backend_plan[_param_199_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_overwrite_plan[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_plan_manager[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_fft2_backend_plan[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_overwrite_plan[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_plan_manager[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_55_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_56_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_57_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_58_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_59_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_60_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_61_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_62_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_63_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_64_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_65_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_66_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_67_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_68_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_69_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_70_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_71_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_72_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_73_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_74_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_75_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_76_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_77_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_78_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_79_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_80_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_81_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_82_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_83_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFft2::test_ifft2_backend_plan[_param_84_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_overwrite_plan[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_plan_manager[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_fftn_backend_plan[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_overwrite_plan[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_plan_manager[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_15_{axes=(-2, -1), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_16_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_17_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_18_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_19_{axes=(-2, -1), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_20_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_21_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_22_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_23_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_24_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_25_{axes=(-1, -2), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_26_{axes=(-1, -2), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_27_{axes=(-1, -2), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_28_{axes=(-1, -2), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_29_{axes=(-1, -2), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_30_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_31_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_32_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_33_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_34_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_35_{axes=(0,), norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_36_{axes=(0,), norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_37_{axes=(0,), norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_38_{axes=(0,), norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_39_{axes=(0,), norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_40_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_41_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_42_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_43_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_44_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_45_{axes=None, norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_46_{axes=None, norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_47_{axes=None, norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_48_{axes=None, norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_49_{axes=None, norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_50_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_51_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_52_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_53_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_54_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_55_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_56_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_57_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_58_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_59_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_60_{axes=(0, 1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_61_{axes=(0, 1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_62_{axes=(0, 1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_63_{axes=(0, 1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_64_{axes=(0, 1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_65_{axes=(0, 1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_66_{axes=(0, 1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_67_{axes=(0, 1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_68_{axes=(0, 1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_69_{axes=(0, 1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_70_{axes=(-2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_71_{axes=(-2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_72_{axes=(-2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_73_{axes=(-2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_74_{axes=(-2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_75_{axes=(-2, -1), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_76_{axes=(-2, -1), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_77_{axes=(-2, -1), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_78_{axes=(-2, -1), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_79_{axes=(-2, -1), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_80_{axes=(-2, -1), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_81_{axes=(-2, -1), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_82_{axes=(-2, -1), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_83_{axes=(-2, -1), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_84_{axes=(-2, -1), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_85_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_86_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_87_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_88_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_89_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_90_{axes=(-1, -2, -3), norm=None, s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_91_{axes=(-1, -2, -3), norm='backward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_92_{axes=(-1, -2, -3), norm='ortho', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_93_{axes=(-1, -2, -3), norm='forward', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_94_{axes=(-1, -2, -3), norm='', s=(1, 5), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_95_{axes=(-1, -2, -3), norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_96_{axes=(-1, -2, -3), norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_97_{axes=(-1, -2, -3), norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_98_{axes=(-1, -2, -3), norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_99_{axes=(-1, -2, -3), norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_100_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_101_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_102_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_103_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_104_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_105_{axes=(0, 1, 2, 3), norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_106_{axes=(0, 1, 2, 3), norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_107_{axes=(0, 1, 2, 3), norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_108_{axes=(0, 1, 2, 3), norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestFftn::test_ifftn_backend_plan[_param_109_{axes=(0, 1, 2, 3), norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_20_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_21_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_22_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_23_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_24_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_25_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_26_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_27_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_28_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_29_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_30_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_31_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_32_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_33_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_34_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_35_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_36_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_37_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_38_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_39_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_40_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_41_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_42_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_43_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_44_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_45_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_46_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_47_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_48_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_49_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_50_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_51_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_52_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_53_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_54_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_55_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_56_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_57_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_58_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_59_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_60_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_61_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_62_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_63_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_64_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_65_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_66_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_67_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_68_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_69_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_70_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_71_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_72_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_73_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_74_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_75_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_76_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_77_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_78_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_80_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_81_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_82_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_83_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_84_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_85_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_86_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_87_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_88_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_89_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_90_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_91_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_92_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_93_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_94_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_95_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_96_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_97_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_98_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_99_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_100_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_101_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_102_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_103_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_104_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_105_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_106_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_107_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_108_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_109_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_110_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_111_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_112_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_113_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_114_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_115_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_116_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_117_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_118_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_119_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_120_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_121_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_122_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_123_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_124_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_125_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_126_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_127_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_128_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_129_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_130_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_131_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_132_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_133_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_134_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_135_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_136_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_137_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_138_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_139_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_140_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_141_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_142_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_143_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_144_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_145_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_146_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_147_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_148_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_149_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_150_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_151_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_152_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_153_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_154_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_155_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_156_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_157_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_158_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft[_param_159_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_20_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_21_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_22_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_23_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_24_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_25_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_26_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_27_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_28_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_29_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_30_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_31_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_32_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_33_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_34_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_35_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_36_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_37_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_38_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_39_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_40_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_41_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_42_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_43_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_44_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_45_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_46_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_47_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_48_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_49_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_50_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_51_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_52_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_53_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_54_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_55_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_56_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_57_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_58_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_59_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_60_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_61_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_62_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_63_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_64_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_65_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_66_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_67_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_68_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_69_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_70_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_71_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_72_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_73_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_74_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_75_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_76_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_77_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_78_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_80_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_81_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_82_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_83_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_84_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_85_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_86_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_87_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_88_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_89_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_90_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_91_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_92_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_93_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_94_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_95_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_96_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_97_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_98_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_99_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_100_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_101_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_102_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_103_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_104_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_105_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_106_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_107_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_108_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_109_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_110_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_111_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_112_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_113_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_114_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_115_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_116_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_117_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_118_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_119_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_120_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_121_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_122_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_123_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_124_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_125_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_126_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_127_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_128_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_129_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_130_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_131_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_132_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_133_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_134_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_135_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_136_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_137_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_138_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_139_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_140_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_141_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_142_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_143_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_144_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_145_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_146_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_147_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_148_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_149_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_150_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_151_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_152_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_153_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_154_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_155_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_156_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_157_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_158_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite[_param_159_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_20_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_21_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_22_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_23_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_24_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_25_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_26_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_27_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_28_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_29_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_30_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_31_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_32_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_33_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_34_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_35_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_36_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_37_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_38_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_39_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_40_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_41_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_42_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_43_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_44_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_45_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_46_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_47_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_48_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_49_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_50_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_51_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_52_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_53_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_54_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_55_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_56_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_57_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_58_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_59_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_60_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_61_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_62_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_63_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_64_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_65_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_66_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_67_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_68_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_69_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_70_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_71_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_72_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_73_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_74_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_75_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_76_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_77_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_78_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_80_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_81_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_82_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_83_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_84_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_85_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_86_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_87_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_88_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_89_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_90_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_91_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_92_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_93_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_94_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_95_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_96_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_97_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_98_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_99_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_100_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_101_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_102_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_103_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_104_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_105_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_106_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_107_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_108_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_109_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_110_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_111_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_112_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_113_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_114_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_115_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_116_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_117_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_118_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_119_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_120_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_121_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_122_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_123_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_124_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_125_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_126_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_127_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_128_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_129_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_130_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_131_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_132_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_133_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_134_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_135_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_136_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_137_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_138_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_139_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_140_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_141_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_142_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_143_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_144_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_145_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_146_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_147_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_148_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_149_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_150_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_151_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_152_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_153_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_154_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_155_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_156_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_157_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_158_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan[_param_159_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_20_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_21_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_22_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_23_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_24_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_25_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_26_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_27_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_28_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_29_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_30_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_31_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_32_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_33_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_34_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_35_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_36_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_37_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_38_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_39_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_40_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_41_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_42_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_43_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_44_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_45_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_46_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_47_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_48_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_49_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_50_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_51_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_52_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_53_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_54_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_55_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_56_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_57_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_58_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_59_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_60_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_61_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_62_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_63_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_64_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_65_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_66_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_67_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_68_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_69_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_70_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_71_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_72_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_73_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_74_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_75_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_76_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_77_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_78_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_80_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_81_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_82_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_83_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_84_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_85_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_86_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_87_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_88_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_89_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_90_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_91_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_92_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_93_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_94_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_95_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_96_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_97_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_98_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_99_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_100_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_101_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_102_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_103_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_104_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_105_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_106_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_107_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_108_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_109_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_110_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_111_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_112_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_113_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_114_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_115_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_116_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_117_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_118_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_119_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_120_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_121_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_122_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_123_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_124_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_125_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_126_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_127_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_128_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_129_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_130_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_131_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_132_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_133_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_134_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_135_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_136_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_137_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_138_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_139_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_140_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_141_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_142_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_143_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_144_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_145_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_146_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_147_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_148_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_149_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_150_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_151_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_152_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_153_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_154_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_155_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_156_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_157_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_158_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_backend[_param_159_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_20_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_21_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_22_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_23_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_24_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_25_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_26_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_27_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_28_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_29_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_30_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_31_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_32_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_33_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_34_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_35_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_36_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_37_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_38_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_39_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_40_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_41_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_42_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_43_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_44_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_45_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_46_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_47_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_48_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_49_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_50_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_51_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_52_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_53_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_54_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_55_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_56_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_57_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_58_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_59_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_60_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_61_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_62_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_63_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_64_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_65_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_66_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_67_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_68_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_69_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_70_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_71_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_72_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_73_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_74_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_75_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_76_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_77_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_78_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_80_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_81_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_82_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_83_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_84_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_85_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_86_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_87_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_88_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_89_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_90_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_91_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_92_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_93_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_94_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_95_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_96_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_97_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_98_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_99_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_100_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_101_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_102_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_103_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_104_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_105_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_106_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_107_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_108_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_109_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_110_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_111_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_112_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_113_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_114_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_115_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_116_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_117_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_118_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_119_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_120_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_121_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_122_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_123_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_124_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_125_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_126_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_127_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_128_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_129_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_130_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_131_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_132_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_133_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_134_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_135_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_136_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_137_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_138_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_139_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_140_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_141_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_142_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_143_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_144_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_145_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_146_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_147_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_148_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_149_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_150_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_151_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_152_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_153_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_154_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_155_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_156_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_157_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_158_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_overwrite_plan[_param_159_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_20_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_21_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_22_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_23_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_24_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_25_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_26_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_27_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_28_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_29_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_30_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_31_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_32_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_33_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_34_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_35_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_36_{axis=-1, n=5, norm='', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_37_{axis=-1, n=5, norm='', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_38_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_39_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_40_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_41_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_42_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_43_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_44_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_45_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_46_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_47_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_48_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_49_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_50_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_51_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_52_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_53_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_54_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_55_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_56_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_57_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_58_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_59_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_60_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_61_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_62_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_63_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_64_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_65_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_66_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_67_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_68_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_69_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_70_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_71_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_72_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_73_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_74_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_75_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_76_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_77_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_78_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_80_{axis=0, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_81_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_82_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_83_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_84_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_85_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_86_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_87_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_88_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_89_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_90_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_91_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_92_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_93_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_94_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_95_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_96_{axis=0, n=None, norm='', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_97_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_98_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_99_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_100_{axis=0, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_101_{axis=0, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_102_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_103_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_104_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_105_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_106_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_107_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_108_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_109_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_110_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_111_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_112_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_113_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_114_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_115_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_116_{axis=0, n=5, norm='', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_117_{axis=0, n=5, norm='', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_118_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_119_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_120_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_121_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_122_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_123_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_124_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_125_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_126_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_127_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_128_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_129_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_130_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_131_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_132_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_133_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_134_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_135_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_136_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_137_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_138_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_139_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_140_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_141_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_142_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_143_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_144_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_145_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_146_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_147_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_148_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_149_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_150_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_151_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_152_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_153_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_154_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_155_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_156_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_157_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_158_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_rfft_plan_manager[_param_159_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_20_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_21_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_22_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_23_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_24_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_25_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_26_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_27_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_28_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_29_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_30_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_31_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_32_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_33_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_34_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_35_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_36_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_37_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_38_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_39_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_40_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_41_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_42_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_43_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_44_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_45_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_46_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_47_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_48_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_49_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_50_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_51_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_52_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_53_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_54_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_55_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_56_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_57_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_58_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_59_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_60_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_61_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_62_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_63_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_64_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_65_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_66_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_67_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_68_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_69_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_70_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_71_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_72_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_73_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_74_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_75_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_76_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_77_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_78_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_80_{axis=0, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_81_{axis=0, n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_82_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_83_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_84_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_85_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_86_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_87_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_88_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_89_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_90_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_91_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_92_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_93_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_94_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_95_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_96_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_97_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_98_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_99_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_100_{axis=0, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_101_{axis=0, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_102_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_103_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_104_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_105_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_106_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_107_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_108_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_109_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_110_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_111_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_112_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_113_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_114_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_115_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_116_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_117_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_118_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_119_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_120_{axis=0, n=10, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_121_{axis=0, n=10, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_122_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_123_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_124_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_125_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_126_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_127_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_128_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_129_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_130_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_131_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_132_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_133_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_134_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_135_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_136_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_137_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_138_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_139_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_140_{axis=0, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_141_{axis=0, n=15, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_142_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_143_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_144_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_145_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_146_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_147_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_148_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_149_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_150_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_151_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_152_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_153_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_154_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_155_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_156_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_157_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_158_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft[_param_159_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_20_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_21_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_22_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_23_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_24_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_25_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_26_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_27_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_28_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_29_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_30_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_31_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_32_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_33_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_34_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_35_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_36_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_37_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_38_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_39_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_40_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_41_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_42_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_43_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_44_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_45_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_46_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_47_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_48_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_49_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_50_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_51_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_52_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_53_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_54_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_55_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_56_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_57_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_58_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_59_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_60_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_61_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_62_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_63_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_64_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_65_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_66_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_67_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_68_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_69_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_70_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_71_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_72_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_73_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_74_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_75_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_76_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_77_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_78_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_80_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_81_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_82_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_83_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_84_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_85_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_86_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_87_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_88_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_89_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_90_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_91_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_92_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_93_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_94_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_95_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_96_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_97_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_98_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_99_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_100_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_101_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_102_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_103_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_104_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_105_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_106_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_107_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_108_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_109_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_110_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_111_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_112_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_113_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_114_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_115_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_116_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_117_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_118_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_119_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_120_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_121_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_122_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_123_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_124_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_125_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_126_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_127_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_128_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_129_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_130_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_131_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_132_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_133_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_134_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_135_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_136_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_137_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_138_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_139_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_140_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_141_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_142_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_143_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_144_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_145_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_146_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_147_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_148_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_149_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_150_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_151_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_152_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_153_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_154_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_155_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_156_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_157_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_158_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite[_param_159_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_20_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_21_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_22_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_23_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_24_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_25_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_26_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_27_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_28_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_29_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_30_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_31_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_32_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_33_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_34_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_35_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_36_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_37_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_38_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_39_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_40_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_41_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_42_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_43_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_44_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_45_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_46_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_47_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_48_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_49_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_50_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_51_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_52_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_53_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_54_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_55_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_56_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_57_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_58_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_59_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_60_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_61_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_62_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_63_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_64_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_65_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_66_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_67_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_68_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_69_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_70_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_71_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_72_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_73_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_74_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_75_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_76_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_77_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_78_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_80_{axis=0, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_81_{axis=0, n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_82_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_83_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_84_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_85_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_86_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_87_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_88_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_89_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_90_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_91_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_92_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_93_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_94_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_95_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_96_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_97_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_98_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_99_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_100_{axis=0, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_101_{axis=0, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_102_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_103_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_104_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_105_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_106_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_107_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_108_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_109_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_110_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_111_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_112_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_113_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_114_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_115_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_116_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_117_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_118_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_119_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_120_{axis=0, n=10, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_121_{axis=0, n=10, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_122_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_123_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_124_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_125_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_126_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_127_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_128_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_129_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_130_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_131_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_132_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_133_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_134_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_135_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_136_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_137_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_138_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_139_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_140_{axis=0, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_141_{axis=0, n=15, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_142_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_143_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_144_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_145_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_146_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_147_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_148_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_149_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_150_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_151_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_152_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_153_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_154_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_155_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_156_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_157_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_158_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan[_param_159_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_20_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_21_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_22_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_23_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_24_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_25_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_26_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_27_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_28_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_29_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_30_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_31_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_32_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_33_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_34_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_35_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_36_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_37_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_38_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_39_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_40_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_41_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_42_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_43_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_44_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_45_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_46_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_47_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_48_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_49_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_50_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_51_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_52_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_53_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_54_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_55_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_56_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_57_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_58_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_59_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_60_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_61_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_62_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_63_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_64_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_65_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_66_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_67_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_68_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_69_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_70_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_71_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_72_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_73_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_74_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_75_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_76_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_77_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_78_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_80_{axis=0, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_81_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_82_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_83_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_84_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_85_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_86_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_87_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_88_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_89_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_90_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_91_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_92_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_93_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_94_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_95_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_96_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_97_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_98_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_99_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_100_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_101_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_102_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_103_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_104_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_105_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_106_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_107_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_108_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_109_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_110_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_111_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_112_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_113_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_114_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_115_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_116_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_117_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_118_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_119_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_120_{axis=0, n=10, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_121_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_122_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_123_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_124_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_125_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_126_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_127_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_128_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_129_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_130_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_131_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_132_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_133_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_134_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_135_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_136_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_137_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_138_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_139_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_140_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_141_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_142_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_143_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_144_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_145_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_146_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_147_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_148_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_149_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_150_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_151_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_152_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_153_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_154_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_155_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_156_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_157_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_158_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_overwrite_plan[_param_159_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_20_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_21_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_22_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_23_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_24_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_25_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_26_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_27_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_28_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_29_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_30_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_31_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_32_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_33_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_34_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_35_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_36_{axis=-1, n=5, norm='', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_37_{axis=-1, n=5, norm='', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_38_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_39_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_40_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_41_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_42_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_43_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_44_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_45_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_46_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_47_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_48_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_49_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_50_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_51_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_52_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_53_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_54_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_55_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_56_{axis=-1, n=10, norm='', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_57_{axis=-1, n=10, norm='', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_58_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_59_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_60_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_61_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_62_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_63_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_64_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_65_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_66_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_67_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_68_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_69_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_70_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_71_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_72_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_73_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_74_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_75_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_76_{axis=-1, n=15, norm='', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_77_{axis=-1, n=15, norm='', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_78_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_80_{axis=0, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_81_{axis=0, n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_82_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_83_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_84_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_85_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_86_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_87_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_88_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_89_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_90_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_91_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_92_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_93_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_94_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_95_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_96_{axis=0, n=None, norm='', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_97_{axis=0, n=None, norm='', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_98_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_99_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_100_{axis=0, n=5, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_101_{axis=0, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_102_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_103_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_104_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_105_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_106_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_107_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_108_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_109_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_110_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_111_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_112_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_113_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_114_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_115_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_116_{axis=0, n=5, norm='', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_117_{axis=0, n=5, norm='', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_118_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_119_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_120_{axis=0, n=10, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_121_{axis=0, n=10, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_122_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_123_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_124_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_125_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_126_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_127_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_128_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_129_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_130_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_131_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_132_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_133_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_134_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_135_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_136_{axis=0, n=10, norm='', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_137_{axis=0, n=10, norm='', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_138_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_139_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_140_{axis=0, n=15, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_141_{axis=0, n=15, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_142_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_143_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_144_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_145_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_146_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_147_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_148_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_149_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_150_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_151_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_152_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_153_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_154_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_155_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_156_{axis=0, n=15, norm='', shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_157_{axis=0, n=15, norm='', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_158_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_plan_manager[_param_159_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_0_{axis=-1, n=None, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_1_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_2_{axis=-1, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_3_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_4_{axis=-1, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_5_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_6_{axis=-1, n=None, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_7_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_8_{axis=-1, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_9_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_10_{axis=-1, n=None, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_11_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_12_{axis=-1, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_13_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_14_{axis=-1, n=None, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_15_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_16_{axis=-1, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_17_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_18_{axis=-1, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_19_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_20_{axis=-1, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_21_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_22_{axis=-1, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_23_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_24_{axis=-1, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_25_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_26_{axis=-1, n=5, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_27_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_28_{axis=-1, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_29_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_30_{axis=-1, n=5, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_31_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_32_{axis=-1, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_33_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_34_{axis=-1, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_35_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_36_{axis=-1, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_37_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_38_{axis=-1, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_39_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_40_{axis=-1, n=10, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_41_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_42_{axis=-1, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_43_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_44_{axis=-1, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_45_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_46_{axis=-1, n=10, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_47_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_48_{axis=-1, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_49_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_50_{axis=-1, n=10, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_51_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_52_{axis=-1, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_53_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_54_{axis=-1, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_55_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_56_{axis=-1, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_57_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_58_{axis=-1, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_59_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_60_{axis=-1, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_61_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_62_{axis=-1, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_63_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_64_{axis=-1, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_65_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_66_{axis=-1, n=15, norm='backward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_67_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_68_{axis=-1, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_69_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_70_{axis=-1, n=15, norm='ortho', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_71_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_72_{axis=-1, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_73_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_74_{axis=-1, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_75_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_76_{axis=-1, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_77_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_78_{axis=-1, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_80_{axis=0, n=None, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_81_{axis=0, n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_82_{axis=0, n=None, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_83_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_84_{axis=0, n=None, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_85_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_86_{axis=0, n=None, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_87_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_88_{axis=0, n=None, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_89_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_90_{axis=0, n=None, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_91_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_92_{axis=0, n=None, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_93_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_94_{axis=0, n=None, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_95_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_96_{axis=0, n=None, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_97_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_98_{axis=0, n=None, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_99_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_100_{axis=0, n=5, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_101_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_102_{axis=0, n=5, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_103_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_104_{axis=0, n=5, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_105_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_106_{axis=0, n=5, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_107_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_108_{axis=0, n=5, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_109_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_110_{axis=0, n=5, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_111_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_112_{axis=0, n=5, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_113_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_114_{axis=0, n=5, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_115_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_116_{axis=0, n=5, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_117_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_118_{axis=0, n=5, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_119_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_120_{axis=0, n=10, norm=None, shape=(9,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_121_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_122_{axis=0, n=10, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_123_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_124_{axis=0, n=10, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_125_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_126_{axis=0, n=10, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_127_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_128_{axis=0, n=10, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_129_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_130_{axis=0, n=10, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_131_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_132_{axis=0, n=10, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_133_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_134_{axis=0, n=10, norm='forward', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_135_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_136_{axis=0, n=10, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_137_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_138_{axis=0, n=10, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_139_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_140_{axis=0, n=15, norm=None, shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_141_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_142_{axis=0, n=15, norm=None, shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_143_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_144_{axis=0, n=15, norm='backward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_145_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_146_{axis=0, n=15, norm='backward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_147_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_148_{axis=0, n=15, norm='ortho', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_149_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_150_{axis=0, n=15, norm='ortho', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_151_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_152_{axis=0, n=15, norm='forward', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_153_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_154_{axis=0, n=15, norm='forward', shape=(10, 9)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_155_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_156_{axis=0, n=15, norm='', shape=(9,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_157_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_158_{axis=0, n=15, norm='', shape=(10, 9)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft::test_irfft_backend[_param_159_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_overwrite_plan[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_plan_manager[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_rfft2_backend[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_overwrite[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfft2::test_irfft2_backend[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_overwrite_plan[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.float16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.int64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.longlong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint8'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint16'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint32'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.uint64'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.ulonglong'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) skipped: dtype = <class 'numpy.bool_'> (hipFFT's PlanNd for this case is buggy, so Plan1d is generated instead) | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_plan_manager[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_rfftn_backend[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_overwrite[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_0_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_1_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_2_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_3_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_4_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_5_{axes=None, norm=None, s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_6_{axes=None, norm='backward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_7_{axes=None, norm='ortho', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_8_{axes=None, norm='forward', s=(1, 5), shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_9_{axes=None, norm='', s=(1, 5), shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_10_{axes=(-2, -1), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_11_{axes=(-2, -1), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_12_{axes=(-2, -1), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_13_{axes=(-2, -1), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_14_{axes=(-2, -1), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_15_{axes=(-1, -2), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_16_{axes=(-1, -2), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_17_{axes=(-1, -2), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_18_{axes=(-1, -2), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_19_{axes=(-1, -2), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_20_{axes=(0,), norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_21_{axes=(0,), norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_22_{axes=(0,), norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_23_{axes=(0,), norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_24_{axes=(0,), norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_25_{axes=None, norm=None, s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_26_{axes=None, norm='backward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_27_{axes=None, norm='ortho', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_28_{axes=None, norm='forward', s=None, shape=(3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_29_{axes=None, norm='', s=None, shape=(3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_30_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_31_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_32_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_33_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_34_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_35_{axes=None, norm=None, s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_36_{axes=None, norm='backward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_37_{axes=None, norm='ortho', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_38_{axes=None, norm='forward', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_39_{axes=None, norm='', s=(1, 4, 10), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_40_{axes=(-3, -2, -1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_41_{axes=(-3, -2, -1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_42_{axes=(-3, -2, -1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_43_{axes=(-3, -2, -1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_44_{axes=(-3, -2, -1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_45_{axes=(-1, -2, -3), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_46_{axes=(-1, -2, -3), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_47_{axes=(-1, -2, -3), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_48_{axes=(-1, -2, -3), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_49_{axes=(-1, -2, -3), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_50_{axes=(0, 1), norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_51_{axes=(0, 1), norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_52_{axes=(0, 1), norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_53_{axes=(0, 1), norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_54_{axes=(0, 1), norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_55_{axes=None, norm=None, s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_56_{axes=None, norm='backward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_57_{axes=None, norm='ortho', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_58_{axes=None, norm='forward', s=None, shape=(2, 3, 4)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_59_{axes=None, norm='', s=None, shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_60_{axes=(0, 1, 2), norm=None, s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_61_{axes=(0, 1, 2), norm='backward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_62_{axes=(0, 1, 2), norm='ortho', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_63_{axes=(0, 1, 2), norm='forward', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_64_{axes=(0, 1, 2), norm='', s=(2, 3), shape=(2, 3, 4)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_65_{axes=None, norm=None, s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_66_{axes=None, norm='backward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_67_{axes=None, norm='ortho', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_68_{axes=None, norm='forward', s=None, shape=(2, 3, 4, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestRfftn::test_irfftn_backend[_param_69_{axes=None, norm='', s=None, shape=(2, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_0_{axis=0, n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_1_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_2_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_3_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_4_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_5_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_6_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_7_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_8_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_9_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_10_{axis=0, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_11_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_12_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_13_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_14_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_15_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_16_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_17_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_18_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_19_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_20_{axis=0, n=10, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_21_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_22_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_23_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_24_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_25_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_26_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_27_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_28_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_29_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_30_{axis=0, n=15, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_31_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_32_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_33_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_34_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_35_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_36_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_37_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_38_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_39_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_40_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_41_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_42_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_43_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_44_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_45_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_46_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_47_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_48_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_49_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_50_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_51_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_52_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_53_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_54_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_55_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_56_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_57_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_58_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_60_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_61_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_62_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_63_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_64_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_65_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_66_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_67_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_68_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_69_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_70_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_71_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_72_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_73_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_74_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_75_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_76_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_77_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_78_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_0_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_1_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_2_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_3_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_4_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_5_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_6_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_7_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_8_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_9_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_10_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_11_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_12_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_13_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_14_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_15_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_16_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_17_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_18_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_19_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_20_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_21_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_22_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_23_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_24_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_25_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_26_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_27_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_28_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_29_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_30_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_31_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_32_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_33_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_34_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_35_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_36_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_37_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_38_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_39_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_40_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_41_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_42_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_43_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_44_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_45_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_46_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_47_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_48_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_49_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_50_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_51_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_52_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_53_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_54_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_55_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_56_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_57_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_58_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_60_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_61_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_62_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_63_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_64_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_65_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_66_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_67_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_68_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_69_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_70_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_71_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_72_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_73_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_74_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_75_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_76_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_77_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_78_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_overwrite[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_0_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_1_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_2_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_3_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_4_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_5_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_6_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_7_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_8_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_9_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_10_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_11_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_12_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_13_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_14_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_15_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_16_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_17_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_18_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_19_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_20_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_21_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_22_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_23_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_24_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_25_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_26_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_27_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_28_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_29_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_30_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_31_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_32_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_33_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_34_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_35_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_36_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_37_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_38_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_39_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_40_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_41_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_42_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_43_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_44_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_45_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_46_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_47_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_48_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_49_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_50_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_51_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_52_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_53_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_54_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_55_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_56_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_57_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_58_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_60_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_61_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_62_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_63_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_64_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_65_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_66_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_67_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_68_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_69_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_70_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_71_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_72_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_73_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_74_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_75_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_76_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_77_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_78_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_plan[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_0_{axis=0, n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_1_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_2_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_3_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_4_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_5_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_6_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_7_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_8_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_9_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_10_{axis=0, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_11_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_12_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_13_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_14_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_15_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_16_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_17_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_18_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_19_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_20_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_21_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_22_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_23_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_24_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_25_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_26_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_27_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_28_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_29_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_30_{axis=0, n=15, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_31_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_32_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_33_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_34_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_35_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_36_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_37_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_38_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_39_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_40_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_41_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_42_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_43_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_44_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_45_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_46_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_47_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_48_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_49_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_50_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_51_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_52_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_53_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_54_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_55_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_56_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_57_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_58_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_60_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_61_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_62_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_63_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_64_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_65_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_66_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_67_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_68_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_69_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_70_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_71_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_72_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_73_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_74_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_75_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_76_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_77_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_78_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_hfft_backend[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_0_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_1_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_2_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_3_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_4_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_5_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_6_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_7_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_8_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_9_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_10_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_11_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_12_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_13_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_14_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_15_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_16_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_17_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_18_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_19_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_20_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_21_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_22_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_23_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_24_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_25_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_26_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_27_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_28_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_29_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_30_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_31_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_32_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_33_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_34_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_35_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_36_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_37_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_38_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_39_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_40_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_41_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_42_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_43_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_44_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_45_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_46_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_47_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_48_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_49_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_50_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_51_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_52_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_53_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_54_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_55_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_56_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_57_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_58_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_60_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_61_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_62_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_63_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_64_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_65_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_66_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_67_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_68_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_69_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_70_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_71_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_72_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_73_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_74_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_75_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_76_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_77_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_78_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_0_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_1_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_2_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_3_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_4_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_5_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_6_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_7_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_8_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_9_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_10_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_11_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_12_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_13_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_14_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_15_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_16_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_17_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_18_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_19_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_20_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_21_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_22_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_23_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_24_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_25_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_26_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_27_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_28_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_29_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_30_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_31_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_32_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_33_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_34_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_35_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_36_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_37_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_38_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_39_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_40_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_41_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_42_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_43_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_44_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_45_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_46_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_47_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_48_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_49_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_50_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_51_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_52_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_53_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_54_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_55_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_56_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_57_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_58_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_60_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_61_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_62_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_63_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_64_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_65_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_66_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_67_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_68_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_69_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_70_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_71_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_72_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_73_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_74_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_75_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_76_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_77_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_78_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_overwrite[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_0_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_1_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_2_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_3_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_4_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_5_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_6_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_7_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_8_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_9_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_10_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_11_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_12_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_13_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_14_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_15_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_16_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_17_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_18_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_19_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_20_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_21_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_22_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_23_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_24_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_25_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_26_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_27_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_28_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_29_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_30_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_31_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_32_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_33_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_34_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_35_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_36_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_37_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_38_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_39_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_40_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_41_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_42_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_43_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_44_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_45_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_46_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_47_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_48_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_49_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_50_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_51_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_52_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_53_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_54_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_55_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_56_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_57_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_58_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_60_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_61_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_62_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_63_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_64_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_65_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_66_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_67_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_68_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_69_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_70_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_71_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_72_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_73_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_74_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_75_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_76_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_77_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_78_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_plan[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_0_{axis=0, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_1_{axis=0, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_2_{axis=0, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_3_{axis=0, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_4_{axis=0, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_5_{axis=0, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_6_{axis=0, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_7_{axis=0, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_8_{axis=0, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_9_{axis=0, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_10_{axis=0, n=5, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_11_{axis=0, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_12_{axis=0, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_13_{axis=0, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_14_{axis=0, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_15_{axis=0, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_16_{axis=0, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_17_{axis=0, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_18_{axis=0, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_19_{axis=0, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_20_{axis=0, n=10, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_21_{axis=0, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_22_{axis=0, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_23_{axis=0, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_24_{axis=0, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_25_{axis=0, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_26_{axis=0, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_27_{axis=0, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_28_{axis=0, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_29_{axis=0, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_30_{axis=0, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_31_{axis=0, n=15, norm=None, shape=(10, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_32_{axis=0, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_33_{axis=0, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_34_{axis=0, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_35_{axis=0, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_36_{axis=0, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_37_{axis=0, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_38_{axis=0, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_39_{axis=0, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_40_{axis=-1, n=None, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_41_{axis=-1, n=None, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_42_{axis=-1, n=None, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_43_{axis=-1, n=None, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_44_{axis=-1, n=None, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_45_{axis=-1, n=None, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_46_{axis=-1, n=None, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_47_{axis=-1, n=None, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_48_{axis=-1, n=None, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_49_{axis=-1, n=None, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_50_{axis=-1, n=5, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_51_{axis=-1, n=5, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_52_{axis=-1, n=5, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_53_{axis=-1, n=5, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_54_{axis=-1, n=5, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_55_{axis=-1, n=5, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_56_{axis=-1, n=5, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_57_{axis=-1, n=5, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_58_{axis=-1, n=5, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_59_{axis=-1, n=5, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_60_{axis=-1, n=10, norm=None, shape=(10,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_61_{axis=-1, n=10, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_62_{axis=-1, n=10, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_63_{axis=-1, n=10, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_64_{axis=-1, n=10, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_65_{axis=-1, n=10, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_66_{axis=-1, n=10, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_67_{axis=-1, n=10, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_68_{axis=-1, n=10, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_69_{axis=-1, n=10, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_70_{axis=-1, n=15, norm=None, shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_71_{axis=-1, n=15, norm=None, shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_72_{axis=-1, n=15, norm='backward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_73_{axis=-1, n=15, norm='backward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_74_{axis=-1, n=15, norm='ortho', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_75_{axis=-1, n=15, norm='ortho', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_76_{axis=-1, n=15, norm='forward', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_77_{axis=-1, n=15, norm='forward', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_78_{axis=-1, n=15, norm='', shape=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::TestHfft::test_ihfft_backend[_param_79_{axis=-1, n=15, norm='', shape=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::test_scalar_shape_axes[fft2] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::test_scalar_shape_axes[ifft2] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::test_scalar_shape_axes[rfft2] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::test_scalar_shape_axes[irfft2] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::test_scalar_shape_axes[fftn] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::test_scalar_shape_axes[ifftn] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::test_scalar_shape_axes[rfftn] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py::test_scalar_shape_axes[irfftn] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fft_tests/test_helper.py::TestNextFastLen::test_next_fast_len | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_0_{axis=-1, n=None, shape=(9,)}::test_fft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_0_{axis=-1, n=None, shape=(9,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_0_{axis=-1, n=None, shape=(9,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_0_{axis=-1, n=None, shape=(9,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_0_{axis=-1, n=None, shape=(9,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_0_{axis=-1, n=None, shape=(9,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_0_{axis=-1, n=None, shape=(9,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_0_{axis=-1, n=None, shape=(9,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_0_{axis=-1, n=None, shape=(9,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_0_{axis=-1, n=None, shape=(9,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_0_{axis=-1, n=None, shape=(9,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_1_{axis=-1, n=None, shape=(10,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_1_{axis=-1, n=None, shape=(10,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_1_{axis=-1, n=None, shape=(10,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_1_{axis=-1, n=None, shape=(10,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_1_{axis=-1, n=None, shape=(10,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_1_{axis=-1, n=None, shape=(10,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_1_{axis=-1, n=None, shape=(10,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_1_{axis=-1, n=None, shape=(10,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_1_{axis=-1, n=None, shape=(10,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_1_{axis=-1, n=None, shape=(10,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_1_{axis=-1, n=None, shape=(10,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_4_{axis=-1, n=0, shape=(9,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_4_{axis=-1, n=0, shape=(9,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_4_{axis=-1, n=0, shape=(9,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_4_{axis=-1, n=0, shape=(9,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_4_{axis=-1, n=0, shape=(9,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_4_{axis=-1, n=0, shape=(9,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_4_{axis=-1, n=0, shape=(9,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_4_{axis=-1, n=0, shape=(9,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_4_{axis=-1, n=0, shape=(9,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_4_{axis=-1, n=0, shape=(9,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_4_{axis=-1, n=0, shape=(9,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_5_{axis=-1, n=0, shape=(10,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_5_{axis=-1, n=0, shape=(10,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_5_{axis=-1, n=0, shape=(10,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_5_{axis=-1, n=0, shape=(10,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_5_{axis=-1, n=0, shape=(10,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_5_{axis=-1, n=0, shape=(10,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_5_{axis=-1, n=0, shape=(10,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_5_{axis=-1, n=0, shape=(10,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_5_{axis=-1, n=0, shape=(10,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_5_{axis=-1, n=0, shape=(10,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_5_{axis=-1, n=0, shape=(10,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_6_{axis=-1, n=0, shape=(10, 9)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_6_{axis=-1, n=0, shape=(10, 9)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_6_{axis=-1, n=0, shape=(10, 9)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_6_{axis=-1, n=0, shape=(10, 9)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_6_{axis=-1, n=0, shape=(10, 9)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_6_{axis=-1, n=0, shape=(10, 9)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_6_{axis=-1, n=0, shape=(10, 9)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_6_{axis=-1, n=0, shape=(10, 9)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_6_{axis=-1, n=0, shape=(10, 9)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_6_{axis=-1, n=0, shape=(10, 9)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_6_{axis=-1, n=0, shape=(10, 9)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_7_{axis=-1, n=0, shape=(10, 10)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_7_{axis=-1, n=0, shape=(10, 10)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_7_{axis=-1, n=0, shape=(10, 10)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_7_{axis=-1, n=0, shape=(10, 10)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_7_{axis=-1, n=0, shape=(10, 10)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_7_{axis=-1, n=0, shape=(10, 10)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_7_{axis=-1, n=0, shape=(10, 10)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_7_{axis=-1, n=0, shape=(10, 10)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_7_{axis=-1, n=0, shape=(10, 10)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_7_{axis=-1, n=0, shape=(10, 10)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_7_{axis=-1, n=0, shape=(10, 10)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_8_{axis=-1, n=5, shape=(9,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_8_{axis=-1, n=5, shape=(9,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_8_{axis=-1, n=5, shape=(9,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_8_{axis=-1, n=5, shape=(9,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_8_{axis=-1, n=5, shape=(9,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_8_{axis=-1, n=5, shape=(9,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_8_{axis=-1, n=5, shape=(9,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_8_{axis=-1, n=5, shape=(9,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_8_{axis=-1, n=5, shape=(9,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_8_{axis=-1, n=5, shape=(9,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_8_{axis=-1, n=5, shape=(9,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_9_{axis=-1, n=5, shape=(10,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_9_{axis=-1, n=5, shape=(10,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_9_{axis=-1, n=5, shape=(10,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_9_{axis=-1, n=5, shape=(10,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_9_{axis=-1, n=5, shape=(10,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_9_{axis=-1, n=5, shape=(10,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_9_{axis=-1, n=5, shape=(10,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_9_{axis=-1, n=5, shape=(10,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_9_{axis=-1, n=5, shape=(10,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_9_{axis=-1, n=5, shape=(10,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_9_{axis=-1, n=5, shape=(10,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_10_{axis=-1, n=5, shape=(10, 9)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_10_{axis=-1, n=5, shape=(10, 9)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_10_{axis=-1, n=5, shape=(10, 9)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_10_{axis=-1, n=5, shape=(10, 9)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_10_{axis=-1, n=5, shape=(10, 9)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_10_{axis=-1, n=5, shape=(10, 9)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_10_{axis=-1, n=5, shape=(10, 9)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_10_{axis=-1, n=5, shape=(10, 9)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_10_{axis=-1, n=5, shape=(10, 9)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_10_{axis=-1, n=5, shape=(10, 9)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_10_{axis=-1, n=5, shape=(10, 9)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_11_{axis=-1, n=5, shape=(10, 10)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_11_{axis=-1, n=5, shape=(10, 10)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_11_{axis=-1, n=5, shape=(10, 10)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_11_{axis=-1, n=5, shape=(10, 10)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_11_{axis=-1, n=5, shape=(10, 10)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_11_{axis=-1, n=5, shape=(10, 10)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_11_{axis=-1, n=5, shape=(10, 10)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_11_{axis=-1, n=5, shape=(10, 10)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_11_{axis=-1, n=5, shape=(10, 10)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_11_{axis=-1, n=5, shape=(10, 10)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_11_{axis=-1, n=5, shape=(10, 10)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_12_{axis=-1, n=10, shape=(9,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_12_{axis=-1, n=10, shape=(9,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_12_{axis=-1, n=10, shape=(9,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_12_{axis=-1, n=10, shape=(9,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_12_{axis=-1, n=10, shape=(9,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_12_{axis=-1, n=10, shape=(9,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_12_{axis=-1, n=10, shape=(9,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_12_{axis=-1, n=10, shape=(9,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_12_{axis=-1, n=10, shape=(9,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_12_{axis=-1, n=10, shape=(9,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_12_{axis=-1, n=10, shape=(9,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_13_{axis=-1, n=10, shape=(10,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_13_{axis=-1, n=10, shape=(10,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_13_{axis=-1, n=10, shape=(10,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_13_{axis=-1, n=10, shape=(10,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_13_{axis=-1, n=10, shape=(10,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_13_{axis=-1, n=10, shape=(10,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_13_{axis=-1, n=10, shape=(10,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_13_{axis=-1, n=10, shape=(10,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_13_{axis=-1, n=10, shape=(10,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_13_{axis=-1, n=10, shape=(10,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_13_{axis=-1, n=10, shape=(10,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_14_{axis=-1, n=10, shape=(10, 9)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_14_{axis=-1, n=10, shape=(10, 9)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_14_{axis=-1, n=10, shape=(10, 9)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_14_{axis=-1, n=10, shape=(10, 9)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_14_{axis=-1, n=10, shape=(10, 9)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_14_{axis=-1, n=10, shape=(10, 9)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_14_{axis=-1, n=10, shape=(10, 9)}::test_ifft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_14_{axis=-1, n=10, shape=(10, 9)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_14_{axis=-1, n=10, shape=(10, 9)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_14_{axis=-1, n=10, shape=(10, 9)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_14_{axis=-1, n=10, shape=(10, 9)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_15_{axis=-1, n=10, shape=(10, 10)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_15_{axis=-1, n=10, shape=(10, 10)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_15_{axis=-1, n=10, shape=(10, 10)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_15_{axis=-1, n=10, shape=(10, 10)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_15_{axis=-1, n=10, shape=(10, 10)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_15_{axis=-1, n=10, shape=(10, 10)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_15_{axis=-1, n=10, shape=(10, 10)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_15_{axis=-1, n=10, shape=(10, 10)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_15_{axis=-1, n=10, shape=(10, 10)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_15_{axis=-1, n=10, shape=(10, 10)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_15_{axis=-1, n=10, shape=(10, 10)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_16_{axis=-1, n=15, shape=(9,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_16_{axis=-1, n=15, shape=(9,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_16_{axis=-1, n=15, shape=(9,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_16_{axis=-1, n=15, shape=(9,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_16_{axis=-1, n=15, shape=(9,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_16_{axis=-1, n=15, shape=(9,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_16_{axis=-1, n=15, shape=(9,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_16_{axis=-1, n=15, shape=(9,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_16_{axis=-1, n=15, shape=(9,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_16_{axis=-1, n=15, shape=(9,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_16_{axis=-1, n=15, shape=(9,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_17_{axis=-1, n=15, shape=(10,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_17_{axis=-1, n=15, shape=(10,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_17_{axis=-1, n=15, shape=(10,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_17_{axis=-1, n=15, shape=(10,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_17_{axis=-1, n=15, shape=(10,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_17_{axis=-1, n=15, shape=(10,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_17_{axis=-1, n=15, shape=(10,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_17_{axis=-1, n=15, shape=(10,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_17_{axis=-1, n=15, shape=(10,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_17_{axis=-1, n=15, shape=(10,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_17_{axis=-1, n=15, shape=(10,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_18_{axis=-1, n=15, shape=(10, 9)}::test_fft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_18_{axis=-1, n=15, shape=(10, 9)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_18_{axis=-1, n=15, shape=(10, 9)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_18_{axis=-1, n=15, shape=(10, 9)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_18_{axis=-1, n=15, shape=(10, 9)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_18_{axis=-1, n=15, shape=(10, 9)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_18_{axis=-1, n=15, shape=(10, 9)}::test_ifft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_18_{axis=-1, n=15, shape=(10, 9)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_18_{axis=-1, n=15, shape=(10, 9)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_18_{axis=-1, n=15, shape=(10, 9)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_18_{axis=-1, n=15, shape=(10, 9)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_19_{axis=-1, n=15, shape=(10, 10)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_19_{axis=-1, n=15, shape=(10, 10)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_19_{axis=-1, n=15, shape=(10, 10)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_19_{axis=-1, n=15, shape=(10, 10)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_19_{axis=-1, n=15, shape=(10, 10)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_19_{axis=-1, n=15, shape=(10, 10)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_19_{axis=-1, n=15, shape=(10, 10)}::test_ifft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_19_{axis=-1, n=15, shape=(10, 10)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_19_{axis=-1, n=15, shape=(10, 10)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_19_{axis=-1, n=15, shape=(10, 10)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_19_{axis=-1, n=15, shape=(10, 10)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_20_{axis=0, n=None, shape=(9,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_20_{axis=0, n=None, shape=(9,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_20_{axis=0, n=None, shape=(9,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_20_{axis=0, n=None, shape=(9,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_20_{axis=0, n=None, shape=(9,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_20_{axis=0, n=None, shape=(9,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_20_{axis=0, n=None, shape=(9,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_20_{axis=0, n=None, shape=(9,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_20_{axis=0, n=None, shape=(9,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_20_{axis=0, n=None, shape=(9,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_20_{axis=0, n=None, shape=(9,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_21_{axis=0, n=None, shape=(10,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_21_{axis=0, n=None, shape=(10,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_21_{axis=0, n=None, shape=(10,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_21_{axis=0, n=None, shape=(10,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_21_{axis=0, n=None, shape=(10,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_21_{axis=0, n=None, shape=(10,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_21_{axis=0, n=None, shape=(10,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_21_{axis=0, n=None, shape=(10,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_21_{axis=0, n=None, shape=(10,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_21_{axis=0, n=None, shape=(10,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_21_{axis=0, n=None, shape=(10,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_22_{axis=0, n=None, shape=(10, 9)}::test_fft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_22_{axis=0, n=None, shape=(10, 9)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_22_{axis=0, n=None, shape=(10, 9)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_22_{axis=0, n=None, shape=(10, 9)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_22_{axis=0, n=None, shape=(10, 9)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_22_{axis=0, n=None, shape=(10, 9)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_22_{axis=0, n=None, shape=(10, 9)}::test_ifft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_22_{axis=0, n=None, shape=(10, 9)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_22_{axis=0, n=None, shape=(10, 9)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_22_{axis=0, n=None, shape=(10, 9)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_22_{axis=0, n=None, shape=(10, 9)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_23_{axis=0, n=None, shape=(10, 10)}::test_fft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_23_{axis=0, n=None, shape=(10, 10)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_23_{axis=0, n=None, shape=(10, 10)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_23_{axis=0, n=None, shape=(10, 10)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_23_{axis=0, n=None, shape=(10, 10)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_23_{axis=0, n=None, shape=(10, 10)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_23_{axis=0, n=None, shape=(10, 10)}::test_ifft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_23_{axis=0, n=None, shape=(10, 10)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_23_{axis=0, n=None, shape=(10, 10)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_23_{axis=0, n=None, shape=(10, 10)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_23_{axis=0, n=None, shape=(10, 10)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_24_{axis=0, n=0, shape=(9,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_24_{axis=0, n=0, shape=(9,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_24_{axis=0, n=0, shape=(9,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_24_{axis=0, n=0, shape=(9,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_24_{axis=0, n=0, shape=(9,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_24_{axis=0, n=0, shape=(9,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_24_{axis=0, n=0, shape=(9,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_24_{axis=0, n=0, shape=(9,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_24_{axis=0, n=0, shape=(9,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_24_{axis=0, n=0, shape=(9,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_24_{axis=0, n=0, shape=(9,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_25_{axis=0, n=0, shape=(10,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_25_{axis=0, n=0, shape=(10,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_25_{axis=0, n=0, shape=(10,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_25_{axis=0, n=0, shape=(10,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_25_{axis=0, n=0, shape=(10,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_25_{axis=0, n=0, shape=(10,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_25_{axis=0, n=0, shape=(10,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_25_{axis=0, n=0, shape=(10,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_25_{axis=0, n=0, shape=(10,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_25_{axis=0, n=0, shape=(10,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_25_{axis=0, n=0, shape=(10,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_26_{axis=0, n=0, shape=(10, 9)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_26_{axis=0, n=0, shape=(10, 9)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_26_{axis=0, n=0, shape=(10, 9)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_26_{axis=0, n=0, shape=(10, 9)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_26_{axis=0, n=0, shape=(10, 9)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_26_{axis=0, n=0, shape=(10, 9)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_26_{axis=0, n=0, shape=(10, 9)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_26_{axis=0, n=0, shape=(10, 9)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_26_{axis=0, n=0, shape=(10, 9)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_26_{axis=0, n=0, shape=(10, 9)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_26_{axis=0, n=0, shape=(10, 9)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_27_{axis=0, n=0, shape=(10, 10)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_27_{axis=0, n=0, shape=(10, 10)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_27_{axis=0, n=0, shape=(10, 10)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_27_{axis=0, n=0, shape=(10, 10)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_27_{axis=0, n=0, shape=(10, 10)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_27_{axis=0, n=0, shape=(10, 10)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_27_{axis=0, n=0, shape=(10, 10)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_27_{axis=0, n=0, shape=(10, 10)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_27_{axis=0, n=0, shape=(10, 10)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_27_{axis=0, n=0, shape=(10, 10)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_27_{axis=0, n=0, shape=(10, 10)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_28_{axis=0, n=5, shape=(9,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_28_{axis=0, n=5, shape=(9,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_28_{axis=0, n=5, shape=(9,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_28_{axis=0, n=5, shape=(9,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_28_{axis=0, n=5, shape=(9,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_28_{axis=0, n=5, shape=(9,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_28_{axis=0, n=5, shape=(9,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_28_{axis=0, n=5, shape=(9,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_28_{axis=0, n=5, shape=(9,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_28_{axis=0, n=5, shape=(9,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_28_{axis=0, n=5, shape=(9,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_29_{axis=0, n=5, shape=(10,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_29_{axis=0, n=5, shape=(10,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_29_{axis=0, n=5, shape=(10,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_29_{axis=0, n=5, shape=(10,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_29_{axis=0, n=5, shape=(10,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_29_{axis=0, n=5, shape=(10,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_29_{axis=0, n=5, shape=(10,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_29_{axis=0, n=5, shape=(10,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_29_{axis=0, n=5, shape=(10,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_29_{axis=0, n=5, shape=(10,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_29_{axis=0, n=5, shape=(10,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_30_{axis=0, n=5, shape=(10, 9)}::test_fft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_30_{axis=0, n=5, shape=(10, 9)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_30_{axis=0, n=5, shape=(10, 9)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_30_{axis=0, n=5, shape=(10, 9)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_30_{axis=0, n=5, shape=(10, 9)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_30_{axis=0, n=5, shape=(10, 9)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_30_{axis=0, n=5, shape=(10, 9)}::test_ifft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_30_{axis=0, n=5, shape=(10, 9)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_30_{axis=0, n=5, shape=(10, 9)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_30_{axis=0, n=5, shape=(10, 9)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_30_{axis=0, n=5, shape=(10, 9)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_31_{axis=0, n=5, shape=(10, 10)}::test_fft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_31_{axis=0, n=5, shape=(10, 10)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_31_{axis=0, n=5, shape=(10, 10)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_31_{axis=0, n=5, shape=(10, 10)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_31_{axis=0, n=5, shape=(10, 10)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_31_{axis=0, n=5, shape=(10, 10)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_31_{axis=0, n=5, shape=(10, 10)}::test_ifft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_31_{axis=0, n=5, shape=(10, 10)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_31_{axis=0, n=5, shape=(10, 10)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_31_{axis=0, n=5, shape=(10, 10)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_31_{axis=0, n=5, shape=(10, 10)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_32_{axis=0, n=10, shape=(9,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_32_{axis=0, n=10, shape=(9,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_32_{axis=0, n=10, shape=(9,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_32_{axis=0, n=10, shape=(9,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_32_{axis=0, n=10, shape=(9,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_32_{axis=0, n=10, shape=(9,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_32_{axis=0, n=10, shape=(9,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_32_{axis=0, n=10, shape=(9,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_32_{axis=0, n=10, shape=(9,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_32_{axis=0, n=10, shape=(9,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_32_{axis=0, n=10, shape=(9,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_33_{axis=0, n=10, shape=(10,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_33_{axis=0, n=10, shape=(10,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_33_{axis=0, n=10, shape=(10,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_33_{axis=0, n=10, shape=(10,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_33_{axis=0, n=10, shape=(10,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_33_{axis=0, n=10, shape=(10,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_33_{axis=0, n=10, shape=(10,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_33_{axis=0, n=10, shape=(10,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_33_{axis=0, n=10, shape=(10,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_33_{axis=0, n=10, shape=(10,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_33_{axis=0, n=10, shape=(10,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_34_{axis=0, n=10, shape=(10, 9)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_34_{axis=0, n=10, shape=(10, 9)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_34_{axis=0, n=10, shape=(10, 9)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_34_{axis=0, n=10, shape=(10, 9)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_34_{axis=0, n=10, shape=(10, 9)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_34_{axis=0, n=10, shape=(10, 9)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_34_{axis=0, n=10, shape=(10, 9)}::test_ifft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_34_{axis=0, n=10, shape=(10, 9)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_34_{axis=0, n=10, shape=(10, 9)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_34_{axis=0, n=10, shape=(10, 9)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_34_{axis=0, n=10, shape=(10, 9)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_35_{axis=0, n=10, shape=(10, 10)}::test_fft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_35_{axis=0, n=10, shape=(10, 10)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_35_{axis=0, n=10, shape=(10, 10)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_35_{axis=0, n=10, shape=(10, 10)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_35_{axis=0, n=10, shape=(10, 10)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_35_{axis=0, n=10, shape=(10, 10)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_35_{axis=0, n=10, shape=(10, 10)}::test_ifft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_35_{axis=0, n=10, shape=(10, 10)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_35_{axis=0, n=10, shape=(10, 10)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_35_{axis=0, n=10, shape=(10, 10)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_35_{axis=0, n=10, shape=(10, 10)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_36_{axis=0, n=15, shape=(9,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_36_{axis=0, n=15, shape=(9,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_36_{axis=0, n=15, shape=(9,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_36_{axis=0, n=15, shape=(9,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_36_{axis=0, n=15, shape=(9,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_36_{axis=0, n=15, shape=(9,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_36_{axis=0, n=15, shape=(9,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_36_{axis=0, n=15, shape=(9,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_36_{axis=0, n=15, shape=(9,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_36_{axis=0, n=15, shape=(9,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_36_{axis=0, n=15, shape=(9,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_37_{axis=0, n=15, shape=(10,)}::test_fft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_37_{axis=0, n=15, shape=(10,)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_37_{axis=0, n=15, shape=(10,)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_37_{axis=0, n=15, shape=(10,)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_37_{axis=0, n=15, shape=(10,)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_37_{axis=0, n=15, shape=(10,)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_37_{axis=0, n=15, shape=(10,)}::test_ifft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_37_{axis=0, n=15, shape=(10,)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_37_{axis=0, n=15, shape=(10,)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_37_{axis=0, n=15, shape=(10,)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_37_{axis=0, n=15, shape=(10,)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_38_{axis=0, n=15, shape=(10, 9)}::test_fft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_38_{axis=0, n=15, shape=(10, 9)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_38_{axis=0, n=15, shape=(10, 9)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_38_{axis=0, n=15, shape=(10, 9)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_38_{axis=0, n=15, shape=(10, 9)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_38_{axis=0, n=15, shape=(10, 9)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_38_{axis=0, n=15, shape=(10, 9)}::test_ifft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_38_{axis=0, n=15, shape=(10, 9)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_38_{axis=0, n=15, shape=(10, 9)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_38_{axis=0, n=15, shape=(10, 9)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_38_{axis=0, n=15, shape=(10, 9)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_39_{axis=0, n=15, shape=(10, 10)}::test_fft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_39_{axis=0, n=15, shape=(10, 10)}::test_fft_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_39_{axis=0, n=15, shape=(10, 10)}::test_fft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_39_{axis=0, n=15, shape=(10, 10)}::test_fft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_39_{axis=0, n=15, shape=(10, 10)}::test_fft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_39_{axis=0, n=15, shape=(10, 10)}::test_fft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_39_{axis=0, n=15, shape=(10, 10)}::test_ifft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_39_{axis=0, n=15, shape=(10, 10)}::test_ifft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_39_{axis=0, n=15, shape=(10, 10)}::test_ifft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_39_{axis=0, n=15, shape=(10, 10)}::test_ifft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft_param_39_{axis=0, n=15, shape=(10, 10)}::test_ifft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_0_{axes=None, s=None, shape=(3, 4)}::test_fft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_0_{axes=None, s=None, shape=(3, 4)}::test_fft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_0_{axes=None, s=None, shape=(3, 4)}::test_fft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_0_{axes=None, s=None, shape=(3, 4)}::test_fft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_0_{axes=None, s=None, shape=(3, 4)}::test_fft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_0_{axes=None, s=None, shape=(3, 4)}::test_ifft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_0_{axes=None, s=None, shape=(3, 4)}::test_ifft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_0_{axes=None, s=None, shape=(3, 4)}::test_ifft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_0_{axes=None, s=None, shape=(3, 4)}::test_ifft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_0_{axes=None, s=None, shape=(3, 4)}::test_ifft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_fft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_fft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_fft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_fft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_fft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_ifft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_ifft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_ifft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_ifft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_ifft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_fft2 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_fft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_fft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_fft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_fft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_ifft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_ifft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_ifft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_ifft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_ifft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_fft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_fft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_fft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_fft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_fft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_ifft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_ifft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_ifft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_ifft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_ifft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_fft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_fft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_fft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_fft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_fft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_ifft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_ifft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_ifft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_ifft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_ifft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_fft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_fft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_fft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_fft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_fft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_ifft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_ifft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_ifft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_ifft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_ifft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_fft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_fft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_fft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_fft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_fft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_ifft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_ifft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_ifft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_ifft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_ifft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_fft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_fft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_fft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_fft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_fft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_ifft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_ifft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_ifft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_ifft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_ifft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_fft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_fft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_fft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_fft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_fft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_ifft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_ifft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_ifft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_ifft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_ifft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_fft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_fft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_fft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_fft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_fft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_ifft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_ifft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_ifft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_ifft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_ifft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_fft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_fft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_fft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_fft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_fft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_ifft2 | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_ifft2_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_ifft2_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_ifft2_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFft2_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_ifft2_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_0_{axes=None, s=None, shape=(3, 4)}::test_fftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_0_{axes=None, s=None, shape=(3, 4)}::test_fftn_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_0_{axes=None, s=None, shape=(3, 4)}::test_fftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_0_{axes=None, s=None, shape=(3, 4)}::test_fftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_0_{axes=None, s=None, shape=(3, 4)}::test_fftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_0_{axes=None, s=None, shape=(3, 4)}::test_fftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_0_{axes=None, s=None, shape=(3, 4)}::test_ifftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_0_{axes=None, s=None, shape=(3, 4)}::test_ifftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_0_{axes=None, s=None, shape=(3, 4)}::test_ifftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_0_{axes=None, s=None, shape=(3, 4)}::test_ifftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_0_{axes=None, s=None, shape=(3, 4)}::test_ifftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_fftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_fftn_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_fftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_fftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_fftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_fftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_ifftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_ifftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_ifftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_ifftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_1_{axes=None, s=(1, 5), shape=(3, 4)}::test_ifftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_fftn | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_fftn_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_fftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_fftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_fftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_fftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_ifftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_ifftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_ifftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_ifftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_2_{axes=(-2, -1), s=None, shape=(3, 4)}::test_ifftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_fftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_fftn_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_fftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_fftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_fftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_fftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_ifftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_ifftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_ifftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_ifftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_3_{axes=(-1, -2), s=None, shape=(3, 4)}::test_ifftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_fftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_fftn_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_fftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_fftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_fftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_fftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_ifftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_ifftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_ifftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_ifftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_4_{axes=(0,), s=None, shape=(3, 4)}::test_ifftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_fftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_fftn_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_fftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_fftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_fftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_fftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_ifftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_ifftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_ifftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_ifftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_5_{axes=None, s=None, shape=(2, 3, 4)}::test_ifftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_fftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_fftn_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_fftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_fftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_fftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_fftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_ifftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_ifftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_ifftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_ifftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_6_{axes=None, s=(1, 4, 10), shape=(2, 3, 4)}::test_ifftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_fftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_fftn_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_fftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_fftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_fftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_fftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_ifftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_ifftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_ifftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_ifftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_7_{axes=(-3, -2, -1), s=None, shape=(2, 3, 4)}::test_ifftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_fftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_fftn_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_fftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_fftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_fftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_fftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_ifftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_ifftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_ifftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_ifftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_8_{axes=(-1, -2, -3), s=None, shape=(2, 3, 4)}::test_ifftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_fftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_fftn_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_fftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_fftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_fftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_fftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_ifftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_ifftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_ifftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_ifftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_9_{axes=(0, 1), s=None, shape=(2, 3, 4)}::test_ifftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_fftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_fftn_multiple_plan_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_fftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_fftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_fftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_fftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_ifftn | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_ifftn_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_ifftn_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_ifftn_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftn_param_10_{axes=None, s=None, shape=(2, 3, 4, 5)}::test_ifftn_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_0_{axis=-1, n=None, shape=(9,)}::test_irfft | 6.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_0_{axis=-1, n=None, shape=(9,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_0_{axis=-1, n=None, shape=(9,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_0_{axis=-1, n=None, shape=(9,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_0_{axis=-1, n=None, shape=(9,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_0_{axis=-1, n=None, shape=(9,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_0_{axis=-1, n=None, shape=(9,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_1_{axis=-1, n=None, shape=(10,)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_1_{axis=-1, n=None, shape=(10,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_1_{axis=-1, n=None, shape=(10,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_1_{axis=-1, n=None, shape=(10,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_1_{axis=-1, n=None, shape=(10,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_1_{axis=-1, n=None, shape=(10,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_1_{axis=-1, n=None, shape=(10,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_2_{axis=-1, n=None, shape=(10, 9)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_3_{axis=-1, n=None, shape=(10, 10)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_4_{axis=-1, n=5, shape=(9,)}::test_irfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_4_{axis=-1, n=5, shape=(9,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_4_{axis=-1, n=5, shape=(9,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_4_{axis=-1, n=5, shape=(9,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_4_{axis=-1, n=5, shape=(9,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_4_{axis=-1, n=5, shape=(9,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_4_{axis=-1, n=5, shape=(9,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_5_{axis=-1, n=5, shape=(10,)}::test_irfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_5_{axis=-1, n=5, shape=(10,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_5_{axis=-1, n=5, shape=(10,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_5_{axis=-1, n=5, shape=(10,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_5_{axis=-1, n=5, shape=(10,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_5_{axis=-1, n=5, shape=(10,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_5_{axis=-1, n=5, shape=(10,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_6_{axis=-1, n=5, shape=(10, 9)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_6_{axis=-1, n=5, shape=(10, 9)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_6_{axis=-1, n=5, shape=(10, 9)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_6_{axis=-1, n=5, shape=(10, 9)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_6_{axis=-1, n=5, shape=(10, 9)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_6_{axis=-1, n=5, shape=(10, 9)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_6_{axis=-1, n=5, shape=(10, 9)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_7_{axis=-1, n=5, shape=(10, 10)}::test_irfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_7_{axis=-1, n=5, shape=(10, 10)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_7_{axis=-1, n=5, shape=(10, 10)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_7_{axis=-1, n=5, shape=(10, 10)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_7_{axis=-1, n=5, shape=(10, 10)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_7_{axis=-1, n=5, shape=(10, 10)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_7_{axis=-1, n=5, shape=(10, 10)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_8_{axis=-1, n=10, shape=(9,)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_8_{axis=-1, n=10, shape=(9,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_8_{axis=-1, n=10, shape=(9,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_8_{axis=-1, n=10, shape=(9,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_8_{axis=-1, n=10, shape=(9,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_8_{axis=-1, n=10, shape=(9,)}::test_rfft_plan | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_8_{axis=-1, n=10, shape=(9,)}::test_rfft_plan_manager | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_9_{axis=-1, n=10, shape=(10,)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_9_{axis=-1, n=10, shape=(10,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_9_{axis=-1, n=10, shape=(10,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_9_{axis=-1, n=10, shape=(10,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_9_{axis=-1, n=10, shape=(10,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_9_{axis=-1, n=10, shape=(10,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_9_{axis=-1, n=10, shape=(10,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_10_{axis=-1, n=10, shape=(10, 9)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_10_{axis=-1, n=10, shape=(10, 9)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_10_{axis=-1, n=10, shape=(10, 9)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_10_{axis=-1, n=10, shape=(10, 9)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_10_{axis=-1, n=10, shape=(10, 9)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_10_{axis=-1, n=10, shape=(10, 9)}::test_rfft_plan | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_10_{axis=-1, n=10, shape=(10, 9)}::test_rfft_plan_manager | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_11_{axis=-1, n=10, shape=(10, 10)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_11_{axis=-1, n=10, shape=(10, 10)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_11_{axis=-1, n=10, shape=(10, 10)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_11_{axis=-1, n=10, shape=(10, 10)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_11_{axis=-1, n=10, shape=(10, 10)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_11_{axis=-1, n=10, shape=(10, 10)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_11_{axis=-1, n=10, shape=(10, 10)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_12_{axis=-1, n=15, shape=(9,)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_12_{axis=-1, n=15, shape=(9,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_12_{axis=-1, n=15, shape=(9,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_12_{axis=-1, n=15, shape=(9,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_12_{axis=-1, n=15, shape=(9,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_12_{axis=-1, n=15, shape=(9,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_12_{axis=-1, n=15, shape=(9,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_13_{axis=-1, n=15, shape=(10,)}::test_irfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_13_{axis=-1, n=15, shape=(10,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_13_{axis=-1, n=15, shape=(10,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_13_{axis=-1, n=15, shape=(10,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_13_{axis=-1, n=15, shape=(10,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_13_{axis=-1, n=15, shape=(10,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_13_{axis=-1, n=15, shape=(10,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_14_{axis=-1, n=15, shape=(10, 9)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_14_{axis=-1, n=15, shape=(10, 9)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_14_{axis=-1, n=15, shape=(10, 9)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_14_{axis=-1, n=15, shape=(10, 9)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_14_{axis=-1, n=15, shape=(10, 9)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_14_{axis=-1, n=15, shape=(10, 9)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_14_{axis=-1, n=15, shape=(10, 9)}::test_rfft_plan_manager | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_15_{axis=-1, n=15, shape=(10, 10)}::test_irfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_15_{axis=-1, n=15, shape=(10, 10)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_15_{axis=-1, n=15, shape=(10, 10)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_15_{axis=-1, n=15, shape=(10, 10)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_15_{axis=-1, n=15, shape=(10, 10)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_15_{axis=-1, n=15, shape=(10, 10)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_15_{axis=-1, n=15, shape=(10, 10)}::test_rfft_plan_manager | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_16_{axis=0, n=None, shape=(9,)}::test_irfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_16_{axis=0, n=None, shape=(9,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_16_{axis=0, n=None, shape=(9,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_16_{axis=0, n=None, shape=(9,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_16_{axis=0, n=None, shape=(9,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_16_{axis=0, n=None, shape=(9,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_16_{axis=0, n=None, shape=(9,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_17_{axis=0, n=None, shape=(10,)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_17_{axis=0, n=None, shape=(10,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_17_{axis=0, n=None, shape=(10,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_17_{axis=0, n=None, shape=(10,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_17_{axis=0, n=None, shape=(10,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_17_{axis=0, n=None, shape=(10,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_17_{axis=0, n=None, shape=(10,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_18_{axis=0, n=None, shape=(10, 9)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_18_{axis=0, n=None, shape=(10, 9)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_18_{axis=0, n=None, shape=(10, 9)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_18_{axis=0, n=None, shape=(10, 9)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_18_{axis=0, n=None, shape=(10, 9)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_18_{axis=0, n=None, shape=(10, 9)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_18_{axis=0, n=None, shape=(10, 9)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_19_{axis=0, n=None, shape=(10, 10)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_19_{axis=0, n=None, shape=(10, 10)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_19_{axis=0, n=None, shape=(10, 10)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_19_{axis=0, n=None, shape=(10, 10)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_19_{axis=0, n=None, shape=(10, 10)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_19_{axis=0, n=None, shape=(10, 10)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_19_{axis=0, n=None, shape=(10, 10)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_20_{axis=0, n=5, shape=(9,)}::test_irfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_20_{axis=0, n=5, shape=(9,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_20_{axis=0, n=5, shape=(9,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_20_{axis=0, n=5, shape=(9,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_20_{axis=0, n=5, shape=(9,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_20_{axis=0, n=5, shape=(9,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_20_{axis=0, n=5, shape=(9,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_21_{axis=0, n=5, shape=(10,)}::test_irfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_21_{axis=0, n=5, shape=(10,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_21_{axis=0, n=5, shape=(10,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_21_{axis=0, n=5, shape=(10,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_21_{axis=0, n=5, shape=(10,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_21_{axis=0, n=5, shape=(10,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_21_{axis=0, n=5, shape=(10,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_22_{axis=0, n=5, shape=(10, 9)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_22_{axis=0, n=5, shape=(10, 9)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_22_{axis=0, n=5, shape=(10, 9)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_22_{axis=0, n=5, shape=(10, 9)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_22_{axis=0, n=5, shape=(10, 9)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_22_{axis=0, n=5, shape=(10, 9)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_22_{axis=0, n=5, shape=(10, 9)}::test_rfft_plan_manager | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_23_{axis=0, n=5, shape=(10, 10)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_23_{axis=0, n=5, shape=(10, 10)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_23_{axis=0, n=5, shape=(10, 10)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_23_{axis=0, n=5, shape=(10, 10)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_23_{axis=0, n=5, shape=(10, 10)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_23_{axis=0, n=5, shape=(10, 10)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_23_{axis=0, n=5, shape=(10, 10)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_24_{axis=0, n=10, shape=(9,)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_24_{axis=0, n=10, shape=(9,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_24_{axis=0, n=10, shape=(9,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_24_{axis=0, n=10, shape=(9,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_24_{axis=0, n=10, shape=(9,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_24_{axis=0, n=10, shape=(9,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_24_{axis=0, n=10, shape=(9,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_25_{axis=0, n=10, shape=(10,)}::test_irfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_25_{axis=0, n=10, shape=(10,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_25_{axis=0, n=10, shape=(10,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_25_{axis=0, n=10, shape=(10,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_25_{axis=0, n=10, shape=(10,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_25_{axis=0, n=10, shape=(10,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_25_{axis=0, n=10, shape=(10,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_26_{axis=0, n=10, shape=(10, 9)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_26_{axis=0, n=10, shape=(10, 9)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_26_{axis=0, n=10, shape=(10, 9)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_26_{axis=0, n=10, shape=(10, 9)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_26_{axis=0, n=10, shape=(10, 9)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_26_{axis=0, n=10, shape=(10, 9)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_26_{axis=0, n=10, shape=(10, 9)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_27_{axis=0, n=10, shape=(10, 10)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_27_{axis=0, n=10, shape=(10, 10)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_27_{axis=0, n=10, shape=(10, 10)}::test_rfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_27_{axis=0, n=10, shape=(10, 10)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_27_{axis=0, n=10, shape=(10, 10)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_27_{axis=0, n=10, shape=(10, 10)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_27_{axis=0, n=10, shape=(10, 10)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_28_{axis=0, n=15, shape=(9,)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_28_{axis=0, n=15, shape=(9,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_28_{axis=0, n=15, shape=(9,)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_28_{axis=0, n=15, shape=(9,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_28_{axis=0, n=15, shape=(9,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_28_{axis=0, n=15, shape=(9,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_28_{axis=0, n=15, shape=(9,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_29_{axis=0, n=15, shape=(10,)}::test_irfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_29_{axis=0, n=15, shape=(10,)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_29_{axis=0, n=15, shape=(10,)}::test_rfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_29_{axis=0, n=15, shape=(10,)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_29_{axis=0, n=15, shape=(10,)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_29_{axis=0, n=15, shape=(10,)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_29_{axis=0, n=15, shape=(10,)}::test_rfft_plan_manager | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_30_{axis=0, n=15, shape=(10, 9)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_30_{axis=0, n=15, shape=(10, 9)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_30_{axis=0, n=15, shape=(10, 9)}::test_rfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_30_{axis=0, n=15, shape=(10, 9)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_30_{axis=0, n=15, shape=(10, 9)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_30_{axis=0, n=15, shape=(10, 9)}::test_rfft_plan | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_30_{axis=0, n=15, shape=(10, 9)}::test_rfft_plan_manager | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_31_{axis=0, n=15, shape=(10, 10)}::test_irfft | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_31_{axis=0, n=15, shape=(10, 10)}::test_irfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_31_{axis=0, n=15, shape=(10, 10)}::test_rfft | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_31_{axis=0, n=15, shape=(10, 10)}::test_rfft_overwrite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_31_{axis=0, n=15, shape=(10, 10)}::test_rfft_overwrite_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_31_{axis=0, n=15, shape=(10, 10)}::test_rfft_plan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestRfft_param_31_{axis=0, n=15, shape=(10, 10)}::test_rfft_plan_manager | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftnView_param_0_{data_order='F', shape=(32, 16, 4)}::test_contiguous_view | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftnView_param_0_{data_order='F', shape=(32, 16, 4)}::test_noncontiguous_view | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftnView_param_0_{data_order='F', shape=(32, 16, 4)}::test_overwrite_x_with_contiguous_view | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftnView_param_1_{data_order='C', shape=(4, 32, 16)}::test_contiguous_view | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftnView_param_1_{data_order='C', shape=(4, 32, 16)}::test_noncontiguous_view | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py::TestFftnView_param_1_{data_order='C', shape=(4, 32, 16)}::test_overwrite_x_with_contiguous_view | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_0_{shape=(1, 1)}::test_lu_factor | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_0_{shape=(1, 1)}::test_lu_factor_reconstruction | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_0_{shape=(1, 1)}::test_lu_factor_reconstruction_singular | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_1_{shape=(2, 2)}::test_lu_factor | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_1_{shape=(2, 2)}::test_lu_factor_reconstruction | 2.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_1_{shape=(2, 2)}::test_lu_factor_reconstruction_singular | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_2_{shape=(3, 3)}::test_lu_factor | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_2_{shape=(3, 3)}::test_lu_factor_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_2_{shape=(3, 3)}::test_lu_factor_reconstruction_singular | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_3_{shape=(5, 5)}::test_lu_factor | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_3_{shape=(5, 5)}::test_lu_factor_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_3_{shape=(5, 5)}::test_lu_factor_reconstruction_singular | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_4_{shape=(1, 5)}::test_lu_factor | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = d (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = F (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = D (skip non-square tests since scipy.lu_factor requires square) | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_4_{shape=(1, 5)}::test_lu_factor_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_4_{shape=(1, 5)}::test_lu_factor_reconstruction_singular | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = d (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = F (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = D (skip non-square tests since scipy.lu_factor requires square) | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_5_{shape=(5, 1)}::test_lu_factor | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = d (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = F (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = D (skip non-square tests since scipy.lu_factor requires square) | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_5_{shape=(5, 1)}::test_lu_factor_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_5_{shape=(5, 1)}::test_lu_factor_reconstruction_singular | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = d (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = F (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = D (skip non-square tests since scipy.lu_factor requires square) | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_6_{shape=(2, 5)}::test_lu_factor | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = d (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = F (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = D (skip non-square tests since scipy.lu_factor requires square) | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_6_{shape=(2, 5)}::test_lu_factor_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_6_{shape=(2, 5)}::test_lu_factor_reconstruction_singular | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = d (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = F (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = D (skip non-square tests since scipy.lu_factor requires square) | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_7_{shape=(5, 2)}::test_lu_factor | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = d (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = F (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = D (skip non-square tests since scipy.lu_factor requires square) | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_7_{shape=(5, 2)}::test_lu_factor_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUFactor_param_7_{shape=(5, 2)}::test_lu_factor_reconstruction_singular | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = f (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = d (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = F (skip non-square tests since scipy.lu_factor requires square) skipped: dtype = D (skip non-square tests since scipy.lu_factor requires square) | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_0_{permute_l=False, shape=(1, 1)}::test_lu | 4.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_0_{permute_l=False, shape=(1, 1)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_1_{permute_l=False, shape=(2, 2)}::test_lu | 2.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_1_{permute_l=False, shape=(2, 2)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_2_{permute_l=False, shape=(3, 3)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_2_{permute_l=False, shape=(3, 3)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_3_{permute_l=False, shape=(5, 5)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_3_{permute_l=False, shape=(5, 5)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_4_{permute_l=False, shape=(1, 5)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_4_{permute_l=False, shape=(1, 5)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_5_{permute_l=False, shape=(5, 1)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_5_{permute_l=False, shape=(5, 1)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_6_{permute_l=False, shape=(2, 5)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_6_{permute_l=False, shape=(2, 5)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_7_{permute_l=False, shape=(5, 2)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_7_{permute_l=False, shape=(5, 2)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_8_{permute_l=True, shape=(1, 1)}::test_lu | 1.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_8_{permute_l=True, shape=(1, 1)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_9_{permute_l=True, shape=(2, 2)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_9_{permute_l=True, shape=(2, 2)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_10_{permute_l=True, shape=(3, 3)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_10_{permute_l=True, shape=(3, 3)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_11_{permute_l=True, shape=(5, 5)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_11_{permute_l=True, shape=(5, 5)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_12_{permute_l=True, shape=(1, 5)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_12_{permute_l=True, shape=(1, 5)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_13_{permute_l=True, shape=(5, 1)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_13_{permute_l=True, shape=(5, 1)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_14_{permute_l=True, shape=(2, 5)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_14_{permute_l=True, shape=(2, 5)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_15_{permute_l=True, shape=(5, 2)}::test_lu | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLU_param_15_{permute_l=True, shape=(5, 2)}::test_lu_reconstruction | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUSolve_param_0_{shapes=((4, 4), (4,)), trans=0}::test_lu_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUSolve_param_1_{shapes=((4, 4), (4,)), trans=1}::test_lu_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUSolve_param_2_{shapes=((4, 4), (4,)), trans=2}::test_lu_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUSolve_param_3_{shapes=((5, 5), (5, 2)), trans=0}::test_lu_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUSolve_param_4_{shapes=((5, 5), (5, 2)), trans=1}::test_lu_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py::TestLUSolve_param_5_{shapes=((5, 5), (5, 2)), trans=2}::test_lu_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_0_{check_finite=True, lower=True, overwrite_b=True, trans=0, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_0_{check_finite=True, lower=True, overwrite_b=True, trans=0, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_0_{check_finite=True, lower=True, overwrite_b=True, trans=0, unit_diagonal=True}::test_solve | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_1_{check_finite=True, lower=True, overwrite_b=True, trans=0, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_1_{check_finite=True, lower=True, overwrite_b=True, trans=0, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_1_{check_finite=True, lower=True, overwrite_b=True, trans=0, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_2_{check_finite=True, lower=True, overwrite_b=True, trans=1, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_2_{check_finite=True, lower=True, overwrite_b=True, trans=1, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_2_{check_finite=True, lower=True, overwrite_b=True, trans=1, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_3_{check_finite=True, lower=True, overwrite_b=True, trans=1, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_3_{check_finite=True, lower=True, overwrite_b=True, trans=1, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_3_{check_finite=True, lower=True, overwrite_b=True, trans=1, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_4_{check_finite=True, lower=True, overwrite_b=True, trans=2, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_4_{check_finite=True, lower=True, overwrite_b=True, trans=2, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_4_{check_finite=True, lower=True, overwrite_b=True, trans=2, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_5_{check_finite=True, lower=True, overwrite_b=True, trans=2, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_5_{check_finite=True, lower=True, overwrite_b=True, trans=2, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_5_{check_finite=True, lower=True, overwrite_b=True, trans=2, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_6_{check_finite=True, lower=True, overwrite_b=True, trans='N', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_6_{check_finite=True, lower=True, overwrite_b=True, trans='N', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_6_{check_finite=True, lower=True, overwrite_b=True, trans='N', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_7_{check_finite=True, lower=True, overwrite_b=True, trans='N', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_7_{check_finite=True, lower=True, overwrite_b=True, trans='N', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_7_{check_finite=True, lower=True, overwrite_b=True, trans='N', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_8_{check_finite=True, lower=True, overwrite_b=True, trans='T', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_8_{check_finite=True, lower=True, overwrite_b=True, trans='T', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_8_{check_finite=True, lower=True, overwrite_b=True, trans='T', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_9_{check_finite=True, lower=True, overwrite_b=True, trans='T', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_9_{check_finite=True, lower=True, overwrite_b=True, trans='T', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_9_{check_finite=True, lower=True, overwrite_b=True, trans='T', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_10_{check_finite=True, lower=True, overwrite_b=True, trans='C', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_10_{check_finite=True, lower=True, overwrite_b=True, trans='C', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_10_{check_finite=True, lower=True, overwrite_b=True, trans='C', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_11_{check_finite=True, lower=True, overwrite_b=True, trans='C', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_11_{check_finite=True, lower=True, overwrite_b=True, trans='C', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_11_{check_finite=True, lower=True, overwrite_b=True, trans='C', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_12_{check_finite=True, lower=True, overwrite_b=False, trans=0, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_12_{check_finite=True, lower=True, overwrite_b=False, trans=0, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_12_{check_finite=True, lower=True, overwrite_b=False, trans=0, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_13_{check_finite=True, lower=True, overwrite_b=False, trans=0, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_13_{check_finite=True, lower=True, overwrite_b=False, trans=0, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_13_{check_finite=True, lower=True, overwrite_b=False, trans=0, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_14_{check_finite=True, lower=True, overwrite_b=False, trans=1, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_14_{check_finite=True, lower=True, overwrite_b=False, trans=1, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_14_{check_finite=True, lower=True, overwrite_b=False, trans=1, unit_diagonal=True}::test_solve | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_15_{check_finite=True, lower=True, overwrite_b=False, trans=1, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_15_{check_finite=True, lower=True, overwrite_b=False, trans=1, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_15_{check_finite=True, lower=True, overwrite_b=False, trans=1, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_16_{check_finite=True, lower=True, overwrite_b=False, trans=2, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_16_{check_finite=True, lower=True, overwrite_b=False, trans=2, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_16_{check_finite=True, lower=True, overwrite_b=False, trans=2, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_17_{check_finite=True, lower=True, overwrite_b=False, trans=2, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_17_{check_finite=True, lower=True, overwrite_b=False, trans=2, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_17_{check_finite=True, lower=True, overwrite_b=False, trans=2, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_18_{check_finite=True, lower=True, overwrite_b=False, trans='N', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_18_{check_finite=True, lower=True, overwrite_b=False, trans='N', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_18_{check_finite=True, lower=True, overwrite_b=False, trans='N', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_19_{check_finite=True, lower=True, overwrite_b=False, trans='N', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_19_{check_finite=True, lower=True, overwrite_b=False, trans='N', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_19_{check_finite=True, lower=True, overwrite_b=False, trans='N', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_20_{check_finite=True, lower=True, overwrite_b=False, trans='T', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_20_{check_finite=True, lower=True, overwrite_b=False, trans='T', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_20_{check_finite=True, lower=True, overwrite_b=False, trans='T', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_21_{check_finite=True, lower=True, overwrite_b=False, trans='T', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_21_{check_finite=True, lower=True, overwrite_b=False, trans='T', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_21_{check_finite=True, lower=True, overwrite_b=False, trans='T', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_22_{check_finite=True, lower=True, overwrite_b=False, trans='C', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_22_{check_finite=True, lower=True, overwrite_b=False, trans='C', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_22_{check_finite=True, lower=True, overwrite_b=False, trans='C', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_23_{check_finite=True, lower=True, overwrite_b=False, trans='C', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_23_{check_finite=True, lower=True, overwrite_b=False, trans='C', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_23_{check_finite=True, lower=True, overwrite_b=False, trans='C', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_24_{check_finite=True, lower=False, overwrite_b=True, trans=0, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_24_{check_finite=True, lower=False, overwrite_b=True, trans=0, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_24_{check_finite=True, lower=False, overwrite_b=True, trans=0, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_25_{check_finite=True, lower=False, overwrite_b=True, trans=0, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_25_{check_finite=True, lower=False, overwrite_b=True, trans=0, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_25_{check_finite=True, lower=False, overwrite_b=True, trans=0, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_26_{check_finite=True, lower=False, overwrite_b=True, trans=1, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_26_{check_finite=True, lower=False, overwrite_b=True, trans=1, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_26_{check_finite=True, lower=False, overwrite_b=True, trans=1, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_27_{check_finite=True, lower=False, overwrite_b=True, trans=1, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_27_{check_finite=True, lower=False, overwrite_b=True, trans=1, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_27_{check_finite=True, lower=False, overwrite_b=True, trans=1, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_28_{check_finite=True, lower=False, overwrite_b=True, trans=2, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_28_{check_finite=True, lower=False, overwrite_b=True, trans=2, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_28_{check_finite=True, lower=False, overwrite_b=True, trans=2, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_29_{check_finite=True, lower=False, overwrite_b=True, trans=2, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_29_{check_finite=True, lower=False, overwrite_b=True, trans=2, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_29_{check_finite=True, lower=False, overwrite_b=True, trans=2, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_30_{check_finite=True, lower=False, overwrite_b=True, trans='N', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_30_{check_finite=True, lower=False, overwrite_b=True, trans='N', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_30_{check_finite=True, lower=False, overwrite_b=True, trans='N', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_31_{check_finite=True, lower=False, overwrite_b=True, trans='N', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_31_{check_finite=True, lower=False, overwrite_b=True, trans='N', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_31_{check_finite=True, lower=False, overwrite_b=True, trans='N', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_32_{check_finite=True, lower=False, overwrite_b=True, trans='T', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_32_{check_finite=True, lower=False, overwrite_b=True, trans='T', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_32_{check_finite=True, lower=False, overwrite_b=True, trans='T', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_33_{check_finite=True, lower=False, overwrite_b=True, trans='T', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_33_{check_finite=True, lower=False, overwrite_b=True, trans='T', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_33_{check_finite=True, lower=False, overwrite_b=True, trans='T', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_34_{check_finite=True, lower=False, overwrite_b=True, trans='C', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_34_{check_finite=True, lower=False, overwrite_b=True, trans='C', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_34_{check_finite=True, lower=False, overwrite_b=True, trans='C', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_35_{check_finite=True, lower=False, overwrite_b=True, trans='C', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_35_{check_finite=True, lower=False, overwrite_b=True, trans='C', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_35_{check_finite=True, lower=False, overwrite_b=True, trans='C', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_36_{check_finite=True, lower=False, overwrite_b=False, trans=0, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_36_{check_finite=True, lower=False, overwrite_b=False, trans=0, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_36_{check_finite=True, lower=False, overwrite_b=False, trans=0, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_37_{check_finite=True, lower=False, overwrite_b=False, trans=0, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_37_{check_finite=True, lower=False, overwrite_b=False, trans=0, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_37_{check_finite=True, lower=False, overwrite_b=False, trans=0, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_38_{check_finite=True, lower=False, overwrite_b=False, trans=1, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_38_{check_finite=True, lower=False, overwrite_b=False, trans=1, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_38_{check_finite=True, lower=False, overwrite_b=False, trans=1, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_39_{check_finite=True, lower=False, overwrite_b=False, trans=1, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_39_{check_finite=True, lower=False, overwrite_b=False, trans=1, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_39_{check_finite=True, lower=False, overwrite_b=False, trans=1, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_40_{check_finite=True, lower=False, overwrite_b=False, trans=2, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_40_{check_finite=True, lower=False, overwrite_b=False, trans=2, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_40_{check_finite=True, lower=False, overwrite_b=False, trans=2, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_41_{check_finite=True, lower=False, overwrite_b=False, trans=2, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_41_{check_finite=True, lower=False, overwrite_b=False, trans=2, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_41_{check_finite=True, lower=False, overwrite_b=False, trans=2, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_42_{check_finite=True, lower=False, overwrite_b=False, trans='N', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_42_{check_finite=True, lower=False, overwrite_b=False, trans='N', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_42_{check_finite=True, lower=False, overwrite_b=False, trans='N', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_43_{check_finite=True, lower=False, overwrite_b=False, trans='N', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_43_{check_finite=True, lower=False, overwrite_b=False, trans='N', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_43_{check_finite=True, lower=False, overwrite_b=False, trans='N', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_44_{check_finite=True, lower=False, overwrite_b=False, trans='T', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_44_{check_finite=True, lower=False, overwrite_b=False, trans='T', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_44_{check_finite=True, lower=False, overwrite_b=False, trans='T', unit_diagonal=True}::test_solve | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_45_{check_finite=True, lower=False, overwrite_b=False, trans='T', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_45_{check_finite=True, lower=False, overwrite_b=False, trans='T', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_45_{check_finite=True, lower=False, overwrite_b=False, trans='T', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_46_{check_finite=True, lower=False, overwrite_b=False, trans='C', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_46_{check_finite=True, lower=False, overwrite_b=False, trans='C', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_46_{check_finite=True, lower=False, overwrite_b=False, trans='C', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_47_{check_finite=True, lower=False, overwrite_b=False, trans='C', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_47_{check_finite=True, lower=False, overwrite_b=False, trans='C', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_47_{check_finite=True, lower=False, overwrite_b=False, trans='C', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_48_{check_finite=False, lower=True, overwrite_b=True, trans=0, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_48_{check_finite=False, lower=True, overwrite_b=True, trans=0, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_48_{check_finite=False, lower=True, overwrite_b=True, trans=0, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_49_{check_finite=False, lower=True, overwrite_b=True, trans=0, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_49_{check_finite=False, lower=True, overwrite_b=True, trans=0, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_49_{check_finite=False, lower=True, overwrite_b=True, trans=0, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_50_{check_finite=False, lower=True, overwrite_b=True, trans=1, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_50_{check_finite=False, lower=True, overwrite_b=True, trans=1, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_50_{check_finite=False, lower=True, overwrite_b=True, trans=1, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_51_{check_finite=False, lower=True, overwrite_b=True, trans=1, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_51_{check_finite=False, lower=True, overwrite_b=True, trans=1, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_51_{check_finite=False, lower=True, overwrite_b=True, trans=1, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_52_{check_finite=False, lower=True, overwrite_b=True, trans=2, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_52_{check_finite=False, lower=True, overwrite_b=True, trans=2, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_52_{check_finite=False, lower=True, overwrite_b=True, trans=2, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_53_{check_finite=False, lower=True, overwrite_b=True, trans=2, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_53_{check_finite=False, lower=True, overwrite_b=True, trans=2, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_53_{check_finite=False, lower=True, overwrite_b=True, trans=2, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_54_{check_finite=False, lower=True, overwrite_b=True, trans='N', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_54_{check_finite=False, lower=True, overwrite_b=True, trans='N', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_54_{check_finite=False, lower=True, overwrite_b=True, trans='N', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_55_{check_finite=False, lower=True, overwrite_b=True, trans='N', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_55_{check_finite=False, lower=True, overwrite_b=True, trans='N', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_55_{check_finite=False, lower=True, overwrite_b=True, trans='N', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_56_{check_finite=False, lower=True, overwrite_b=True, trans='T', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_56_{check_finite=False, lower=True, overwrite_b=True, trans='T', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_56_{check_finite=False, lower=True, overwrite_b=True, trans='T', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_57_{check_finite=False, lower=True, overwrite_b=True, trans='T', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_57_{check_finite=False, lower=True, overwrite_b=True, trans='T', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_57_{check_finite=False, lower=True, overwrite_b=True, trans='T', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_58_{check_finite=False, lower=True, overwrite_b=True, trans='C', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_58_{check_finite=False, lower=True, overwrite_b=True, trans='C', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_58_{check_finite=False, lower=True, overwrite_b=True, trans='C', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_59_{check_finite=False, lower=True, overwrite_b=True, trans='C', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_59_{check_finite=False, lower=True, overwrite_b=True, trans='C', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_59_{check_finite=False, lower=True, overwrite_b=True, trans='C', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_60_{check_finite=False, lower=True, overwrite_b=False, trans=0, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_60_{check_finite=False, lower=True, overwrite_b=False, trans=0, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_60_{check_finite=False, lower=True, overwrite_b=False, trans=0, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_61_{check_finite=False, lower=True, overwrite_b=False, trans=0, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_61_{check_finite=False, lower=True, overwrite_b=False, trans=0, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_61_{check_finite=False, lower=True, overwrite_b=False, trans=0, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_62_{check_finite=False, lower=True, overwrite_b=False, trans=1, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_62_{check_finite=False, lower=True, overwrite_b=False, trans=1, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_62_{check_finite=False, lower=True, overwrite_b=False, trans=1, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_63_{check_finite=False, lower=True, overwrite_b=False, trans=1, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_63_{check_finite=False, lower=True, overwrite_b=False, trans=1, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_63_{check_finite=False, lower=True, overwrite_b=False, trans=1, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_64_{check_finite=False, lower=True, overwrite_b=False, trans=2, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_64_{check_finite=False, lower=True, overwrite_b=False, trans=2, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_64_{check_finite=False, lower=True, overwrite_b=False, trans=2, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_65_{check_finite=False, lower=True, overwrite_b=False, trans=2, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_65_{check_finite=False, lower=True, overwrite_b=False, trans=2, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_65_{check_finite=False, lower=True, overwrite_b=False, trans=2, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_66_{check_finite=False, lower=True, overwrite_b=False, trans='N', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_66_{check_finite=False, lower=True, overwrite_b=False, trans='N', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_66_{check_finite=False, lower=True, overwrite_b=False, trans='N', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_67_{check_finite=False, lower=True, overwrite_b=False, trans='N', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_67_{check_finite=False, lower=True, overwrite_b=False, trans='N', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_67_{check_finite=False, lower=True, overwrite_b=False, trans='N', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_68_{check_finite=False, lower=True, overwrite_b=False, trans='T', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_68_{check_finite=False, lower=True, overwrite_b=False, trans='T', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_68_{check_finite=False, lower=True, overwrite_b=False, trans='T', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_69_{check_finite=False, lower=True, overwrite_b=False, trans='T', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_69_{check_finite=False, lower=True, overwrite_b=False, trans='T', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_69_{check_finite=False, lower=True, overwrite_b=False, trans='T', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_70_{check_finite=False, lower=True, overwrite_b=False, trans='C', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_70_{check_finite=False, lower=True, overwrite_b=False, trans='C', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_70_{check_finite=False, lower=True, overwrite_b=False, trans='C', unit_diagonal=True}::test_solve | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_71_{check_finite=False, lower=True, overwrite_b=False, trans='C', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_71_{check_finite=False, lower=True, overwrite_b=False, trans='C', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_71_{check_finite=False, lower=True, overwrite_b=False, trans='C', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_72_{check_finite=False, lower=False, overwrite_b=True, trans=0, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_72_{check_finite=False, lower=False, overwrite_b=True, trans=0, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_72_{check_finite=False, lower=False, overwrite_b=True, trans=0, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_73_{check_finite=False, lower=False, overwrite_b=True, trans=0, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_73_{check_finite=False, lower=False, overwrite_b=True, trans=0, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_73_{check_finite=False, lower=False, overwrite_b=True, trans=0, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_74_{check_finite=False, lower=False, overwrite_b=True, trans=1, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_74_{check_finite=False, lower=False, overwrite_b=True, trans=1, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_74_{check_finite=False, lower=False, overwrite_b=True, trans=1, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_75_{check_finite=False, lower=False, overwrite_b=True, trans=1, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_75_{check_finite=False, lower=False, overwrite_b=True, trans=1, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_75_{check_finite=False, lower=False, overwrite_b=True, trans=1, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_76_{check_finite=False, lower=False, overwrite_b=True, trans=2, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_76_{check_finite=False, lower=False, overwrite_b=True, trans=2, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_76_{check_finite=False, lower=False, overwrite_b=True, trans=2, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_77_{check_finite=False, lower=False, overwrite_b=True, trans=2, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_77_{check_finite=False, lower=False, overwrite_b=True, trans=2, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_77_{check_finite=False, lower=False, overwrite_b=True, trans=2, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_78_{check_finite=False, lower=False, overwrite_b=True, trans='N', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_78_{check_finite=False, lower=False, overwrite_b=True, trans='N', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_78_{check_finite=False, lower=False, overwrite_b=True, trans='N', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_79_{check_finite=False, lower=False, overwrite_b=True, trans='N', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_79_{check_finite=False, lower=False, overwrite_b=True, trans='N', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_79_{check_finite=False, lower=False, overwrite_b=True, trans='N', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_80_{check_finite=False, lower=False, overwrite_b=True, trans='T', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_80_{check_finite=False, lower=False, overwrite_b=True, trans='T', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_80_{check_finite=False, lower=False, overwrite_b=True, trans='T', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_81_{check_finite=False, lower=False, overwrite_b=True, trans='T', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_81_{check_finite=False, lower=False, overwrite_b=True, trans='T', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_81_{check_finite=False, lower=False, overwrite_b=True, trans='T', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_82_{check_finite=False, lower=False, overwrite_b=True, trans='C', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_82_{check_finite=False, lower=False, overwrite_b=True, trans='C', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_82_{check_finite=False, lower=False, overwrite_b=True, trans='C', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_83_{check_finite=False, lower=False, overwrite_b=True, trans='C', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_83_{check_finite=False, lower=False, overwrite_b=True, trans='C', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_83_{check_finite=False, lower=False, overwrite_b=True, trans='C', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_84_{check_finite=False, lower=False, overwrite_b=False, trans=0, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_84_{check_finite=False, lower=False, overwrite_b=False, trans=0, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_84_{check_finite=False, lower=False, overwrite_b=False, trans=0, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_85_{check_finite=False, lower=False, overwrite_b=False, trans=0, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_85_{check_finite=False, lower=False, overwrite_b=False, trans=0, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_85_{check_finite=False, lower=False, overwrite_b=False, trans=0, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_86_{check_finite=False, lower=False, overwrite_b=False, trans=1, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_86_{check_finite=False, lower=False, overwrite_b=False, trans=1, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_86_{check_finite=False, lower=False, overwrite_b=False, trans=1, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_87_{check_finite=False, lower=False, overwrite_b=False, trans=1, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_87_{check_finite=False, lower=False, overwrite_b=False, trans=1, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_87_{check_finite=False, lower=False, overwrite_b=False, trans=1, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_88_{check_finite=False, lower=False, overwrite_b=False, trans=2, unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_88_{check_finite=False, lower=False, overwrite_b=False, trans=2, unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_88_{check_finite=False, lower=False, overwrite_b=False, trans=2, unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_89_{check_finite=False, lower=False, overwrite_b=False, trans=2, unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_89_{check_finite=False, lower=False, overwrite_b=False, trans=2, unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_89_{check_finite=False, lower=False, overwrite_b=False, trans=2, unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_90_{check_finite=False, lower=False, overwrite_b=False, trans='N', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_90_{check_finite=False, lower=False, overwrite_b=False, trans='N', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_90_{check_finite=False, lower=False, overwrite_b=False, trans='N', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_91_{check_finite=False, lower=False, overwrite_b=False, trans='N', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_91_{check_finite=False, lower=False, overwrite_b=False, trans='N', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_91_{check_finite=False, lower=False, overwrite_b=False, trans='N', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_92_{check_finite=False, lower=False, overwrite_b=False, trans='T', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_92_{check_finite=False, lower=False, overwrite_b=False, trans='T', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_92_{check_finite=False, lower=False, overwrite_b=False, trans='T', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_93_{check_finite=False, lower=False, overwrite_b=False, trans='T', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_93_{check_finite=False, lower=False, overwrite_b=False, trans='T', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_93_{check_finite=False, lower=False, overwrite_b=False, trans='T', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_94_{check_finite=False, lower=False, overwrite_b=False, trans='C', unit_diagonal=True}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_94_{check_finite=False, lower=False, overwrite_b=False, trans='C', unit_diagonal=True}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_94_{check_finite=False, lower=False, overwrite_b=False, trans='C', unit_diagonal=True}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_95_{check_finite=False, lower=False, overwrite_b=False, trans='C', unit_diagonal=False}::test_infinite | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_95_{check_finite=False, lower=False, overwrite_b=False, trans='C', unit_diagonal=False}::test_invalid_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py::TestSolveTriangular_param_95_{check_finite=False, lower=False, overwrite_b=False, trans='C', unit_diagonal=False}::test_solve | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_0_{args=((1,),), function='circulant'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_1_{args=((1,),), function='toeplitz'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_2_{args=((1,),), function='hankel'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_3_{args=((1,),), function='companion'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_4_{args=((2,),), function='circulant'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_5_{args=((2,),), function='toeplitz'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_6_{args=((2,),), function='hankel'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_7_{args=((2,),), function='companion'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_8_{args=((4,),), function='circulant'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_9_{args=((4,),), function='toeplitz'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_10_{args=((4,),), function='hankel'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_11_{args=((4,),), function='companion'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_12_{args=((10,),), function='circulant'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_13_{args=((10,),), function='toeplitz'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_14_{args=((10,),), function='hankel'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_15_{args=((10,),), function='companion'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_16_{args=((25,),), function='circulant'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_17_{args=((25,),), function='toeplitz'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_18_{args=((25,),), function='hankel'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_19_{args=((25,),), function='companion'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_20_{args=((1,), (1,)), function='toeplitz'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_21_{args=((1,), (1,)), function='hankel'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_22_{args=((1,), (1,)), function='leslie'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_23_{args=((2,), (1,)), function='toeplitz'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_24_{args=((2,), (1,)), function='hankel'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_25_{args=((2,), (1,)), function='leslie'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_26_{args=((4,), (5,)), function='toeplitz'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_27_{args=((4,), (5,)), function='hankel'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_28_{args=((4,), (5,)), function='leslie'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_29_{args=((10,), (9,)), function='toeplitz'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_30_{args=((10,), (9,)), function='hankel'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_31_{args=((10,), (9,)), function='leslie'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_32_{args=((25,), (24,)), function='toeplitz'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_33_{args=((25,), (24,)), function='hankel'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_34_{args=((25,), (24,)), function='leslie'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_35_{args=(1,), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_36_{args=(1,), function='hadamard'}::test_special_matrix | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_37_{args=(1,), function='helmert'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_38_{args=(1,), function='hilbert'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_39_{args=(1,), function='dft'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_40_{args=(2,), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_41_{args=(2,), function='hadamard'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_42_{args=(2,), function='helmert'}::test_special_matrix | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_43_{args=(2,), function='hilbert'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_44_{args=(2,), function='dft'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_45_{args=(4,), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_46_{args=(4,), function='hadamard'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_47_{args=(4,), function='helmert'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_48_{args=(4,), function='hilbert'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_49_{args=(4,), function='dft'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_50_{args=(10,), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_51_{args=(10,), function='hadamard'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_52_{args=(10,), function='helmert'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_53_{args=(10,), function='hilbert'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_54_{args=(10,), function='dft'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_55_{args=(25,), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_56_{args=(25,), function='hadamard'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_57_{args=(25,), function='helmert'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_58_{args=(25,), function='hilbert'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_59_{args=(25,), function='dft'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_60_{args=(4, 'int32'), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_61_{args=(4, 'int32'), function='hadamard'}::test_special_matrix | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_62_{args=(8, 'float64'), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_63_{args=(8, 'float64'), function='hadamard'}::test_special_matrix | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_64_{args=(6, 'float64'), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_65_{args=(6, 'float64'), function='hadamard'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_66_{args=(4, True), function='helmert'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_67_{args=(5, False), function='helmert'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_68_{args=(4, 'sqrtn'), function='dft'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_69_{args=(5, 'n'), function='dft'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_70_{args=(4, 5), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_71_{args=(5, 5), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_72_{args=(5, 4), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_73_{args=(4, 5, -1), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_74_{args=(4, 5, 1), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_75_{args=(4, 5, 0), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_76_{args=(5, 4, -1), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_77_{args=(5, 5, 1), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_78_{args=(4, 5, -1, <class 'int'>), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_79_{args=(5, 4, 0, <class 'float'>), function='tri'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_80_{args=((5, 5),), function='tril'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_81_{args=((5, 5),), function='triu'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_82_{args=((4, 5),), function='tril'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_83_{args=((4, 5),), function='triu'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_84_{args=((5, 4),), function='tril'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_85_{args=((5, 4),), function='triu'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_86_{args=((4, 4),), function='tril'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_87_{args=((4, 4),), function='triu'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_88_{args=((5, 5), -1), function='tril'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_89_{args=((5, 5), -1), function='triu'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_90_{args=((4, 5), 1), function='tril'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_91_{args=((4, 5), 1), function='triu'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_92_{args=((5, 4), -1), function='tril'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_93_{args=((5, 4), -1), function='triu'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_94_{args=((4, 4), 1), function='tril'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_95_{args=((4, 4), 1), function='triu'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_96_{args=((5, 5), (4, 5)), function='kron'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_97_{args=((5, 4), (4, 4)), function='kron'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_98_{args=((1, 2), (4, 5)), function='kron'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_99_{args=(), function='block_diag'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_100_{args=((5,),), function='block_diag'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_101_{args=((4, 5),), function='block_diag'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_102_{args=((5,), (4, 4)), function='block_diag'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_103_{args=((1, 2), (4, 5)), function='block_diag'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_param_104_{args=((1,), (4, 5), (3, 6), (7, 2), (8, 9)), function='block_diag'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_3_0_param_0_{args=((0,),), function='fiedler'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_3_0_param_1_{args=((0,),), function='fiedler_companion'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_3_0_param_2_{args=((1,),), function='fiedler'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_3_0_param_3_{args=((1,),), function='fiedler_companion'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_3_0_param_4_{args=((2,),), function='fiedler'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_3_0_param_5_{args=((2,),), function='fiedler_companion'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_3_0_param_6_{args=((4,),), function='fiedler'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_3_0_param_7_{args=((4,),), function='fiedler_companion'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_3_0_param_8_{args=((10,),), function='fiedler'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_3_0_param_9_{args=((10,),), function='fiedler_companion'}::test_special_matrix | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_3_0_param_10_{args=((25,),), function='fiedler'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_3_0_param_11_{args=((25,),), function='fiedler_companion'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_5_0_param_0_{args=((1,), 5), function='convolution_matrix'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_5_0_param_1_{args=((2,), 3), function='convolution_matrix'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_5_0_param_2_{args=((4,), 10), function='convolution_matrix'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_5_0_param_3_{args=((10,), 15), function='convolution_matrix'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_5_0_param_4_{args=((25,), 25), function='convolution_matrix'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_5_0_param_5_{args=((4,), 6, 'full'), function='convolution_matrix'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_5_0_param_6_{args=((10,), 8, 'same'), function='convolution_matrix'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py::TestSpecialMatrices_1_5_0_param_7_{args=((25,), 25, 'valid'), function='convolution_matrix'}::test_special_matrix | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_0_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_6_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_7_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_8_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_9_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_10_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_11_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_15_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_16_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_17_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_18_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_19_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_20_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_24_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_25_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_26_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_27_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_28_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_29_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_33_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_34_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_35_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_36_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_37_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_38_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_42_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_43_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_44_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_45_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_46_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_47_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_51_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_52_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_53_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_54_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_55_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_56_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_57_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_58_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_59_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_63_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_64_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_65_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_66_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_67_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_68_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_72_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_73_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_74_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_75_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_76_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_77_{dtype=float64, filter='convolve', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_81_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_82_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_83_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_84_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_85_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_86_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_90_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_91_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_92_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_93_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_94_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_95_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_99_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_100_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_101_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_102_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_103_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_104_{dtype=float64, filter='convolve', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_108_{cval=-1.0, dtype=uint8, filter='convolve', ksize=3, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_109_{cval=-1.0, dtype=uint8, filter='convolve', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_110_{cval=-1.0, dtype=uint8, filter='convolve', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_111_{cval=-1.0, dtype=uint8, filter='convolve', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_112_{cval=-1.0, dtype=uint8, filter='convolve', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_113_{cval=-1.0, dtype=uint8, filter='convolve', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_114_{cval=-1.0, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_115_{cval=-1.0, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_116_{cval=-1.0, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_117_{cval=-1.0, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_118_{cval=-1.0, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_119_{cval=-1.0, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_120_{cval=0.0, dtype=uint8, filter='convolve', ksize=3, mode='constant', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_121_{cval=0.0, dtype=uint8, filter='convolve', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_122_{cval=0.0, dtype=uint8, filter='convolve', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_123_{cval=0.0, dtype=uint8, filter='convolve', ksize=4, mode='constant', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_124_{cval=0.0, dtype=uint8, filter='convolve', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_125_{cval=0.0, dtype=uint8, filter='convolve', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_126_{cval=0.0, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_127_{cval=0.0, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_128_{cval=0.0, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_129_{cval=0.0, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_130_{cval=0.0, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_131_{cval=0.0, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_132_{cval=1.0, dtype=uint8, filter='convolve', ksize=3, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_133_{cval=1.0, dtype=uint8, filter='convolve', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_134_{cval=1.0, dtype=uint8, filter='convolve', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_135_{cval=1.0, dtype=uint8, filter='convolve', ksize=4, mode='constant', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_136_{cval=1.0, dtype=uint8, filter='convolve', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_137_{cval=1.0, dtype=uint8, filter='convolve', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_138_{cval=1.0, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_139_{cval=1.0, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_140_{cval=1.0, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_141_{cval=1.0, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_142_{cval=1.0, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_143_{cval=1.0, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_144_{cval=nan, dtype=float32, filter='convolve', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_145_{cval=nan, dtype=float32, filter='convolve', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_146_{cval=nan, dtype=float32, filter='convolve', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_147_{cval=nan, dtype=float32, filter='convolve', ksize=4, mode='constant', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_148_{cval=nan, dtype=float32, filter='convolve', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_149_{cval=nan, dtype=float32, filter='convolve', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_150_{cval=nan, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_151_{cval=nan, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_152_{cval=nan, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_153_{cval=nan, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_154_{cval=nan, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_155_{cval=nan, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_156_{cval=inf, dtype=float32, filter='convolve', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_157_{cval=inf, dtype=float32, filter='convolve', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_158_{cval=inf, dtype=float32, filter='convolve', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_159_{cval=inf, dtype=float32, filter='convolve', ksize=4, mode='constant', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_160_{cval=inf, dtype=float32, filter='convolve', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_161_{cval=inf, dtype=float32, filter='convolve', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_162_{cval=inf, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_163_{cval=inf, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_164_{cval=inf, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_165_{cval=inf, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_166_{cval=inf, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_167_{cval=inf, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_168_{cval=-inf, dtype=float32, filter='convolve', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_169_{cval=-inf, dtype=float32, filter='convolve', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_170_{cval=-inf, dtype=float32, filter='convolve', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_171_{cval=-inf, dtype=float32, filter='convolve', ksize=4, mode='constant', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_172_{cval=-inf, dtype=float32, filter='convolve', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_173_{cval=-inf, dtype=float32, filter='convolve', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_174_{cval=-inf, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_175_{cval=-inf, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_176_{cval=-inf, dtype=float64, filter='convolve', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_177_{cval=-inf, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_178_{cval=-inf, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_179_{cval=-inf, dtype=float64, filter='convolve', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_180_{dtype=uint8, filter='convolve', ksize=3, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_181_{dtype=uint8, filter='convolve', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_182_{dtype=uint8, filter='convolve', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_183_{dtype=uint8, filter='convolve', ksize=3, mode='wrap', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_184_{dtype=uint8, filter='convolve', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_185_{dtype=uint8, filter='convolve', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_186_{dtype=uint8, filter='convolve', ksize=4, mode='nearest', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_187_{dtype=uint8, filter='convolve', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_188_{dtype=uint8, filter='convolve', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_189_{dtype=uint8, filter='convolve', ksize=4, mode='wrap', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_190_{dtype=uint8, filter='convolve', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_191_{dtype=uint8, filter='convolve', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_192_{dtype=float64, filter='convolve', ksize=3, mode='nearest', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_193_{dtype=float64, filter='convolve', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_194_{dtype=float64, filter='convolve', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_195_{dtype=float64, filter='convolve', ksize=3, mode='wrap', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_196_{dtype=float64, filter='convolve', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_197_{dtype=float64, filter='convolve', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_198_{dtype=float64, filter='convolve', ksize=4, mode='nearest', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_199_{dtype=float64, filter='convolve', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_200_{dtype=float64, filter='convolve', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_201_{dtype=float64, filter='convolve', ksize=4, mode='wrap', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_202_{dtype=float64, filter='convolve', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_203_{dtype=float64, filter='convolve', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_204_{dtype=uint8, filter='convolve', ksize=3, mode='mirror', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_205_{dtype=uint8, filter='convolve', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_206_{dtype=uint8, filter='convolve', ksize=4, mode='mirror', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_207_{dtype=uint8, filter='convolve', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_208_{dtype=float64, filter='convolve', ksize=3, mode='mirror', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_209_{dtype=float64, filter='convolve', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_210_{dtype=float64, filter='convolve', ksize=4, mode='mirror', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_211_{dtype=float64, filter='convolve', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_212_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_213_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_214_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_218_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_219_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_220_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_221_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_222_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_223_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_227_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_228_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_229_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_230_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_231_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_232_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_236_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_237_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_238_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_239_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_240_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_241_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_245_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_246_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_247_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_248_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_249_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_250_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_254_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_255_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_256_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_257_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_258_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_259_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_263_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_264_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_265_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_266_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_267_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_268_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_269_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_270_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_271_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_275_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_276_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_277_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_278_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_279_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_280_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_284_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_285_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_286_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_287_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_288_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_289_{dtype=float64, filter='correlate', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_293_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_294_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_295_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_296_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_297_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_298_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_302_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_303_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_304_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_305_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_306_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_307_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_311_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_312_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_313_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_314_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_315_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_316_{dtype=float64, filter='correlate', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_320_{cval=-1.0, dtype=uint8, filter='correlate', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_321_{cval=-1.0, dtype=uint8, filter='correlate', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_322_{cval=-1.0, dtype=uint8, filter='correlate', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_323_{cval=-1.0, dtype=uint8, filter='correlate', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_324_{cval=-1.0, dtype=uint8, filter='correlate', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_325_{cval=-1.0, dtype=uint8, filter='correlate', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_326_{cval=-1.0, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_327_{cval=-1.0, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_328_{cval=-1.0, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_329_{cval=-1.0, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_330_{cval=-1.0, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_331_{cval=-1.0, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_332_{cval=0.0, dtype=uint8, filter='correlate', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_333_{cval=0.0, dtype=uint8, filter='correlate', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_334_{cval=0.0, dtype=uint8, filter='correlate', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_335_{cval=0.0, dtype=uint8, filter='correlate', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_336_{cval=0.0, dtype=uint8, filter='correlate', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_337_{cval=0.0, dtype=uint8, filter='correlate', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_338_{cval=0.0, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_339_{cval=0.0, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_340_{cval=0.0, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_341_{cval=0.0, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_342_{cval=0.0, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_343_{cval=0.0, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_344_{cval=1.0, dtype=uint8, filter='correlate', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_345_{cval=1.0, dtype=uint8, filter='correlate', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_346_{cval=1.0, dtype=uint8, filter='correlate', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_347_{cval=1.0, dtype=uint8, filter='correlate', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_348_{cval=1.0, dtype=uint8, filter='correlate', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_349_{cval=1.0, dtype=uint8, filter='correlate', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_350_{cval=1.0, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_351_{cval=1.0, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_352_{cval=1.0, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_353_{cval=1.0, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_354_{cval=1.0, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_355_{cval=1.0, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_356_{cval=nan, dtype=float32, filter='correlate', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_357_{cval=nan, dtype=float32, filter='correlate', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_358_{cval=nan, dtype=float32, filter='correlate', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_359_{cval=nan, dtype=float32, filter='correlate', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_360_{cval=nan, dtype=float32, filter='correlate', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_361_{cval=nan, dtype=float32, filter='correlate', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_362_{cval=nan, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_363_{cval=nan, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_364_{cval=nan, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_365_{cval=nan, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_366_{cval=nan, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_367_{cval=nan, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_368_{cval=inf, dtype=float32, filter='correlate', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_369_{cval=inf, dtype=float32, filter='correlate', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_370_{cval=inf, dtype=float32, filter='correlate', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_371_{cval=inf, dtype=float32, filter='correlate', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_372_{cval=inf, dtype=float32, filter='correlate', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_373_{cval=inf, dtype=float32, filter='correlate', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_374_{cval=inf, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_375_{cval=inf, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_376_{cval=inf, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_377_{cval=inf, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_378_{cval=inf, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_379_{cval=inf, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_380_{cval=-inf, dtype=float32, filter='correlate', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_381_{cval=-inf, dtype=float32, filter='correlate', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_382_{cval=-inf, dtype=float32, filter='correlate', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_383_{cval=-inf, dtype=float32, filter='correlate', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_384_{cval=-inf, dtype=float32, filter='correlate', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_385_{cval=-inf, dtype=float32, filter='correlate', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_386_{cval=-inf, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_387_{cval=-inf, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_388_{cval=-inf, dtype=float64, filter='correlate', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_389_{cval=-inf, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_390_{cval=-inf, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_391_{cval=-inf, dtype=float64, filter='correlate', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_392_{dtype=uint8, filter='correlate', ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_393_{dtype=uint8, filter='correlate', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_394_{dtype=uint8, filter='correlate', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_395_{dtype=uint8, filter='correlate', ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_396_{dtype=uint8, filter='correlate', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_397_{dtype=uint8, filter='correlate', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_398_{dtype=uint8, filter='correlate', ksize=4, mode='nearest', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_399_{dtype=uint8, filter='correlate', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_400_{dtype=uint8, filter='correlate', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_401_{dtype=uint8, filter='correlate', ksize=4, mode='wrap', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_402_{dtype=uint8, filter='correlate', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_403_{dtype=uint8, filter='correlate', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_404_{dtype=float64, filter='correlate', ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_405_{dtype=float64, filter='correlate', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_406_{dtype=float64, filter='correlate', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_407_{dtype=float64, filter='correlate', ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_408_{dtype=float64, filter='correlate', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_409_{dtype=float64, filter='correlate', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_410_{dtype=float64, filter='correlate', ksize=4, mode='nearest', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_411_{dtype=float64, filter='correlate', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_412_{dtype=float64, filter='correlate', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_413_{dtype=float64, filter='correlate', ksize=4, mode='wrap', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_414_{dtype=float64, filter='correlate', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_415_{dtype=float64, filter='correlate', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_416_{dtype=uint8, filter='correlate', ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_417_{dtype=uint8, filter='correlate', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_418_{dtype=uint8, filter='correlate', ksize=4, mode='mirror', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_419_{dtype=uint8, filter='correlate', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_420_{dtype=float64, filter='correlate', ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_421_{dtype=float64, filter='correlate', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_422_{dtype=float64, filter='correlate', ksize=4, mode='mirror', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_423_{dtype=float64, filter='correlate', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_424_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_425_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_426_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_430_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_431_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_432_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_433_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_434_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_435_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_439_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_440_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_441_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_442_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_443_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_444_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_448_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_449_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_450_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_451_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_452_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_453_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_457_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_458_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_459_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_460_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_461_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_462_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_466_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_467_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_468_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_469_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_470_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_471_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_475_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_476_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_477_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_478_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_479_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_480_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_481_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_482_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_483_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_487_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_488_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_489_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_490_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_491_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_492_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_496_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_497_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_498_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_499_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_500_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_501_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_505_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_506_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_507_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_508_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_509_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_510_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_514_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_515_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_516_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_517_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_518_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_519_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_523_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_524_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_525_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_526_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_527_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_528_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_532_{axis=0, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_533_{axis=0, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_534_{axis=0, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_535_{axis=0, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_536_{axis=0, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_537_{axis=0, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_538_{axis=0, cval=-1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_539_{axis=0, cval=-1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_540_{axis=0, cval=-1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_541_{axis=0, cval=-1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_542_{axis=0, cval=-1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_543_{axis=0, cval=-1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_544_{axis=0, cval=0.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_545_{axis=0, cval=0.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_546_{axis=0, cval=0.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_547_{axis=0, cval=0.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_548_{axis=0, cval=0.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_549_{axis=0, cval=0.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_550_{axis=0, cval=0.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_551_{axis=0, cval=0.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_552_{axis=0, cval=0.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_553_{axis=0, cval=0.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_554_{axis=0, cval=0.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_555_{axis=0, cval=0.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_556_{axis=0, cval=1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_557_{axis=0, cval=1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_558_{axis=0, cval=1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_559_{axis=0, cval=1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_560_{axis=0, cval=1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_561_{axis=0, cval=1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_562_{axis=0, cval=1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_563_{axis=0, cval=1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_564_{axis=0, cval=1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_565_{axis=0, cval=1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_566_{axis=0, cval=1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_567_{axis=0, cval=1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_568_{axis=0, cval=nan, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_569_{axis=0, cval=nan, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_570_{axis=0, cval=nan, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_571_{axis=0, cval=nan, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_572_{axis=0, cval=nan, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_573_{axis=0, cval=nan, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_574_{axis=0, cval=nan, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_575_{axis=0, cval=nan, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_576_{axis=0, cval=nan, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_577_{axis=0, cval=nan, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_578_{axis=0, cval=nan, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_579_{axis=0, cval=nan, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_580_{axis=0, cval=inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_581_{axis=0, cval=inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_582_{axis=0, cval=inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_583_{axis=0, cval=inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_584_{axis=0, cval=inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_585_{axis=0, cval=inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_586_{axis=0, cval=inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_587_{axis=0, cval=inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_588_{axis=0, cval=inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_589_{axis=0, cval=inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_590_{axis=0, cval=inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_591_{axis=0, cval=inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_592_{axis=0, cval=-inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_593_{axis=0, cval=-inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_594_{axis=0, cval=-inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_595_{axis=0, cval=-inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_596_{axis=0, cval=-inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_597_{axis=0, cval=-inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_598_{axis=0, cval=-inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_599_{axis=0, cval=-inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_600_{axis=0, cval=-inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_601_{axis=0, cval=-inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_602_{axis=0, cval=-inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_603_{axis=0, cval=-inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_604_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_605_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_606_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_607_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_608_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_609_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_610_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_611_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_612_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_613_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_614_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_615_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_616_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_617_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_618_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_619_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_620_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_621_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_622_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_623_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_624_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_625_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_626_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_627_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_628_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_629_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_630_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_631_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_632_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_633_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_634_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_635_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_636_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_637_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_638_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_642_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_643_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_644_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_645_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_646_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_647_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_651_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_652_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_653_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_654_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_655_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_656_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_660_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_661_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_662_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_663_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_664_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_665_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_669_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_670_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_671_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_672_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_673_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_674_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_678_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_679_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_680_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_681_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_682_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_683_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_687_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_688_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_689_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_690_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_691_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_692_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_693_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_694_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_695_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_699_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_700_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_701_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_702_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_703_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_704_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_708_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_709_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_710_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_711_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_712_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_713_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_717_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_718_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_719_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_720_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_721_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_722_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_726_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_727_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_728_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_729_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_730_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_731_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_735_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_736_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_737_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_738_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_739_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_740_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_744_{axis=0, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_745_{axis=0, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_746_{axis=0, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_747_{axis=0, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_748_{axis=0, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_749_{axis=0, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_750_{axis=0, cval=-1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_751_{axis=0, cval=-1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_752_{axis=0, cval=-1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_753_{axis=0, cval=-1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_754_{axis=0, cval=-1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_755_{axis=0, cval=-1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_756_{axis=0, cval=0.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_757_{axis=0, cval=0.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_758_{axis=0, cval=0.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_759_{axis=0, cval=0.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_760_{axis=0, cval=0.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_761_{axis=0, cval=0.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_762_{axis=0, cval=0.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_763_{axis=0, cval=0.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_764_{axis=0, cval=0.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_765_{axis=0, cval=0.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_766_{axis=0, cval=0.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_767_{axis=0, cval=0.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_768_{axis=0, cval=1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_769_{axis=0, cval=1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_770_{axis=0, cval=1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_771_{axis=0, cval=1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_772_{axis=0, cval=1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_773_{axis=0, cval=1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_774_{axis=0, cval=1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_775_{axis=0, cval=1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_776_{axis=0, cval=1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_777_{axis=0, cval=1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_778_{axis=0, cval=1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_779_{axis=0, cval=1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_780_{axis=0, cval=nan, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_781_{axis=0, cval=nan, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_782_{axis=0, cval=nan, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_783_{axis=0, cval=nan, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_784_{axis=0, cval=nan, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_785_{axis=0, cval=nan, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_786_{axis=0, cval=nan, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_787_{axis=0, cval=nan, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_788_{axis=0, cval=nan, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_789_{axis=0, cval=nan, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_790_{axis=0, cval=nan, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_791_{axis=0, cval=nan, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_792_{axis=0, cval=inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_793_{axis=0, cval=inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_794_{axis=0, cval=inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_795_{axis=0, cval=inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_796_{axis=0, cval=inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_797_{axis=0, cval=inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_798_{axis=0, cval=inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_799_{axis=0, cval=inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_800_{axis=0, cval=inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_801_{axis=0, cval=inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_802_{axis=0, cval=inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_803_{axis=0, cval=inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_804_{axis=0, cval=-inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_805_{axis=0, cval=-inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_806_{axis=0, cval=-inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_807_{axis=0, cval=-inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_808_{axis=0, cval=-inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_809_{axis=0, cval=-inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_810_{axis=0, cval=-inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_811_{axis=0, cval=-inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_812_{axis=0, cval=-inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_813_{axis=0, cval=-inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_814_{axis=0, cval=-inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_815_{axis=0, cval=-inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_816_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_817_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_818_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_819_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_820_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_821_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_822_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_823_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_824_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_825_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_826_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_827_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_828_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_829_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_830_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_831_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_832_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_833_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_834_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_835_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_836_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_837_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_838_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_839_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_840_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_841_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_842_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_843_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_844_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_845_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_846_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_847_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_848_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_849_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_850_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_854_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_855_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_856_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_857_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_858_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_859_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_863_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_864_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_865_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_866_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_867_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_868_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_872_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_873_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_874_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_875_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_876_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_877_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_881_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_882_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_883_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_884_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_885_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_886_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_890_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_891_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_892_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_893_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_894_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_895_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_899_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_900_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_901_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_902_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_903_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_904_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_905_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_906_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_907_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_911_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_912_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_913_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_914_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_915_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_916_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_920_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_921_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_922_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_923_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_924_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_925_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_929_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_930_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_931_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_932_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_933_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_934_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_938_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_939_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_940_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_941_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_942_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_943_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_947_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_948_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_949_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_950_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_951_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_952_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_956_{axis=0, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_957_{axis=0, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_958_{axis=0, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_959_{axis=0, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_960_{axis=0, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_961_{axis=0, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_962_{axis=0, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_963_{axis=0, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_964_{axis=0, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_965_{axis=0, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_966_{axis=0, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_967_{axis=0, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_968_{axis=0, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_969_{axis=0, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_970_{axis=0, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_971_{axis=0, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_972_{axis=0, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_973_{axis=0, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_974_{axis=0, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_975_{axis=0, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_976_{axis=0, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_977_{axis=0, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_978_{axis=0, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_979_{axis=0, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_980_{axis=0, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_981_{axis=0, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_982_{axis=0, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_983_{axis=0, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_984_{axis=0, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_985_{axis=0, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_986_{axis=0, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_987_{axis=0, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_988_{axis=0, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_989_{axis=0, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_990_{axis=0, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_991_{axis=0, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_992_{axis=0, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_993_{axis=0, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_994_{axis=0, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_995_{axis=0, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_996_{axis=0, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_997_{axis=0, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_998_{axis=0, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_999_{axis=0, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1000_{axis=0, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1001_{axis=0, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1002_{axis=0, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1003_{axis=0, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1004_{axis=0, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1005_{axis=0, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1006_{axis=0, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1007_{axis=0, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1008_{axis=0, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1009_{axis=0, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1010_{axis=0, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1011_{axis=0, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1012_{axis=0, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1013_{axis=0, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1014_{axis=0, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1015_{axis=0, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1016_{axis=0, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1017_{axis=0, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1018_{axis=0, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1019_{axis=0, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1020_{axis=0, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1021_{axis=0, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1022_{axis=0, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1023_{axis=0, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1024_{axis=0, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1025_{axis=0, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1026_{axis=0, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1027_{axis=0, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1028_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1029_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1030_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1031_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1032_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1033_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1034_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1035_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1036_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1037_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1038_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1039_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1040_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1041_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1042_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1043_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1044_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1045_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1046_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1047_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1048_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1049_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1050_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1051_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1052_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1053_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1054_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1055_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1056_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(4, 5)}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1057_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1058_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1059_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1060_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1061_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1062_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1066_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1067_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1068_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1069_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1070_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1071_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1075_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1076_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1077_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1078_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1079_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1080_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1084_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1085_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1086_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1087_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1088_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1089_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1093_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1094_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1095_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1096_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1097_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1098_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1102_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1103_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1104_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1105_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1106_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1107_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1111_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1112_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1113_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1114_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1115_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1116_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1117_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1118_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1119_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1123_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1124_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1125_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1126_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1127_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1128_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1132_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1133_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1134_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1135_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1136_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1137_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1141_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1142_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1143_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1144_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1145_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1146_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1150_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1151_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1152_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1153_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1154_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1155_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1159_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1160_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1161_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1162_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1163_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1164_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1168_{axis=1, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1169_{axis=1, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1170_{axis=1, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1171_{axis=1, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1172_{axis=1, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1173_{axis=1, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1174_{axis=1, cval=-1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1175_{axis=1, cval=-1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1176_{axis=1, cval=-1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1177_{axis=1, cval=-1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1178_{axis=1, cval=-1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1179_{axis=1, cval=-1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1180_{axis=1, cval=0.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1181_{axis=1, cval=0.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1182_{axis=1, cval=0.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1183_{axis=1, cval=0.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1184_{axis=1, cval=0.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1185_{axis=1, cval=0.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1186_{axis=1, cval=0.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1187_{axis=1, cval=0.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1188_{axis=1, cval=0.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1189_{axis=1, cval=0.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1190_{axis=1, cval=0.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1191_{axis=1, cval=0.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1192_{axis=1, cval=1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1193_{axis=1, cval=1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1194_{axis=1, cval=1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1195_{axis=1, cval=1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1196_{axis=1, cval=1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1197_{axis=1, cval=1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1198_{axis=1, cval=1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1199_{axis=1, cval=1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1200_{axis=1, cval=1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1201_{axis=1, cval=1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1202_{axis=1, cval=1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1203_{axis=1, cval=1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1204_{axis=1, cval=nan, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1205_{axis=1, cval=nan, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1206_{axis=1, cval=nan, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1207_{axis=1, cval=nan, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1208_{axis=1, cval=nan, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1209_{axis=1, cval=nan, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1210_{axis=1, cval=nan, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1211_{axis=1, cval=nan, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1212_{axis=1, cval=nan, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1213_{axis=1, cval=nan, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1214_{axis=1, cval=nan, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1215_{axis=1, cval=nan, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1216_{axis=1, cval=inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1217_{axis=1, cval=inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1218_{axis=1, cval=inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1219_{axis=1, cval=inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1220_{axis=1, cval=inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1221_{axis=1, cval=inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1222_{axis=1, cval=inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1223_{axis=1, cval=inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1224_{axis=1, cval=inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1225_{axis=1, cval=inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1226_{axis=1, cval=inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1227_{axis=1, cval=inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1228_{axis=1, cval=-inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1229_{axis=1, cval=-inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1230_{axis=1, cval=-inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1231_{axis=1, cval=-inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1232_{axis=1, cval=-inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1233_{axis=1, cval=-inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1234_{axis=1, cval=-inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1235_{axis=1, cval=-inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1236_{axis=1, cval=-inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1237_{axis=1, cval=-inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1238_{axis=1, cval=-inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1239_{axis=1, cval=-inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1240_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1241_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1242_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1243_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1244_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1245_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1246_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1247_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1248_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1249_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1250_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1251_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1252_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1253_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1254_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1255_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1256_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1257_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1258_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1259_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1260_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1261_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1262_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1263_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1264_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1265_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1266_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1267_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1268_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1269_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1270_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1271_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1272_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1273_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1274_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1278_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1279_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1280_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1281_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1282_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1283_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1287_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1288_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1289_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1290_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1291_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1292_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1296_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1297_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1298_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1299_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1300_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1301_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1305_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1306_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1307_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1308_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1309_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1310_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1314_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1315_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1316_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1317_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1318_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1319_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1323_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1324_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1325_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1326_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1327_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1328_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1329_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1330_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1331_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1335_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1336_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1337_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1338_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1339_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1340_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1344_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1345_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1346_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1347_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1348_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1349_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1353_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1354_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1355_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1356_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1357_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1358_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1362_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1363_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1364_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1365_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1366_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1367_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1371_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1372_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1373_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1374_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1375_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1376_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1380_{axis=1, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1381_{axis=1, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1382_{axis=1, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1383_{axis=1, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1384_{axis=1, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1385_{axis=1, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1386_{axis=1, cval=-1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1387_{axis=1, cval=-1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1388_{axis=1, cval=-1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1389_{axis=1, cval=-1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1390_{axis=1, cval=-1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1391_{axis=1, cval=-1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1392_{axis=1, cval=0.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1393_{axis=1, cval=0.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1394_{axis=1, cval=0.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1395_{axis=1, cval=0.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1396_{axis=1, cval=0.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1397_{axis=1, cval=0.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1398_{axis=1, cval=0.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1399_{axis=1, cval=0.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1400_{axis=1, cval=0.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1401_{axis=1, cval=0.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1402_{axis=1, cval=0.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1403_{axis=1, cval=0.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1404_{axis=1, cval=1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1405_{axis=1, cval=1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1406_{axis=1, cval=1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1407_{axis=1, cval=1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1408_{axis=1, cval=1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1409_{axis=1, cval=1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1410_{axis=1, cval=1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1411_{axis=1, cval=1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1412_{axis=1, cval=1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1413_{axis=1, cval=1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1414_{axis=1, cval=1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1415_{axis=1, cval=1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1416_{axis=1, cval=nan, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1417_{axis=1, cval=nan, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1418_{axis=1, cval=nan, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1419_{axis=1, cval=nan, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1420_{axis=1, cval=nan, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1421_{axis=1, cval=nan, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1422_{axis=1, cval=nan, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1423_{axis=1, cval=nan, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1424_{axis=1, cval=nan, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1425_{axis=1, cval=nan, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1426_{axis=1, cval=nan, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1427_{axis=1, cval=nan, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1428_{axis=1, cval=inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1429_{axis=1, cval=inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1430_{axis=1, cval=inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1431_{axis=1, cval=inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1432_{axis=1, cval=inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1433_{axis=1, cval=inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1434_{axis=1, cval=inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1435_{axis=1, cval=inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1436_{axis=1, cval=inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1437_{axis=1, cval=inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1438_{axis=1, cval=inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1439_{axis=1, cval=inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1440_{axis=1, cval=-inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1441_{axis=1, cval=-inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1442_{axis=1, cval=-inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1443_{axis=1, cval=-inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1444_{axis=1, cval=-inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1445_{axis=1, cval=-inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1446_{axis=1, cval=-inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1447_{axis=1, cval=-inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1448_{axis=1, cval=-inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1449_{axis=1, cval=-inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1450_{axis=1, cval=-inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1451_{axis=1, cval=-inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1452_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1453_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1454_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1455_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1456_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1457_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1458_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1459_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1460_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1461_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1462_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1463_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1464_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1465_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1466_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1467_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1468_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1469_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1470_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1471_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1472_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1473_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1474_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1475_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1476_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1477_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1478_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1479_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1480_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1481_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1482_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1483_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1484_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1485_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1486_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1490_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1491_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1492_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1493_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1494_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1495_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1499_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1500_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1501_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1502_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1503_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1504_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1508_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1509_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1510_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1511_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1512_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1513_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1517_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1518_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1519_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1520_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1521_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1522_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1526_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1527_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1528_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1529_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1530_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1531_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1535_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1536_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1537_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1538_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1539_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1540_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1541_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1542_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1543_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1547_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1548_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1549_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1550_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1551_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1552_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1556_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1557_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1558_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1559_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1560_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1561_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1565_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1566_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1567_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1568_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1569_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1570_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1574_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1575_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1576_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1577_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1578_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1579_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1583_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1584_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1585_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1586_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1587_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1588_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1592_{axis=1, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1593_{axis=1, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1594_{axis=1, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1595_{axis=1, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1596_{axis=1, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1597_{axis=1, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1598_{axis=1, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1599_{axis=1, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1600_{axis=1, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1601_{axis=1, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1602_{axis=1, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1603_{axis=1, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1604_{axis=1, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1605_{axis=1, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1606_{axis=1, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1607_{axis=1, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1608_{axis=1, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1609_{axis=1, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1610_{axis=1, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1611_{axis=1, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1612_{axis=1, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1613_{axis=1, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1614_{axis=1, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1615_{axis=1, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1616_{axis=1, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1617_{axis=1, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1618_{axis=1, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1619_{axis=1, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1620_{axis=1, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1621_{axis=1, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1622_{axis=1, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1623_{axis=1, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1624_{axis=1, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1625_{axis=1, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1626_{axis=1, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1627_{axis=1, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1628_{axis=1, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1629_{axis=1, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1630_{axis=1, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1631_{axis=1, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1632_{axis=1, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1633_{axis=1, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1634_{axis=1, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1635_{axis=1, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1636_{axis=1, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1637_{axis=1, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1638_{axis=1, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1639_{axis=1, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1640_{axis=1, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1641_{axis=1, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1642_{axis=1, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1643_{axis=1, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1644_{axis=1, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1645_{axis=1, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1646_{axis=1, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1647_{axis=1, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1648_{axis=1, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1649_{axis=1, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1650_{axis=1, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1651_{axis=1, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1652_{axis=1, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1653_{axis=1, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1654_{axis=1, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1655_{axis=1, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1656_{axis=1, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1657_{axis=1, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1658_{axis=1, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1659_{axis=1, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1660_{axis=1, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1661_{axis=1, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1662_{axis=1, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1663_{axis=1, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1664_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1665_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1666_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1667_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1668_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1669_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1670_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1671_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1672_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1673_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1674_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1675_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1676_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1677_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1678_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1679_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1680_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1681_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1682_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1683_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1684_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1685_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1686_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1687_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1688_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1689_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1690_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1691_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1692_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1693_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1694_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1695_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1696_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1697_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1698_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1702_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1703_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1704_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1705_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1706_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1707_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1711_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1712_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1713_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1714_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1715_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1716_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1720_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1721_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1722_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1723_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1724_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1725_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1729_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1730_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1731_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1732_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1733_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1734_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1738_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1739_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1740_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1741_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1742_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1743_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1747_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1748_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1749_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1750_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1751_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1752_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1753_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1754_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1755_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1759_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1760_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1761_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1762_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1763_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1764_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1768_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1769_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1770_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1771_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1772_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1773_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1777_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1778_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1779_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1780_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1781_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1782_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1786_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1787_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1788_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1789_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1790_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1791_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1795_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1796_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1797_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1798_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1799_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1800_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1804_{axis=-1, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1805_{axis=-1, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1806_{axis=-1, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1807_{axis=-1, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1808_{axis=-1, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1809_{axis=-1, cval=-1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1810_{axis=-1, cval=-1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1811_{axis=-1, cval=-1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1812_{axis=-1, cval=-1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1813_{axis=-1, cval=-1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1814_{axis=-1, cval=-1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1815_{axis=-1, cval=-1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1816_{axis=-1, cval=0.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1817_{axis=-1, cval=0.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1818_{axis=-1, cval=0.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1819_{axis=-1, cval=0.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1820_{axis=-1, cval=0.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1821_{axis=-1, cval=0.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1822_{axis=-1, cval=0.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1823_{axis=-1, cval=0.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1824_{axis=-1, cval=0.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1825_{axis=-1, cval=0.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1826_{axis=-1, cval=0.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1827_{axis=-1, cval=0.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1828_{axis=-1, cval=1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1829_{axis=-1, cval=1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1830_{axis=-1, cval=1.0, dtype=uint8, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1831_{axis=-1, cval=1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1832_{axis=-1, cval=1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1833_{axis=-1, cval=1.0, dtype=uint8, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1834_{axis=-1, cval=1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1835_{axis=-1, cval=1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1836_{axis=-1, cval=1.0, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1837_{axis=-1, cval=1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1838_{axis=-1, cval=1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1839_{axis=-1, cval=1.0, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1840_{axis=-1, cval=nan, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1841_{axis=-1, cval=nan, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1842_{axis=-1, cval=nan, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1843_{axis=-1, cval=nan, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1844_{axis=-1, cval=nan, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1845_{axis=-1, cval=nan, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1846_{axis=-1, cval=nan, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1847_{axis=-1, cval=nan, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1848_{axis=-1, cval=nan, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1849_{axis=-1, cval=nan, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1850_{axis=-1, cval=nan, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1851_{axis=-1, cval=nan, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1852_{axis=-1, cval=inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1853_{axis=-1, cval=inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1854_{axis=-1, cval=inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1855_{axis=-1, cval=inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1856_{axis=-1, cval=inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1857_{axis=-1, cval=inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1858_{axis=-1, cval=inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1859_{axis=-1, cval=inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1860_{axis=-1, cval=inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1861_{axis=-1, cval=inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1862_{axis=-1, cval=inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1863_{axis=-1, cval=inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1864_{axis=-1, cval=-inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1865_{axis=-1, cval=-inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1866_{axis=-1, cval=-inf, dtype=float32, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1867_{axis=-1, cval=-inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1868_{axis=-1, cval=-inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1869_{axis=-1, cval=-inf, dtype=float32, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1870_{axis=-1, cval=-inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1871_{axis=-1, cval=-inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1872_{axis=-1, cval=-inf, dtype=float64, filter='convolve1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1873_{axis=-1, cval=-inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1874_{axis=-1, cval=-inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1875_{axis=-1, cval=-inf, dtype=float64, filter='convolve1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1876_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1877_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1878_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1879_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1880_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1881_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1882_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1883_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1884_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1885_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1886_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1887_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1888_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1889_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1890_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1891_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1892_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1893_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1894_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1895_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1896_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1897_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1898_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1899_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1900_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1901_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1902_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1903_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1904_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1905_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1906_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1907_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1908_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1909_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1910_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1914_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1915_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1916_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1917_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1918_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1919_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1923_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1924_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1925_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1926_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1927_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1928_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1932_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1933_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1934_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1935_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1936_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1937_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1941_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1942_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1943_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1944_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1945_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1946_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1950_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1951_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1952_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1953_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1954_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1955_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1959_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1960_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1961_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1962_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1963_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1964_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1965_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1966_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1967_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1971_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1972_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1973_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1974_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1975_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1976_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1980_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1981_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1982_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1983_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1984_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1985_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1989_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1990_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1991_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1992_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1993_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1994_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1998_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_1999_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2000_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2001_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2002_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2003_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2007_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2008_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2009_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2010_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2011_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2012_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2016_{axis=-1, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2017_{axis=-1, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2018_{axis=-1, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2019_{axis=-1, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2020_{axis=-1, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2021_{axis=-1, cval=-1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2022_{axis=-1, cval=-1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2023_{axis=-1, cval=-1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2024_{axis=-1, cval=-1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2025_{axis=-1, cval=-1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2026_{axis=-1, cval=-1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2027_{axis=-1, cval=-1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2028_{axis=-1, cval=0.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2029_{axis=-1, cval=0.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2030_{axis=-1, cval=0.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2031_{axis=-1, cval=0.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2032_{axis=-1, cval=0.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2033_{axis=-1, cval=0.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2034_{axis=-1, cval=0.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2035_{axis=-1, cval=0.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2036_{axis=-1, cval=0.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2037_{axis=-1, cval=0.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2038_{axis=-1, cval=0.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2039_{axis=-1, cval=0.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2040_{axis=-1, cval=1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2041_{axis=-1, cval=1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2042_{axis=-1, cval=1.0, dtype=uint8, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2043_{axis=-1, cval=1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2044_{axis=-1, cval=1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2045_{axis=-1, cval=1.0, dtype=uint8, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2046_{axis=-1, cval=1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2047_{axis=-1, cval=1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2048_{axis=-1, cval=1.0, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2049_{axis=-1, cval=1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2050_{axis=-1, cval=1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2051_{axis=-1, cval=1.0, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2052_{axis=-1, cval=nan, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2053_{axis=-1, cval=nan, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2054_{axis=-1, cval=nan, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2055_{axis=-1, cval=nan, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2056_{axis=-1, cval=nan, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2057_{axis=-1, cval=nan, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2058_{axis=-1, cval=nan, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2059_{axis=-1, cval=nan, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2060_{axis=-1, cval=nan, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2061_{axis=-1, cval=nan, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2062_{axis=-1, cval=nan, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2063_{axis=-1, cval=nan, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2064_{axis=-1, cval=inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2065_{axis=-1, cval=inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2066_{axis=-1, cval=inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2067_{axis=-1, cval=inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2068_{axis=-1, cval=inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2069_{axis=-1, cval=inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2070_{axis=-1, cval=inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2071_{axis=-1, cval=inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2072_{axis=-1, cval=inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2073_{axis=-1, cval=inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2074_{axis=-1, cval=inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2075_{axis=-1, cval=inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2076_{axis=-1, cval=-inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2077_{axis=-1, cval=-inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2078_{axis=-1, cval=-inf, dtype=float32, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2079_{axis=-1, cval=-inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2080_{axis=-1, cval=-inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2081_{axis=-1, cval=-inf, dtype=float32, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2082_{axis=-1, cval=-inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2083_{axis=-1, cval=-inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2084_{axis=-1, cval=-inf, dtype=float64, filter='correlate1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2085_{axis=-1, cval=-inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2086_{axis=-1, cval=-inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2087_{axis=-1, cval=-inf, dtype=float64, filter='correlate1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2088_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2089_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2090_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2091_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2092_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2093_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2094_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2095_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2096_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2097_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2098_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2099_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2100_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2101_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2102_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2103_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2104_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2105_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2106_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2107_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2108_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2109_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2110_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2111_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2112_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2113_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2114_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2115_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2116_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2117_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2118_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2119_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2120_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2121_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2122_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2126_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2127_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2128_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2129_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2130_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2131_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2135_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2136_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2137_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2138_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2139_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2140_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2144_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2145_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2146_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2147_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2148_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2149_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2153_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2154_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2155_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2156_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2157_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2158_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2162_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2163_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2164_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2165_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2166_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2167_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2171_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2172_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2173_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2174_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2175_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2176_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2177_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2178_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2179_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2183_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2184_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2185_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2186_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2187_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2188_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2192_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2193_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2194_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2195_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2196_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2197_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2201_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2202_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2203_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2204_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2205_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2206_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2210_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2211_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2212_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2213_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2214_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2215_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2219_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2220_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2221_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2222_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2223_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2224_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2228_{axis=-1, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2229_{axis=-1, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2230_{axis=-1, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2231_{axis=-1, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2232_{axis=-1, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2233_{axis=-1, cval=-1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2234_{axis=-1, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2235_{axis=-1, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2236_{axis=-1, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2237_{axis=-1, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2238_{axis=-1, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2239_{axis=-1, cval=-1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2240_{axis=-1, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2241_{axis=-1, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2242_{axis=-1, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2243_{axis=-1, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2244_{axis=-1, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2245_{axis=-1, cval=0.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2246_{axis=-1, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2247_{axis=-1, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2248_{axis=-1, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2249_{axis=-1, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2250_{axis=-1, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2251_{axis=-1, cval=0.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2252_{axis=-1, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2253_{axis=-1, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2254_{axis=-1, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2255_{axis=-1, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2256_{axis=-1, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2257_{axis=-1, cval=1.0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2258_{axis=-1, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2259_{axis=-1, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2260_{axis=-1, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2261_{axis=-1, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2262_{axis=-1, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2263_{axis=-1, cval=1.0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2264_{axis=-1, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2265_{axis=-1, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2266_{axis=-1, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2267_{axis=-1, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2268_{axis=-1, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2269_{axis=-1, cval=nan, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2270_{axis=-1, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2271_{axis=-1, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2272_{axis=-1, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2273_{axis=-1, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2274_{axis=-1, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2275_{axis=-1, cval=nan, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2276_{axis=-1, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2277_{axis=-1, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2278_{axis=-1, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2279_{axis=-1, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2280_{axis=-1, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2281_{axis=-1, cval=inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2282_{axis=-1, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2283_{axis=-1, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2284_{axis=-1, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2285_{axis=-1, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2286_{axis=-1, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2287_{axis=-1, cval=inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2288_{axis=-1, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2289_{axis=-1, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2290_{axis=-1, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2291_{axis=-1, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2292_{axis=-1, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2293_{axis=-1, cval=-inf, dtype=float32, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2294_{axis=-1, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2295_{axis=-1, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2296_{axis=-1, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2297_{axis=-1, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2298_{axis=-1, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2299_{axis=-1, cval=-inf, dtype=float64, filter='minimum_filter1d', ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2300_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2301_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2302_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2303_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2304_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2305_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2306_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2307_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2308_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2309_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2310_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2311_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2312_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2313_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2314_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2315_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2316_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2317_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2318_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2319_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2320_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2321_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2322_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2323_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2324_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2325_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2326_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2327_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2328_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2329_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2330_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2331_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2332_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2333_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2334_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2338_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2339_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2340_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2341_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2342_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2343_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2347_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2348_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2349_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2350_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2351_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2352_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2356_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2357_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2358_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2359_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2360_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2361_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2365_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2366_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2367_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2368_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2369_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2370_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2374_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2375_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2376_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2377_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2378_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2379_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2383_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2384_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2385_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2386_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2387_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2388_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2389_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2390_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2391_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2395_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2396_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2397_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2398_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2399_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2400_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2404_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2405_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2406_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2407_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2408_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2409_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2413_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2414_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2415_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2416_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2417_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2418_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2422_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2423_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2424_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2425_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2426_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2427_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2431_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2432_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2433_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2434_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2435_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2436_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2440_{cval=-1.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2441_{cval=-1.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2442_{cval=-1.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2443_{cval=-1.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2444_{cval=-1.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2445_{cval=-1.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2446_{cval=-1.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2447_{cval=-1.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2448_{cval=-1.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2449_{cval=-1.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2450_{cval=-1.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2451_{cval=-1.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2452_{cval=0.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2453_{cval=0.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2454_{cval=0.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2455_{cval=0.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2456_{cval=0.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2457_{cval=0.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2458_{cval=0.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2459_{cval=0.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2460_{cval=0.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2461_{cval=0.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2462_{cval=0.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2463_{cval=0.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2464_{cval=1.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2465_{cval=1.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2466_{cval=1.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2467_{cval=1.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2468_{cval=1.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2469_{cval=1.0, dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2470_{cval=1.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2471_{cval=1.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2472_{cval=1.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2473_{cval=1.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2474_{cval=1.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2475_{cval=1.0, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2476_{cval=nan, dtype=float32, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2477_{cval=nan, dtype=float32, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2478_{cval=nan, dtype=float32, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2479_{cval=nan, dtype=float32, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2480_{cval=nan, dtype=float32, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2481_{cval=nan, dtype=float32, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2482_{cval=nan, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2483_{cval=nan, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2484_{cval=nan, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2485_{cval=nan, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2486_{cval=nan, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2487_{cval=nan, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2488_{cval=inf, dtype=float32, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2489_{cval=inf, dtype=float32, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2490_{cval=inf, dtype=float32, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2491_{cval=inf, dtype=float32, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2492_{cval=inf, dtype=float32, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2493_{cval=inf, dtype=float32, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2494_{cval=inf, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2495_{cval=inf, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2496_{cval=inf, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2497_{cval=inf, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2498_{cval=inf, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2499_{cval=inf, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2500_{cval=-inf, dtype=float32, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2501_{cval=-inf, dtype=float32, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2502_{cval=-inf, dtype=float32, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2503_{cval=-inf, dtype=float32, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2504_{cval=-inf, dtype=float32, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2505_{cval=-inf, dtype=float32, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2506_{cval=-inf, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2507_{cval=-inf, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2508_{cval=-inf, dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2509_{cval=-inf, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2510_{cval=-inf, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2511_{cval=-inf, dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2512_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2513_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2514_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2515_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2516_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2517_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2518_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2519_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2520_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2521_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2522_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2523_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2524_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2525_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2526_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2527_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2528_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2529_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2530_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2531_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2532_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2533_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2534_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2535_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2536_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2537_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2538_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2539_{dtype=uint8, filter='minimum_filter', footprint=False, ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2540_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2541_{dtype=float64, filter='minimum_filter', footprint=False, ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2542_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2543_{dtype=float64, filter='minimum_filter', footprint=False, ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2544_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2545_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2546_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2550_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2551_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2552_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2553_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2554_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2555_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2559_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2560_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2561_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2562_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2563_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2564_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2568_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2569_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2570_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2571_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2572_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2573_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2577_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2578_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2579_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2580_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2581_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2582_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2586_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2587_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2588_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2589_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2590_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2591_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2595_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2596_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2597_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2598_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2599_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2600_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2601_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2602_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2603_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2607_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2608_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2609_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2610_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2611_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2612_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2616_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2617_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2618_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2619_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2620_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2621_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2625_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2626_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2627_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2628_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2629_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2630_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2634_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2635_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2636_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2637_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2638_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2639_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2643_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2644_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2645_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2646_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2647_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2648_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2652_{cval=-1.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2653_{cval=-1.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2654_{cval=-1.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2655_{cval=-1.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2656_{cval=-1.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2657_{cval=-1.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2658_{cval=-1.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2659_{cval=-1.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2660_{cval=-1.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2661_{cval=-1.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2662_{cval=-1.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2663_{cval=-1.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2664_{cval=0.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2665_{cval=0.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2666_{cval=0.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2667_{cval=0.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2668_{cval=0.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2669_{cval=0.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2670_{cval=0.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2671_{cval=0.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2672_{cval=0.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2673_{cval=0.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2674_{cval=0.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2675_{cval=0.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2676_{cval=1.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2677_{cval=1.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2678_{cval=1.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2679_{cval=1.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2680_{cval=1.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2681_{cval=1.0, dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2682_{cval=1.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2683_{cval=1.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2684_{cval=1.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2685_{cval=1.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2686_{cval=1.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2687_{cval=1.0, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2688_{cval=nan, dtype=float32, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2689_{cval=nan, dtype=float32, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2690_{cval=nan, dtype=float32, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2691_{cval=nan, dtype=float32, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2692_{cval=nan, dtype=float32, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2693_{cval=nan, dtype=float32, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2694_{cval=nan, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2695_{cval=nan, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2696_{cval=nan, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2697_{cval=nan, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2698_{cval=nan, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2699_{cval=nan, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2700_{cval=inf, dtype=float32, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2701_{cval=inf, dtype=float32, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2702_{cval=inf, dtype=float32, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2703_{cval=inf, dtype=float32, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2704_{cval=inf, dtype=float32, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2705_{cval=inf, dtype=float32, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2706_{cval=inf, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2707_{cval=inf, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2708_{cval=inf, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2709_{cval=inf, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2710_{cval=inf, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2711_{cval=inf, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2712_{cval=-inf, dtype=float32, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2713_{cval=-inf, dtype=float32, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2714_{cval=-inf, dtype=float32, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2715_{cval=-inf, dtype=float32, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2716_{cval=-inf, dtype=float32, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2717_{cval=-inf, dtype=float32, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2718_{cval=-inf, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2719_{cval=-inf, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2720_{cval=-inf, dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2721_{cval=-inf, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2722_{cval=-inf, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2723_{cval=-inf, dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2724_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='nearest', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2725_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2726_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2727_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='wrap', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2728_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2729_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2730_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='nearest', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2731_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2732_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2733_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='wrap', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2734_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2735_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2736_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='nearest', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2737_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2738_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2739_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='wrap', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2740_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2741_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2742_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='nearest', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2743_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2744_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2745_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='wrap', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2746_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2747_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2748_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='mirror', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2749_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2750_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='mirror', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2751_{dtype=uint8, filter='minimum_filter', footprint=True, ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2752_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='mirror', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2753_{dtype=float64, filter='minimum_filter', footprint=True, ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2754_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='mirror', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2755_{dtype=float64, filter='minimum_filter', footprint=True, ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2756_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2757_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2758_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2762_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2763_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2764_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2765_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2766_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2767_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2771_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2772_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2773_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2774_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2775_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2776_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2780_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2781_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2782_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2783_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2784_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2785_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 18.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2789_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2790_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2791_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 19.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2792_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 1.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2793_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2794_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 19.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2798_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2799_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2800_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 19.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2801_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2802_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2803_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 19.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2807_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2808_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2809_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 19.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2810_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2811_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2812_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2813_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2814_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2815_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2819_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2820_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2821_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2822_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2823_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2824_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2828_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2829_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2830_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2831_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2832_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2833_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2837_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2838_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2839_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2840_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2841_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2842_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2846_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2847_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2848_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2849_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2850_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2851_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2855_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2856_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2857_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2858_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2859_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2860_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2864_{cval=-1.0, dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2865_{cval=-1.0, dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2866_{cval=-1.0, dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2867_{cval=-1.0, dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2868_{cval=-1.0, dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2869_{cval=-1.0, dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 19.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2870_{cval=-1.0, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2871_{cval=-1.0, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2872_{cval=-1.0, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2873_{cval=-1.0, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2874_{cval=-1.0, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2875_{cval=-1.0, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2876_{cval=0.0, dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2877_{cval=0.0, dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2878_{cval=0.0, dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2879_{cval=0.0, dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2880_{cval=0.0, dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2881_{cval=0.0, dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 19.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2882_{cval=0.0, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2883_{cval=0.0, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2884_{cval=0.0, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2885_{cval=0.0, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2886_{cval=0.0, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2887_{cval=0.0, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2888_{cval=1.0, dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2889_{cval=1.0, dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2890_{cval=1.0, dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2891_{cval=1.0, dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2892_{cval=1.0, dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2893_{cval=1.0, dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 19.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2894_{cval=1.0, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2895_{cval=1.0, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2896_{cval=1.0, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2897_{cval=1.0, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2898_{cval=1.0, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2899_{cval=1.0, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2900_{cval=nan, dtype=float32, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2901_{cval=nan, dtype=float32, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2902_{cval=nan, dtype=float32, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2903_{cval=nan, dtype=float32, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2904_{cval=nan, dtype=float32, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2905_{cval=nan, dtype=float32, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2906_{cval=nan, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2907_{cval=nan, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2908_{cval=nan, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2909_{cval=nan, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2910_{cval=nan, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2911_{cval=nan, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2912_{cval=inf, dtype=float32, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2913_{cval=inf, dtype=float32, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2914_{cval=inf, dtype=float32, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2915_{cval=inf, dtype=float32, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2916_{cval=inf, dtype=float32, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2917_{cval=inf, dtype=float32, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2918_{cval=inf, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2919_{cval=inf, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2920_{cval=inf, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2921_{cval=inf, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2922_{cval=inf, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2923_{cval=inf, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2924_{cval=-inf, dtype=float32, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2925_{cval=-inf, dtype=float32, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2926_{cval=-inf, dtype=float32, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2927_{cval=-inf, dtype=float32, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2928_{cval=-inf, dtype=float32, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2929_{cval=-inf, dtype=float32, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2930_{cval=-inf, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2931_{cval=-inf, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2932_{cval=-inf, dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2933_{cval=-inf, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2934_{cval=-inf, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2935_{cval=-inf, dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2936_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='nearest', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2937_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2938_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2939_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='wrap', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2940_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2941_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2942_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='nearest', shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2943_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='nearest', shape=(3, 4, 5)}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2944_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 20.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2945_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='wrap', shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2946_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='wrap', shape=(3, 4, 5)}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2947_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 21.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2948_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='nearest', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2949_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2950_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2951_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='wrap', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2952_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='wrap', shape=(3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2953_{dtype=float64, filter='median_filter', footprint=False, ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2954_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='nearest', shape=(4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2955_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='nearest', shape=(3, 4, 5)}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2956_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2957_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='wrap', shape=(4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2958_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='wrap', shape=(3, 4, 5)}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2959_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2960_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='mirror', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2961_{dtype=uint8, filter='median_filter', footprint=False, ksize=3, mode='mirror', shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2962_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='mirror', shape=(4, 5)}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2963_{dtype=uint8, filter='median_filter', footprint=False, ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2967_{dtype=float64, filter='median_filter', footprint=False, ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2968_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2969_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2970_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2974_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2975_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2976_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2977_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2978_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2979_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2983_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2984_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2985_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2986_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2987_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2988_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2992_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2993_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2994_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2995_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2996_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_2997_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3001_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3002_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3003_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3004_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3005_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3006_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3010_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3011_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3012_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3013_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3014_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3015_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3019_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3020_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3021_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3022_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3024_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3025_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3027_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3031_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3033_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3034_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3036_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3040_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3042_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3043_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3045_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3049_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3050_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3051_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3052_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3053_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3054_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3058_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3059_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3060_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3061_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3062_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3063_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3067_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3068_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3069_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3070_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3071_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3072_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3076_{cval=-1.0, dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3077_{cval=-1.0, dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3078_{cval=-1.0, dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3079_{cval=-1.0, dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3080_{cval=-1.0, dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3081_{cval=-1.0, dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3082_{cval=-1.0, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3083_{cval=-1.0, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3084_{cval=-1.0, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3085_{cval=-1.0, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3086_{cval=-1.0, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3087_{cval=-1.0, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3088_{cval=0.0, dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3089_{cval=0.0, dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3090_{cval=0.0, dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3091_{cval=0.0, dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3092_{cval=0.0, dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3093_{cval=0.0, dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3094_{cval=0.0, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3095_{cval=0.0, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3096_{cval=0.0, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3097_{cval=0.0, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3098_{cval=0.0, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3099_{cval=0.0, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3100_{cval=1.0, dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3101_{cval=1.0, dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3102_{cval=1.0, dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3103_{cval=1.0, dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3104_{cval=1.0, dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3105_{cval=1.0, dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3106_{cval=1.0, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3107_{cval=1.0, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3108_{cval=1.0, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3109_{cval=1.0, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3110_{cval=1.0, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3111_{cval=1.0, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3112_{cval=nan, dtype=float32, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3113_{cval=nan, dtype=float32, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3114_{cval=nan, dtype=float32, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3115_{cval=nan, dtype=float32, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3116_{cval=nan, dtype=float32, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3117_{cval=nan, dtype=float32, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3118_{cval=nan, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3119_{cval=nan, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3120_{cval=nan, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3121_{cval=nan, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3122_{cval=nan, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3123_{cval=nan, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3124_{cval=inf, dtype=float32, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3125_{cval=inf, dtype=float32, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3126_{cval=inf, dtype=float32, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3127_{cval=inf, dtype=float32, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3128_{cval=inf, dtype=float32, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3129_{cval=inf, dtype=float32, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3130_{cval=inf, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3131_{cval=inf, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3132_{cval=inf, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3133_{cval=inf, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3134_{cval=inf, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3135_{cval=inf, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3136_{cval=-inf, dtype=float32, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3137_{cval=-inf, dtype=float32, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3138_{cval=-inf, dtype=float32, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3139_{cval=-inf, dtype=float32, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3140_{cval=-inf, dtype=float32, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3141_{cval=-inf, dtype=float32, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3142_{cval=-inf, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3143_{cval=-inf, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3144_{cval=-inf, dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3145_{cval=-inf, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3146_{cval=-inf, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3147_{cval=-inf, dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3148_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='nearest', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3149_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3150_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3151_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='wrap', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3152_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3153_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3154_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='nearest', shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3155_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='nearest', shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3156_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3157_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='wrap', shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3158_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='wrap', shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3159_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3160_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='nearest', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3162_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3163_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='wrap', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3165_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3166_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='nearest', shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3167_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='nearest', shape=(3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3168_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3169_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='wrap', shape=(4, 5)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3170_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='wrap', shape=(3, 4, 5)}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3171_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3172_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='mirror', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3173_{dtype=uint8, filter='median_filter', footprint=True, ksize=3, mode='mirror', shape=(3, 4, 5)}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3174_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='mirror', shape=(4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3175_{dtype=uint8, filter='median_filter', footprint=True, ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3176_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='mirror', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3177_{dtype=float64, filter='median_filter', footprint=True, ksize=3, mode='mirror', shape=(3, 4, 5)}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilter::test_filter[_param_3179_{dtype=float64, filter='median_filter', footprint=True, ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_0_{dtype=uint8, filter='maximum_filter1d', ksize=3, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_1_{dtype=uint8, filter='maximum_filter1d', ksize=3, shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_2_{dtype=uint8, filter='maximum_filter1d', ksize=3, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_3_{dtype=uint8, filter='maximum_filter1d', ksize=4, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_4_{dtype=uint8, filter='maximum_filter1d', ksize=4, shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_5_{dtype=uint8, filter='maximum_filter1d', ksize=4, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_6_{dtype=float64, filter='maximum_filter1d', ksize=3, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_7_{dtype=float64, filter='maximum_filter1d', ksize=3, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_8_{dtype=float64, filter='maximum_filter1d', ksize=3, shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_9_{dtype=float64, filter='maximum_filter1d', ksize=4, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_10_{dtype=float64, filter='maximum_filter1d', ksize=4, shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_11_{dtype=float64, filter='maximum_filter1d', ksize=4, shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_12_{dtype=uint8, filter='maximum_filter', ksize=3, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_13_{dtype=uint8, filter='maximum_filter', ksize=3, shape=(3, 4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_14_{dtype=uint8, filter='maximum_filter', ksize=3, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_15_{dtype=uint8, filter='maximum_filter', ksize=4, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_16_{dtype=uint8, filter='maximum_filter', ksize=4, shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_17_{dtype=uint8, filter='maximum_filter', ksize=4, shape=(1, 3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_18_{dtype=float64, filter='maximum_filter', ksize=3, shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_19_{dtype=float64, filter='maximum_filter', ksize=3, shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_20_{dtype=float64, filter='maximum_filter', ksize=3, shape=(1, 3, 4, 5)}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_21_{dtype=float64, filter='maximum_filter', ksize=4, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_22_{dtype=float64, filter='maximum_filter', ksize=4, shape=(3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_23_{dtype=float64, filter='maximum_filter', ksize=4, shape=(1, 3, 4, 5)}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_24_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=0, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_25_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=0, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_26_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=0, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_27_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=0, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_28_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=0, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_29_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=0, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_30_{dtype=float64, filter='percentile_filter', ksize=3, percentile=0, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_31_{dtype=float64, filter='percentile_filter', ksize=3, percentile=0, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_32_{dtype=float64, filter='percentile_filter', ksize=3, percentile=0, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_33_{dtype=float64, filter='percentile_filter', ksize=4, percentile=0, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_34_{dtype=float64, filter='percentile_filter', ksize=4, percentile=0, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_35_{dtype=float64, filter='percentile_filter', ksize=4, percentile=0, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_36_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=25, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_37_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=25, shape=(3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_39_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=25, shape=(4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_40_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=25, shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_41_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=25, shape=(1, 3, 4, 5)}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_42_{dtype=float64, filter='percentile_filter', ksize=3, percentile=25, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_43_{dtype=float64, filter='percentile_filter', ksize=3, percentile=25, shape=(3, 4, 5)}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_45_{dtype=float64, filter='percentile_filter', ksize=4, percentile=25, shape=(4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_46_{dtype=float64, filter='percentile_filter', ksize=4, percentile=25, shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_47_{dtype=float64, filter='percentile_filter', ksize=4, percentile=25, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_48_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=50, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_50_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=50, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_51_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=50, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_52_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=50, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_53_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=50, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_54_{dtype=float64, filter='percentile_filter', ksize=3, percentile=50, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_56_{dtype=float64, filter='percentile_filter', ksize=3, percentile=50, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_57_{dtype=float64, filter='percentile_filter', ksize=4, percentile=50, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_58_{dtype=float64, filter='percentile_filter', ksize=4, percentile=50, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_59_{dtype=float64, filter='percentile_filter', ksize=4, percentile=50, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_60_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=-25, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_61_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=-25, shape=(3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_63_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=-25, shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_64_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=-25, shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_65_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=-25, shape=(1, 3, 4, 5)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_66_{dtype=float64, filter='percentile_filter', ksize=3, percentile=-25, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_67_{dtype=float64, filter='percentile_filter', ksize=3, percentile=-25, shape=(3, 4, 5)}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_69_{dtype=float64, filter='percentile_filter', ksize=4, percentile=-25, shape=(4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_70_{dtype=float64, filter='percentile_filter', ksize=4, percentile=-25, shape=(3, 4, 5)}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_71_{dtype=float64, filter='percentile_filter', ksize=4, percentile=-25, shape=(1, 3, 4, 5)}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_72_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=100, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_73_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=100, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_74_{dtype=uint8, filter='percentile_filter', ksize=3, percentile=100, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_75_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=100, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_76_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=100, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_77_{dtype=uint8, filter='percentile_filter', ksize=4, percentile=100, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_78_{dtype=float64, filter='percentile_filter', ksize=3, percentile=100, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_79_{dtype=float64, filter='percentile_filter', ksize=3, percentile=100, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_80_{dtype=float64, filter='percentile_filter', ksize=3, percentile=100, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_81_{dtype=float64, filter='percentile_filter', ksize=4, percentile=100, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_82_{dtype=float64, filter='percentile_filter', ksize=4, percentile=100, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_83_{dtype=float64, filter='percentile_filter', ksize=4, percentile=100, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_84_{dtype=uint8, filter='rank_filter', ksize=3, rank=0, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_85_{dtype=uint8, filter='rank_filter', ksize=3, rank=0, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_86_{dtype=uint8, filter='rank_filter', ksize=3, rank=0, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_87_{dtype=uint8, filter='rank_filter', ksize=4, rank=0, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_88_{dtype=uint8, filter='rank_filter', ksize=4, rank=0, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_89_{dtype=uint8, filter='rank_filter', ksize=4, rank=0, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_90_{dtype=float64, filter='rank_filter', ksize=3, rank=0, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_91_{dtype=float64, filter='rank_filter', ksize=3, rank=0, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_92_{dtype=float64, filter='rank_filter', ksize=3, rank=0, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_93_{dtype=float64, filter='rank_filter', ksize=4, rank=0, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_94_{dtype=float64, filter='rank_filter', ksize=4, rank=0, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_95_{dtype=float64, filter='rank_filter', ksize=4, rank=0, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_96_{dtype=uint8, filter='rank_filter', ksize=3, rank=1, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_97_{dtype=uint8, filter='rank_filter', ksize=3, rank=1, shape=(3, 4, 5)}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_98_{dtype=uint8, filter='rank_filter', ksize=3, rank=1, shape=(1, 3, 4, 5)}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_99_{dtype=uint8, filter='rank_filter', ksize=4, rank=1, shape=(4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_100_{dtype=uint8, filter='rank_filter', ksize=4, rank=1, shape=(3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_101_{dtype=uint8, filter='rank_filter', ksize=4, rank=1, shape=(1, 3, 4, 5)}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_102_{dtype=float64, filter='rank_filter', ksize=3, rank=1, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_103_{dtype=float64, filter='rank_filter', ksize=3, rank=1, shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_104_{dtype=float64, filter='rank_filter', ksize=3, rank=1, shape=(1, 3, 4, 5)}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_105_{dtype=float64, filter='rank_filter', ksize=4, rank=1, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_106_{dtype=float64, filter='rank_filter', ksize=4, rank=1, shape=(3, 4, 5)}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_107_{dtype=float64, filter='rank_filter', ksize=4, rank=1, shape=(1, 3, 4, 5)}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_108_{dtype=uint8, filter='rank_filter', ksize=3, rank=-1, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_109_{dtype=uint8, filter='rank_filter', ksize=3, rank=-1, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_110_{dtype=uint8, filter='rank_filter', ksize=3, rank=-1, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_111_{dtype=uint8, filter='rank_filter', ksize=4, rank=-1, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_112_{dtype=uint8, filter='rank_filter', ksize=4, rank=-1, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_113_{dtype=uint8, filter='rank_filter', ksize=4, rank=-1, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_114_{dtype=float64, filter='rank_filter', ksize=3, rank=-1, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_115_{dtype=float64, filter='rank_filter', ksize=3, rank=-1, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_116_{dtype=float64, filter='rank_filter', ksize=3, rank=-1, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_117_{dtype=float64, filter='rank_filter', ksize=4, rank=-1, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_118_{dtype=float64, filter='rank_filter', ksize=4, rank=-1, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_119_{dtype=float64, filter='rank_filter', ksize=4, rank=-1, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_120_{axis=0, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_121_{axis=0, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_122_{axis=0, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_123_{axis=0, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_124_{axis=0, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_125_{axis=0, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_126_{axis=0, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=1.5, truncate=4}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_127_{axis=0, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_128_{axis=0, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_129_{axis=0, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=1.5, truncate=4}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_130_{axis=0, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_131_{axis=0, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_132_{axis=0, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_133_{axis=0, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_134_{axis=0, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_135_{axis=0, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_136_{axis=0, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_137_{axis=0, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_138_{axis=0, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=2, truncate=4}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_139_{axis=0, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=2, truncate=4}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_140_{axis=0, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=2, truncate=4}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_141_{axis=0, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=2, truncate=4}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_142_{axis=0, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=2, truncate=4}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_143_{axis=0, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=2, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_144_{axis=1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_145_{axis=1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_146_{axis=1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_147_{axis=1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_148_{axis=1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_149_{axis=1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_150_{axis=1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=1.5, truncate=4}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_151_{axis=1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_152_{axis=1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_153_{axis=1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=1.5, truncate=4}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_154_{axis=1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_155_{axis=1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_156_{axis=1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_157_{axis=1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_158_{axis=1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_159_{axis=1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_160_{axis=1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_161_{axis=1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_162_{axis=1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=2, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_163_{axis=1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=2, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_164_{axis=1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=2, truncate=4}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_165_{axis=1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=2, truncate=4}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_166_{axis=1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=2, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_167_{axis=1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=2, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_168_{axis=-1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_169_{axis=-1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_170_{axis=-1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_171_{axis=-1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_172_{axis=-1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_173_{axis=-1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_174_{axis=-1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_175_{axis=-1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_176_{axis=-1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_177_{axis=-1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_178_{axis=-1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_179_{axis=-1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_180_{axis=-1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_181_{axis=-1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_182_{axis=-1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_183_{axis=-1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_184_{axis=-1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_185_{axis=-1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_186_{axis=-1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=2, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_187_{axis=-1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=2, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_188_{axis=-1, dtype=uint8, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=2, truncate=4}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_189_{axis=-1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(4, 5), sigma=2, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_190_{axis=-1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(3, 4, 5), sigma=2, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_191_{axis=-1, dtype=float64, filter='gaussian_filter1d', output=float64, shape=(1, 3, 4, 5), sigma=2, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_192_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_193_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_194_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_195_{dtype=float64, filter='gaussian_filter', output=float64, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_196_{dtype=float64, filter='gaussian_filter', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_197_{dtype=float64, filter='gaussian_filter', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_198_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_199_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_200_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_201_{dtype=float64, filter='gaussian_filter', output=float64, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_202_{dtype=float64, filter='gaussian_filter', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_203_{dtype=float64, filter='gaussian_filter', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_204_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_205_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_206_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(1, 3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_207_{dtype=float64, filter='gaussian_filter', output=float64, shape=(4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_208_{dtype=float64, filter='gaussian_filter', output=float64, shape=(3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_209_{dtype=float64, filter='gaussian_filter', output=float64, shape=(1, 3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_210_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(4, 5), sigma=2.25, truncate=4}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_211_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(3, 4, 5), sigma=2.25, truncate=4}] | 2.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_212_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(1, 3, 4, 5), sigma=2.25, truncate=4}] | 3.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_213_{dtype=float64, filter='gaussian_filter', output=float64, shape=(4, 5), sigma=2.25, truncate=4}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_214_{dtype=float64, filter='gaussian_filter', output=float64, shape=(3, 4, 5), sigma=2.25, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_215_{dtype=float64, filter='gaussian_filter', output=float64, shape=(1, 3, 4, 5), sigma=2.25, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_216_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_217_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_218_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_219_{dtype=float64, filter='gaussian_filter', output=float64, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_220_{dtype=float64, filter='gaussian_filter', output=float64, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_221_{dtype=float64, filter='gaussian_filter', output=float64, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_222_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_223_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_224_{dtype=uint8, filter='gaussian_filter', output=float64, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_225_{dtype=float64, filter='gaussian_filter', output=float64, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_226_{dtype=float64, filter='gaussian_filter', output=float64, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_227_{dtype=float64, filter='gaussian_filter', output=float64, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_228_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_229_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_230_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_231_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_232_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_233_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_234_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_235_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_236_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_237_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_238_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_239_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_240_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_241_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_242_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(1, 3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_243_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_244_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_245_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(1, 3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_246_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_247_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_248_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(1, 3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_249_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_250_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_251_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(1, 3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_252_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_253_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_254_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_255_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_256_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_257_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_258_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_259_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_260_{dtype=uint8, filter='gaussian_laplace', output=float64, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_261_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_262_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_263_{dtype=float64, filter='gaussian_laplace', output=float64, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_264_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_265_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_266_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_267_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_268_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_269_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_270_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_271_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_272_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_273_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_274_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_275_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_276_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_277_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_278_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(1, 3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_279_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_280_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_281_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(1, 3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_282_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_283_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_284_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(1, 3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_285_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_286_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_287_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(1, 3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_288_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_289_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_290_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_291_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_292_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_293_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_294_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_295_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_296_{dtype=uint8, filter='gaussian_gradient_magnitude', output=float64, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_297_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_298_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_299_{dtype=float64, filter='gaussian_gradient_magnitude', output=float64, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_300_{axis=0, dtype=uint8, filter='prewitt', output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_301_{axis=0, dtype=uint8, filter='prewitt', output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_302_{axis=0, dtype=uint8, filter='prewitt', output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_303_{axis=0, dtype=float64, filter='prewitt', output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_304_{axis=0, dtype=float64, filter='prewitt', output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_305_{axis=0, dtype=float64, filter='prewitt', output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_306_{axis=0, dtype=uint8, filter='sobel', output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_307_{axis=0, dtype=uint8, filter='sobel', output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_308_{axis=0, dtype=uint8, filter='sobel', output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_309_{axis=0, dtype=float64, filter='sobel', output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_310_{axis=0, dtype=float64, filter='sobel', output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_311_{axis=0, dtype=float64, filter='sobel', output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_312_{axis=1, dtype=uint8, filter='prewitt', output=float64, shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_313_{axis=1, dtype=uint8, filter='prewitt', output=float64, shape=(3, 4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_314_{axis=1, dtype=uint8, filter='prewitt', output=float64, shape=(1, 3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_315_{axis=1, dtype=float64, filter='prewitt', output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_316_{axis=1, dtype=float64, filter='prewitt', output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_317_{axis=1, dtype=float64, filter='prewitt', output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_318_{axis=1, dtype=uint8, filter='sobel', output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_319_{axis=1, dtype=uint8, filter='sobel', output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_320_{axis=1, dtype=uint8, filter='sobel', output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_321_{axis=1, dtype=float64, filter='sobel', output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_322_{axis=1, dtype=float64, filter='sobel', output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_323_{axis=1, dtype=float64, filter='sobel', output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_324_{axis=-1, dtype=uint8, filter='prewitt', output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_325_{axis=-1, dtype=uint8, filter='prewitt', output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_326_{axis=-1, dtype=uint8, filter='prewitt', output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_327_{axis=-1, dtype=float64, filter='prewitt', output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_328_{axis=-1, dtype=float64, filter='prewitt', output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_329_{axis=-1, dtype=float64, filter='prewitt', output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_330_{axis=-1, dtype=uint8, filter='sobel', output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_331_{axis=-1, dtype=uint8, filter='sobel', output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_332_{axis=-1, dtype=uint8, filter='sobel', output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_333_{axis=-1, dtype=float64, filter='sobel', output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_334_{axis=-1, dtype=float64, filter='sobel', output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_335_{axis=-1, dtype=float64, filter='sobel', output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_336_{dtype=uint8, filter='laplace', output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_337_{dtype=uint8, filter='laplace', output=float64, shape=(3, 4, 5)}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_338_{dtype=uint8, filter='laplace', output=float64, shape=(1, 3, 4, 5)}] | 2.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_339_{dtype=float64, filter='laplace', output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_340_{dtype=float64, filter='laplace', output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_341_{dtype=float64, filter='laplace', output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_342_{derivative=dummy_deriv_func, dtype=uint8, filter='generic_laplace', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_343_{derivative=dummy_deriv_func, dtype=uint8, filter='generic_laplace', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_344_{derivative=dummy_deriv_func, dtype=uint8, filter='generic_laplace', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_345_{derivative=dummy_deriv_func, dtype=float64, filter='generic_laplace', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_346_{derivative=dummy_deriv_func, dtype=float64, filter='generic_laplace', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_347_{derivative=dummy_deriv_func, dtype=float64, filter='generic_laplace', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_348_{derivative=dummy_deriv_func, dtype=uint8, filter='generic_gradient_magnitude', shape=(4, 5)}] | 0.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_349_{derivative=dummy_deriv_func, dtype=uint8, filter='generic_gradient_magnitude', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_350_{derivative=dummy_deriv_func, dtype=uint8, filter='generic_gradient_magnitude', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_351_{derivative=dummy_deriv_func, dtype=float64, filter='generic_gradient_magnitude', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_352_{derivative=dummy_deriv_func, dtype=float64, filter='generic_gradient_magnitude', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterFast::test_filter[_param_353_{derivative=dummy_deriv_func, dtype=float64, filter='generic_gradient_magnitude', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_0_{axis=0, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_1_{axis=0, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_2_{axis=0, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_3_{axis=0, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_4_{axis=0, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_5_{axis=0, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_6_{axis=0, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=1.5, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_7_{axis=0, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_8_{axis=0, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_9_{axis=0, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=1.5, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_10_{axis=0, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_11_{axis=0, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_12_{axis=0, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_13_{axis=0, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_14_{axis=0, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_15_{axis=0, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_16_{axis=0, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_17_{axis=0, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_18_{axis=0, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=2, truncate=4}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_19_{axis=0, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=2, truncate=4}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_20_{axis=0, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=2, truncate=4}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_21_{axis=0, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=2, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_22_{axis=0, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=2, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_23_{axis=0, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=2, truncate=4}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_24_{axis=1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_25_{axis=1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_26_{axis=1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_27_{axis=1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_28_{axis=1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_29_{axis=1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_30_{axis=1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=1.5, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_31_{axis=1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_32_{axis=1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_33_{axis=1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=1.5, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_34_{axis=1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_35_{axis=1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_36_{axis=1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_37_{axis=1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_38_{axis=1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_39_{axis=1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_40_{axis=1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_41_{axis=1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_42_{axis=1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=2, truncate=4}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_43_{axis=1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=2, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_44_{axis=1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=2, truncate=4}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_45_{axis=1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=2, truncate=4}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_46_{axis=1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=2, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_47_{axis=1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=2, truncate=4}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_48_{axis=-1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_49_{axis=-1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_50_{axis=-1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_51_{axis=-1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_52_{axis=-1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_53_{axis=-1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_54_{axis=-1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_55_{axis=-1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_56_{axis=-1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_57_{axis=-1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_58_{axis=-1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_59_{axis=-1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_60_{axis=-1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_61_{axis=-1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_62_{axis=-1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_63_{axis=-1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_64_{axis=-1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_65_{axis=-1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=2, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_66_{axis=-1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=2, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_67_{axis=-1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=2, truncate=4}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_68_{axis=-1, dtype=complex64, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=2, truncate=4}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_69_{axis=-1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(4, 5), sigma=2, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_70_{axis=-1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(3, 4, 5), sigma=2, truncate=4}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_71_{axis=-1, dtype=complex128, filter='gaussian_filter1d', output=None, shape=(1, 3, 4, 5), sigma=2, truncate=4}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_72_{dtype=complex64, filter='gaussian_filter', output=None, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_73_{dtype=complex64, filter='gaussian_filter', output=None, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_74_{dtype=complex64, filter='gaussian_filter', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_75_{dtype=complex128, filter='gaussian_filter', output=None, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_76_{dtype=complex128, filter='gaussian_filter', output=None, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_77_{dtype=complex128, filter='gaussian_filter', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_78_{dtype=complex64, filter='gaussian_filter', output=None, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_79_{dtype=complex64, filter='gaussian_filter', output=None, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_80_{dtype=complex64, filter='gaussian_filter', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_81_{dtype=complex128, filter='gaussian_filter', output=None, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_82_{dtype=complex128, filter='gaussian_filter', output=None, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_83_{dtype=complex128, filter='gaussian_filter', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_84_{dtype=complex64, filter='gaussian_filter', output=None, shape=(4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_85_{dtype=complex64, filter='gaussian_filter', output=None, shape=(3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_86_{dtype=complex64, filter='gaussian_filter', output=None, shape=(1, 3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_87_{dtype=complex128, filter='gaussian_filter', output=None, shape=(4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_88_{dtype=complex128, filter='gaussian_filter', output=None, shape=(3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_89_{dtype=complex128, filter='gaussian_filter', output=None, shape=(1, 3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_90_{dtype=complex64, filter='gaussian_filter', output=None, shape=(4, 5), sigma=2.25, truncate=4}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_91_{dtype=complex64, filter='gaussian_filter', output=None, shape=(3, 4, 5), sigma=2.25, truncate=4}] | 2.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_92_{dtype=complex64, filter='gaussian_filter', output=None, shape=(1, 3, 4, 5), sigma=2.25, truncate=4}] | 3.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_93_{dtype=complex128, filter='gaussian_filter', output=None, shape=(4, 5), sigma=2.25, truncate=4}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_94_{dtype=complex128, filter='gaussian_filter', output=None, shape=(3, 4, 5), sigma=2.25, truncate=4}] | 2.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_95_{dtype=complex128, filter='gaussian_filter', output=None, shape=(1, 3, 4, 5), sigma=2.25, truncate=4}] | 3.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_96_{dtype=complex64, filter='gaussian_filter', output=None, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_97_{dtype=complex64, filter='gaussian_filter', output=None, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_98_{dtype=complex64, filter='gaussian_filter', output=None, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_99_{dtype=complex128, filter='gaussian_filter', output=None, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_100_{dtype=complex128, filter='gaussian_filter', output=None, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_101_{dtype=complex128, filter='gaussian_filter', output=None, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_102_{dtype=complex64, filter='gaussian_filter', output=None, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_103_{dtype=complex64, filter='gaussian_filter', output=None, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_104_{dtype=complex64, filter='gaussian_filter', output=None, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_105_{dtype=complex128, filter='gaussian_filter', output=None, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_106_{dtype=complex128, filter='gaussian_filter', output=None, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_107_{dtype=complex128, filter='gaussian_filter', output=None, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_108_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_109_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_110_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_111_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_112_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_113_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_114_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_115_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_116_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_117_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_118_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_119_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_120_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_121_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_122_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(1, 3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_123_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_124_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_125_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(1, 3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_126_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_127_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_128_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(1, 3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_129_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_130_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_131_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(1, 3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_132_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_133_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_134_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_135_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_136_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_137_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_138_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_139_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_140_{dtype=complex64, filter='gaussian_laplace', output=None, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_141_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_142_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_143_{dtype=complex128, filter='gaussian_laplace', output=None, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_144_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_145_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_146_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_147_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_148_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_149_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_150_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_151_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_152_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_153_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_154_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_155_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(1, 3, 4, 5), sigma=1.5, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_156_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_157_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_158_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(1, 3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_159_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_160_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_161_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(1, 3, 4, 5), sigma=2.25, truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_162_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_163_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_164_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(1, 3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_165_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_166_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_167_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(1, 3, 4, 5), sigma=2.25, truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_168_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_169_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_170_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_171_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_172_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_173_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=2.75}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_174_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_175_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_176_{dtype=complex64, filter='gaussian_gradient_magnitude', output=None, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_177_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_178_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_179_{dtype=complex128, filter='gaussian_gradient_magnitude', output=None, shape=(1, 3, 4, 5), sigma=(1.5, 2.25, 1.0, 3.0), truncate=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_180_{axis=0, dtype=complex64, filter='prewitt', output=None, shape=(4, 5)}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_181_{axis=0, dtype=complex64, filter='prewitt', output=None, shape=(3, 4, 5)}] | 2.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_182_{axis=0, dtype=complex64, filter='prewitt', output=None, shape=(1, 3, 4, 5)}] | 3.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_183_{axis=0, dtype=complex128, filter='prewitt', output=None, shape=(4, 5)}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_184_{axis=0, dtype=complex128, filter='prewitt', output=None, shape=(3, 4, 5)}] | 2.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_185_{axis=0, dtype=complex128, filter='prewitt', output=None, shape=(1, 3, 4, 5)}] | 3.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_186_{axis=0, dtype=complex64, filter='sobel', output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_187_{axis=0, dtype=complex64, filter='sobel', output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_188_{axis=0, dtype=complex64, filter='sobel', output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_189_{axis=0, dtype=complex128, filter='sobel', output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_190_{axis=0, dtype=complex128, filter='sobel', output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_191_{axis=0, dtype=complex128, filter='sobel', output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_192_{axis=1, dtype=complex64, filter='prewitt', output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_193_{axis=1, dtype=complex64, filter='prewitt', output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_194_{axis=1, dtype=complex64, filter='prewitt', output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_195_{axis=1, dtype=complex128, filter='prewitt', output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_196_{axis=1, dtype=complex128, filter='prewitt', output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_197_{axis=1, dtype=complex128, filter='prewitt', output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_198_{axis=1, dtype=complex64, filter='sobel', output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_199_{axis=1, dtype=complex64, filter='sobel', output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_200_{axis=1, dtype=complex64, filter='sobel', output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_201_{axis=1, dtype=complex128, filter='sobel', output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_202_{axis=1, dtype=complex128, filter='sobel', output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_203_{axis=1, dtype=complex128, filter='sobel', output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_204_{axis=-1, dtype=complex64, filter='prewitt', output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_205_{axis=-1, dtype=complex64, filter='prewitt', output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_206_{axis=-1, dtype=complex64, filter='prewitt', output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_207_{axis=-1, dtype=complex128, filter='prewitt', output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_208_{axis=-1, dtype=complex128, filter='prewitt', output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_209_{axis=-1, dtype=complex128, filter='prewitt', output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_210_{axis=-1, dtype=complex64, filter='sobel', output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_211_{axis=-1, dtype=complex64, filter='sobel', output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_212_{axis=-1, dtype=complex64, filter='sobel', output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_213_{axis=-1, dtype=complex128, filter='sobel', output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_214_{axis=-1, dtype=complex128, filter='sobel', output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_215_{axis=-1, dtype=complex128, filter='sobel', output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_216_{dtype=complex64, filter='laplace', output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_217_{dtype=complex64, filter='laplace', output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_218_{dtype=complex64, filter='laplace', output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_219_{dtype=complex128, filter='laplace', output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_220_{dtype=complex128, filter='laplace', output=None, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_221_{dtype=complex128, filter='laplace', output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_222_{derivative=dummy_deriv_func, dtype=complex64, filter='generic_laplace', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_223_{derivative=dummy_deriv_func, dtype=complex64, filter='generic_laplace', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_224_{derivative=dummy_deriv_func, dtype=complex64, filter='generic_laplace', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_225_{derivative=dummy_deriv_func, dtype=complex128, filter='generic_laplace', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_226_{derivative=dummy_deriv_func, dtype=complex128, filter='generic_laplace', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_227_{derivative=dummy_deriv_func, dtype=complex128, filter='generic_laplace', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_228_{derivative=dummy_deriv_func, dtype=complex64, filter='generic_gradient_magnitude', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_229_{derivative=dummy_deriv_func, dtype=complex64, filter='generic_gradient_magnitude', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_230_{derivative=dummy_deriv_func, dtype=complex64, filter='generic_gradient_magnitude', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_231_{derivative=dummy_deriv_func, dtype=complex128, filter='generic_gradient_magnitude', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_232_{derivative=dummy_deriv_func, dtype=complex128, filter='generic_gradient_magnitude', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFilterComplexFast::test_filter[_param_233_{derivative=dummy_deriv_func, dtype=complex128, filter='generic_gradient_magnitude', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_0_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_1_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_2_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_3_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_4_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_5_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_6_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_7_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_8_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_9_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_10_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_11_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_12_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_13_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_14_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_15_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_16_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_17_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_18_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_19_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_20_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_21_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_22_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_23_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_24_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_25_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_26_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_27_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_28_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_29_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_30_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_31_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_32_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_33_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_34_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_35_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_36_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_37_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_38_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_39_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_40_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_41_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_42_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_43_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_44_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_45_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_46_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_47_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_48_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_49_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_50_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_51_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_52_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_53_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_54_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_55_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_56_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_57_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_58_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_59_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_60_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_61_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_62_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_63_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_64_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_65_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_66_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_67_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_68_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_69_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_70_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_71_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_72_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_73_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_74_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_75_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_76_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_77_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_78_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_79_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_80_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_81_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_82_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_83_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_84_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_85_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_86_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_87_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_88_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_89_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_90_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_91_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_92_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_93_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_94_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_95_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_96_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_97_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_98_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_99_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_100_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_101_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_102_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_103_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_104_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_105_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_106_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_107_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_108_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_109_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_110_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_111_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_112_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_113_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_114_{cval=0.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_115_{cval=0.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_116_{cval=0.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_117_{cval=0.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_118_{cval=0.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_119_{cval=0.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_120_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_121_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_122_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_123_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_124_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_125_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_126_{cval=1.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_127_{cval=1.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_128_{cval=1.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_129_{cval=1.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_130_{cval=1.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_131_{cval=1.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_132_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='nearest', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_133_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_134_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_135_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='wrap', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_136_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_137_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_138_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='nearest', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_139_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_140_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_141_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='wrap', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_142_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_143_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_144_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='nearest', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_145_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_146_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_147_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='wrap', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_148_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_149_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_150_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='nearest', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_151_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_152_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_153_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='wrap', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_154_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_155_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_156_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='mirror', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_157_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_158_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='mirror', shape=(4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_159_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_160_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='mirror', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_161_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_162_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='mirror', shape=(4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_163_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_164_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_165_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_166_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_167_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_168_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_169_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_170_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_171_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_172_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_173_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_174_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_175_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_176_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_177_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_178_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_179_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_180_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_181_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_182_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_183_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_184_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_185_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_186_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_187_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_188_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_189_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_190_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_191_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_192_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_193_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_194_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_195_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_196_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_197_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_198_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_199_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_200_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_201_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_202_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_203_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_204_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_205_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_206_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_207_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_208_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_209_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_210_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_211_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_212_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_213_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_214_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_215_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_216_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_217_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_218_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_219_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_220_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_221_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_222_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_223_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_224_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_225_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_226_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_227_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_228_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_229_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_230_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_231_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_232_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_233_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_234_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_235_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_236_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_237_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_238_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_239_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_240_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_241_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_242_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_243_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_244_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_245_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_246_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_247_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_248_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_249_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_250_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_251_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_252_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_253_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_254_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_255_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_256_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_257_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_258_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_259_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_260_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_261_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_262_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_263_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_264_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_265_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_266_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_267_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_268_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_269_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_270_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_271_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_272_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_273_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_274_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_275_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_276_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_277_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_278_{cval=0.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_279_{cval=0.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_280_{cval=0.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_281_{cval=0.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_282_{cval=0.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_283_{cval=0.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_284_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_285_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_286_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_287_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_288_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_289_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_290_{cval=1.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_291_{cval=1.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_292_{cval=1.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_293_{cval=1.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_294_{cval=1.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_295_{cval=1.0, dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_296_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='nearest', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_297_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_298_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_299_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='wrap', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_300_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_301_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_302_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='nearest', shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_303_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_304_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 2.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_305_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='wrap', shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_306_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_307_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 2.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_308_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='nearest', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_309_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_310_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_311_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='wrap', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_312_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_313_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_314_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='nearest', shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_315_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_316_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_317_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='wrap', shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_318_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_319_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_320_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='mirror', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_321_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_322_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='mirror', shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_323_{dtype=uint8, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_324_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='mirror', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_325_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_326_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='mirror', shape=(4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_327_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_328_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_329_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_330_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_331_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_332_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_333_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_334_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_335_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_336_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_337_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_338_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_339_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_340_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_341_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_342_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_343_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_344_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_345_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_346_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_347_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_348_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_349_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_350_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_351_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_352_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_353_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_354_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_355_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_356_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_357_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_358_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_359_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_360_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_361_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_362_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_363_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_364_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_365_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_366_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_367_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_368_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_369_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_370_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_371_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_372_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_373_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_374_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_375_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_376_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_377_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_378_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_379_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_380_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_381_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_382_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_383_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_384_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_385_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_386_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_387_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_388_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_389_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_390_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_391_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_392_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_393_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_394_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_395_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_396_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_397_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_398_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_399_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_400_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_401_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_402_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_403_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_404_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_405_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_406_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_407_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_408_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_409_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_410_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_411_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_412_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_413_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_414_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_415_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_416_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_417_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_418_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_419_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_420_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_421_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_422_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_423_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_424_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_425_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_426_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_427_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_428_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_429_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_430_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_431_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_432_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_433_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_434_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_435_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_436_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_437_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_438_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_439_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_440_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_441_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_442_{cval=0.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_443_{cval=0.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_444_{cval=0.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_445_{cval=0.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_446_{cval=0.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_447_{cval=0.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_448_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_449_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_450_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_451_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_452_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_453_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_454_{cval=1.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_455_{cval=1.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_456_{cval=1.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_457_{cval=1.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_458_{cval=1.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_459_{cval=1.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_460_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='nearest', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_461_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_462_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_463_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='wrap', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_464_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_465_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_466_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='nearest', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_467_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_468_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_469_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='wrap', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_470_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_471_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_472_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='nearest', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_473_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_474_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_475_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='wrap', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_476_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_477_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_478_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='nearest', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_479_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_480_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_481_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='wrap', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_482_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_483_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_484_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='mirror', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_485_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_486_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='mirror', shape=(4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_487_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_488_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='mirror', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_489_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_490_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='mirror', shape=(4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_491_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_raw', 'rms_pyfunc'), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_492_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_493_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_494_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_495_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_496_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_497_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_498_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_499_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_500_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_501_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_502_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_503_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_504_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_505_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_506_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_507_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_508_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_509_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_510_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_511_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_512_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_513_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_514_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_515_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_516_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_517_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_518_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_519_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_520_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_521_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_522_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_523_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_524_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_525_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_526_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_527_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_528_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_529_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_530_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_531_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_532_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_533_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_534_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_535_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_536_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_537_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_538_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_539_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_540_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_541_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_542_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_543_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_544_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_545_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_546_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_547_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_548_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_549_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_550_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_551_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_552_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_553_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_554_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_555_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_556_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_557_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_558_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_559_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_560_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_561_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_562_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_563_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_564_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_565_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_566_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_567_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_568_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_569_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_570_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_571_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_572_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_573_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_574_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_575_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_576_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_577_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_578_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_579_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_580_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_581_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_582_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_583_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_584_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_585_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_586_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_587_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_588_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_589_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_590_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_591_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_592_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_593_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_594_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_595_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_596_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_597_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_598_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_599_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_600_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_601_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_602_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_603_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_604_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_605_{cval=0.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_606_{cval=0.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_607_{cval=0.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_608_{cval=0.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_609_{cval=0.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_610_{cval=0.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_611_{cval=0.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_612_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_613_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_614_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_615_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_616_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_617_{cval=1.0, dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_618_{cval=1.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_619_{cval=1.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_620_{cval=1.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_621_{cval=1.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_622_{cval=1.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(3, 4, 5)}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_623_{cval=1.0, dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_624_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='nearest', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_625_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_626_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_627_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='wrap', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_628_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_629_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_630_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='nearest', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_631_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_632_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 2.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_633_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='wrap', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_634_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_635_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 2.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_636_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='nearest', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_637_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_638_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_639_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='wrap', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_640_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_641_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_642_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='nearest', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_643_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_644_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_645_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='wrap', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_646_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_647_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_648_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='mirror', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_649_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_650_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='mirror', shape=(4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_651_{dtype=uint8, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_652_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='mirror', shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_653_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_654_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='mirror', shape=(4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_655_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_red', 'lt_pyfunc'), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_656_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_red', 'rms_pyfunc'), ksize=3, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_657_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_red', 'rms_pyfunc'), ksize=3, shape=(3, 4, 5)}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_658_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_red', 'rms_pyfunc'), ksize=3, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_659_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_red', 'rms_pyfunc'), ksize=4, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_660_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_red', 'rms_pyfunc'), ksize=4, shape=(3, 4, 5)}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_661_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('rms_red', 'rms_pyfunc'), ksize=4, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_662_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_raw', 'lt_pyfunc'), ksize=3, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_663_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_raw', 'lt_pyfunc'), ksize=3, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_664_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_raw', 'lt_pyfunc'), ksize=3, shape=(1, 3, 4, 5)}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_665_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_raw', 'lt_pyfunc'), ksize=4, shape=(4, 5)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_666_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_raw', 'lt_pyfunc'), ksize=4, shape=(3, 4, 5)}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_667_{dtype=float64, filter='generic_filter', footprint=False, func_or_kernel=('lt_raw', 'lt_pyfunc'), ksize=4, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_668_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_red', 'rms_pyfunc'), ksize=3, shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_669_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_red', 'rms_pyfunc'), ksize=3, shape=(3, 4, 5)}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_670_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_red', 'rms_pyfunc'), ksize=3, shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_671_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_red', 'rms_pyfunc'), ksize=4, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_672_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_red', 'rms_pyfunc'), ksize=4, shape=(3, 4, 5)}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_673_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('rms_red', 'rms_pyfunc'), ksize=4, shape=(1, 3, 4, 5)}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_674_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_raw', 'lt_pyfunc'), ksize=3, shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_675_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_raw', 'lt_pyfunc'), ksize=3, shape=(3, 4, 5)}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_676_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_raw', 'lt_pyfunc'), ksize=3, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_677_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_raw', 'lt_pyfunc'), ksize=4, shape=(4, 5)}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_678_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_raw', 'lt_pyfunc'), ksize=4, shape=(3, 4, 5)}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGenericFilter::test_filter[_param_679_{dtype=float64, filter='generic_filter', footprint=True, func_or_kernel=('lt_raw', 'lt_pyfunc'), ksize=4, shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_0_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_1_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_2_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_3_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_4_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_5_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_6_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_7_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_8_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_9_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_10_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_11_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_12_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_13_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_14_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_15_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_16_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_17_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_18_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_19_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_20_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_21_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_22_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_23_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_24_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_25_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_26_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_27_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_28_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_29_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_30_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_31_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_32_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_33_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_34_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_35_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_36_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_37_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_38_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_39_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_40_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_41_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_42_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_43_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_44_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_45_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_46_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_47_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_48_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_49_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_50_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_51_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_52_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_53_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_54_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_55_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_56_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_57_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_58_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_59_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_60_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_61_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_62_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_63_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_64_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_65_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_66_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_67_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_68_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_69_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_70_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_71_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_72_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_73_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_74_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_75_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_76_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_77_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_78_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_79_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_80_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_81_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_82_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_83_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_84_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_85_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_86_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_87_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_88_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_89_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_90_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_91_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_92_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_93_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_94_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_95_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_96_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_97_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_98_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_99_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_100_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_101_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_102_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_103_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_104_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_105_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_106_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_107_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_108_{axis=0, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_109_{axis=0, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_110_{axis=0, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_111_{axis=0, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_112_{axis=0, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_113_{axis=0, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_114_{axis=0, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_115_{axis=0, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_116_{axis=0, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_117_{axis=0, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_118_{axis=0, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_119_{axis=0, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_120_{axis=0, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_121_{axis=0, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_122_{axis=0, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_123_{axis=0, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_124_{axis=0, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_125_{axis=0, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_126_{axis=0, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_127_{axis=0, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_128_{axis=0, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_129_{axis=0, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_130_{axis=0, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_131_{axis=0, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_132_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_133_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_134_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_135_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_136_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_137_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_138_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_139_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_140_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_141_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_142_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_143_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_144_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_145_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_146_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_147_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_148_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_149_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_150_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_151_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_152_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_153_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_154_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_155_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_156_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='mirror', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_157_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_158_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='mirror', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_159_{axis=0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_160_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='mirror', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_161_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_162_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='mirror', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_163_{axis=0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_164_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_165_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_166_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_167_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_168_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_169_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_170_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_171_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_172_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_173_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_174_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_175_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_176_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_177_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_178_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_179_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_180_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_181_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_182_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_183_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_184_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_185_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_186_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_187_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_188_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_189_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_190_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_191_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_192_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_193_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_194_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_195_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_196_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_197_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_198_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_199_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_200_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_201_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_202_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_203_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_204_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_205_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_206_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_207_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_208_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_209_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_210_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_211_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_212_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_213_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_214_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_215_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_216_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_217_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_218_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_219_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_220_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_221_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_222_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_223_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_224_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_225_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_226_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_227_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_228_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_229_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_230_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_231_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_232_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_233_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_234_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_235_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_236_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_237_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_238_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_239_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_240_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_241_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_242_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_243_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_244_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_245_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_246_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_247_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_248_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_249_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_250_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_251_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_252_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_253_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_254_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_255_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_256_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_257_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_258_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_259_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_260_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_261_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_262_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_263_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_264_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_265_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_266_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_267_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_268_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_269_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_270_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_271_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_272_{axis=1, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_273_{axis=1, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_274_{axis=1, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_275_{axis=1, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_276_{axis=1, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_277_{axis=1, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_278_{axis=1, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_279_{axis=1, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_280_{axis=1, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_281_{axis=1, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_282_{axis=1, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_283_{axis=1, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_284_{axis=1, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_285_{axis=1, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_286_{axis=1, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_287_{axis=1, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_288_{axis=1, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_289_{axis=1, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_290_{axis=1, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_291_{axis=1, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_292_{axis=1, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_293_{axis=1, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_294_{axis=1, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_295_{axis=1, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_296_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_297_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_298_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_299_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_300_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_301_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_302_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_303_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_304_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_305_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_306_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_307_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_308_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_309_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_310_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_311_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_312_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_313_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_314_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_315_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_316_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_317_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_318_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_319_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_320_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='mirror', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_321_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_322_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='mirror', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_323_{axis=1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_324_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='mirror', shape=(4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_325_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_326_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='mirror', shape=(4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_327_{axis=1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_328_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_329_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_330_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_331_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_332_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_333_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_334_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_335_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_336_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_337_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_338_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_339_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_340_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_341_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_342_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_343_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_344_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_345_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_346_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_347_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_348_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_349_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_350_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_351_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_352_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_353_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_354_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_355_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_356_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_357_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_358_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_359_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_360_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_361_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_362_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_363_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_364_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_365_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_366_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_367_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_368_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_369_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_370_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_371_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_372_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_373_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_374_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_375_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_376_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_377_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_378_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_379_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_380_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_381_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_382_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_383_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_384_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_385_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_386_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_387_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_388_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_389_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_390_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_391_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_392_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_393_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_394_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_395_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_396_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_397_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_398_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_399_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_400_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_401_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_402_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_403_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_404_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_405_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_406_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_407_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_408_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_409_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_410_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(3, 4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_411_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_412_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_413_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_414_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_415_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_416_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_417_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=0, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_418_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_419_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_420_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_421_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_422_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_423_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_424_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_425_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_426_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=1, output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_427_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_428_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_429_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=None, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_430_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_431_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_432_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=uint8, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_433_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_434_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_435_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='reflect', origin=(-1, 1, -1, 1), output=float64, shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_436_{axis=-1, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_437_{axis=-1, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_438_{axis=-1, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_439_{axis=-1, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_440_{axis=-1, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_441_{axis=-1, cval=0.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_442_{axis=-1, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_443_{axis=-1, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_444_{axis=-1, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_445_{axis=-1, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_446_{axis=-1, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_447_{axis=-1, cval=0.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_448_{axis=-1, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_449_{axis=-1, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_450_{axis=-1, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_451_{axis=-1, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_452_{axis=-1, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_453_{axis=-1, cval=1.0, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_454_{axis=-1, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_455_{axis=-1, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_456_{axis=-1, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_457_{axis=-1, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_458_{axis=-1, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_459_{axis=-1, cval=1.0, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='constant', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_460_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_461_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_462_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_463_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_464_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_465_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_466_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_467_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_468_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_469_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_470_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_471_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_472_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_473_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_474_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_475_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_476_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_477_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_478_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_479_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_480_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='nearest', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_481_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_482_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(3, 4, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_483_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='wrap', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_484_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_485_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_486_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_487_{axis=-1, dtype=uint8, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_488_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_489_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=3, mode='mirror', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_490_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='mirror', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestGeneric1DFilter::test_filter[_param_491_{axis=-1, dtype=float64, filter='generic_filter1d', func_or_kernel=(<cupy._core.raw.RawKernel object at 0x7f23800fc9c0>, <function shift_pyfunc at 0x7f2380108550>), ksize=4, mode='mirror', shape=(3, 4, 5)}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_0_{dtype=uint8, filter='convolve', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_1_{dtype=uint8, filter='convolve', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_2_{dtype=float64, filter='convolve', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_3_{dtype=float64, filter='convolve', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_4_{dtype=uint8, filter='correlate', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_5_{dtype=uint8, filter='correlate', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_6_{dtype=float64, filter='correlate', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_7_{dtype=float64, filter='correlate', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_8_{dtype=uint8, filter='minimum_filter', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_9_{dtype=uint8, filter='minimum_filter', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_10_{dtype=float64, filter='minimum_filter', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_11_{dtype=float64, filter='minimum_filter', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_12_{dtype=uint8, filter='maximum_filter', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_13_{dtype=uint8, filter='maximum_filter', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_14_{dtype=float64, filter='maximum_filter', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_15_{dtype=float64, filter='maximum_filter', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_16_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_17_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_18_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_19_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_20_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_21_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_22_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_23_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_24_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_25_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_26_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_27_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_28_{axis=0, dtype=uint8, filter='maximum_filter1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_29_{axis=0, dtype=uint8, filter='maximum_filter1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_30_{axis=0, dtype=float64, filter='maximum_filter1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_31_{axis=0, dtype=float64, filter='maximum_filter1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_32_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_33_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_34_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_35_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_36_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_37_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_38_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_39_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_40_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_41_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_42_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_43_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_44_{axis=1, dtype=uint8, filter='maximum_filter1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_45_{axis=1, dtype=uint8, filter='maximum_filter1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_46_{axis=1, dtype=float64, filter='maximum_filter1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_47_{axis=1, dtype=float64, filter='maximum_filter1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_48_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_49_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_50_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_51_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_52_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_53_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_54_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_55_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_56_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_57_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_58_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_59_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_60_{axis=-1, dtype=uint8, filter='maximum_filter1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_61_{axis=-1, dtype=uint8, filter='maximum_filter1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_62_{axis=-1, dtype=float64, filter='maximum_filter1d', ksize=3, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestMirrorWithDim1::test_filter[_param_63_{axis=-1, dtype=float64, filter='maximum_filter1d', ksize=4, mode='mirror', shape=(1, 3, 4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_0_{filter='median_filter', fooprint=False, ksize=16, shape=(20, 21)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_1_{filter='median_filter', fooprint=False, ksize=17, shape=(20, 21)}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_2_{filter='median_filter', fooprint=True, ksize=16, shape=(20, 21)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_3_{filter='median_filter', fooprint=True, ksize=17, shape=(20, 21)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_4_{filter='percentile_filter', fooprint=False, ksize=16, percentile=25, shape=(20, 21)}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_5_{filter='percentile_filter', fooprint=False, ksize=17, percentile=25, shape=(20, 21)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_6_{filter='percentile_filter', fooprint=True, ksize=16, percentile=25, shape=(20, 21)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_7_{filter='percentile_filter', fooprint=True, ksize=17, percentile=25, shape=(20, 21)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_8_{filter='percentile_filter', fooprint=False, ksize=16, percentile=-25, shape=(20, 21)}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_9_{filter='percentile_filter', fooprint=False, ksize=17, percentile=-25, shape=(20, 21)}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_10_{filter='percentile_filter', fooprint=True, ksize=16, percentile=-25, shape=(20, 21)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_11_{filter='percentile_filter', fooprint=True, ksize=17, percentile=-25, shape=(20, 21)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_12_{filter='rank_filter', fooprint=False, ksize=16, rank=1, shape=(20, 21)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_13_{filter='rank_filter', fooprint=False, ksize=17, rank=1, shape=(20, 21)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_14_{filter='rank_filter', fooprint=True, ksize=16, rank=1, shape=(20, 21)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestShellSort::test_filter[_param_15_{filter='rank_filter', fooprint=True, ksize=17, rank=1, shape=(20, 21)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_0_{dtype=uint8, filter='convolve', ksize=3, order='F', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_1_{dtype=uint8, filter='convolve', ksize=3, order='F', shape=(3, 4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_2_{dtype=uint8, filter='convolve', ksize=4, order='F', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_3_{dtype=uint8, filter='convolve', ksize=4, order='F', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_4_{dtype=float64, filter='convolve', ksize=3, order='F', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_5_{dtype=float64, filter='convolve', ksize=3, order='F', shape=(3, 4, 5)}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_6_{dtype=float64, filter='convolve', ksize=4, order='F', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_7_{dtype=float64, filter='convolve', ksize=4, order='F', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_8_{dtype=uint8, filter='correlate', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_9_{dtype=uint8, filter='correlate', ksize=3, order='F', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_10_{dtype=uint8, filter='correlate', ksize=4, order='F', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_11_{dtype=uint8, filter='correlate', ksize=4, order='F', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_12_{dtype=float64, filter='correlate', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_13_{dtype=float64, filter='correlate', ksize=3, order='F', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_14_{dtype=float64, filter='correlate', ksize=4, order='F', shape=(4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_15_{dtype=float64, filter='correlate', ksize=4, order='F', shape=(3, 4, 5)}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_16_{dtype=uint8, filter='minimum_filter', ksize=3, order='F', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_17_{dtype=uint8, filter='minimum_filter', ksize=3, order='F', shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_18_{dtype=uint8, filter='minimum_filter', ksize=4, order='F', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_19_{dtype=uint8, filter='minimum_filter', ksize=4, order='F', shape=(3, 4, 5)}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_20_{dtype=float64, filter='minimum_filter', ksize=3, order='F', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_21_{dtype=float64, filter='minimum_filter', ksize=3, order='F', shape=(3, 4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_22_{dtype=float64, filter='minimum_filter', ksize=4, order='F', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_23_{dtype=float64, filter='minimum_filter', ksize=4, order='F', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_24_{dtype=uint8, filter='maximum_filter', ksize=3, order='F', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_25_{dtype=uint8, filter='maximum_filter', ksize=3, order='F', shape=(3, 4, 5)}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_26_{dtype=uint8, filter='maximum_filter', ksize=4, order='F', shape=(4, 5)}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_27_{dtype=uint8, filter='maximum_filter', ksize=4, order='F', shape=(3, 4, 5)}] | 0.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_28_{dtype=float64, filter='maximum_filter', ksize=3, order='F', shape=(4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_29_{dtype=float64, filter='maximum_filter', ksize=3, order='F', shape=(3, 4, 5)}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_30_{dtype=float64, filter='maximum_filter', ksize=4, order='F', shape=(4, 5)}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_31_{dtype=float64, filter='maximum_filter', ksize=4, order='F', shape=(3, 4, 5)}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_32_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_33_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_34_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_35_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_36_{axis=0, dtype=float64, filter='convolve1d', ksize=3, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_37_{axis=0, dtype=float64, filter='convolve1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_38_{axis=0, dtype=float64, filter='convolve1d', ksize=4, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_39_{axis=0, dtype=float64, filter='convolve1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_40_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_41_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_42_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, order='F', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_43_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_44_{axis=0, dtype=float64, filter='correlate1d', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_45_{axis=0, dtype=float64, filter='correlate1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_46_{axis=0, dtype=float64, filter='correlate1d', ksize=4, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_47_{axis=0, dtype=float64, filter='correlate1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_48_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_49_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_50_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_51_{axis=0, dtype=uint8, filter='minimum_filter1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_52_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_53_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_54_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, order='F', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_55_{axis=0, dtype=float64, filter='minimum_filter1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_56_{axis=0, dtype=uint8, filter='maximum_filter1d', ksize=3, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_57_{axis=0, dtype=uint8, filter='maximum_filter1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_58_{axis=0, dtype=uint8, filter='maximum_filter1d', ksize=4, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_59_{axis=0, dtype=uint8, filter='maximum_filter1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_60_{axis=0, dtype=float64, filter='maximum_filter1d', ksize=3, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_61_{axis=0, dtype=float64, filter='maximum_filter1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_62_{axis=0, dtype=float64, filter='maximum_filter1d', ksize=4, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_63_{axis=0, dtype=float64, filter='maximum_filter1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_64_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_65_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_66_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, order='F', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_67_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_68_{axis=1, dtype=float64, filter='convolve1d', ksize=3, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_69_{axis=1, dtype=float64, filter='convolve1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_70_{axis=1, dtype=float64, filter='convolve1d', ksize=4, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_71_{axis=1, dtype=float64, filter='convolve1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_72_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_73_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_74_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_75_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_76_{axis=1, dtype=float64, filter='correlate1d', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_77_{axis=1, dtype=float64, filter='correlate1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_78_{axis=1, dtype=float64, filter='correlate1d', ksize=4, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_79_{axis=1, dtype=float64, filter='correlate1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_80_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_81_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_82_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, order='F', shape=(4, 5)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_83_{axis=1, dtype=uint8, filter='minimum_filter1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_84_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_85_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_86_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_87_{axis=1, dtype=float64, filter='minimum_filter1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_88_{axis=1, dtype=uint8, filter='maximum_filter1d', ksize=3, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_89_{axis=1, dtype=uint8, filter='maximum_filter1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_90_{axis=1, dtype=uint8, filter='maximum_filter1d', ksize=4, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_91_{axis=1, dtype=uint8, filter='maximum_filter1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_92_{axis=1, dtype=float64, filter='maximum_filter1d', ksize=3, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_93_{axis=1, dtype=float64, filter='maximum_filter1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_94_{axis=1, dtype=float64, filter='maximum_filter1d', ksize=4, order='F', shape=(4, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_95_{axis=1, dtype=float64, filter='maximum_filter1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_96_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_97_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_98_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_99_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_100_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_101_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_102_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_103_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_104_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_105_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_106_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_107_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_108_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_109_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_110_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_111_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_112_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_113_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_114_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_115_{axis=-1, dtype=uint8, filter='minimum_filter1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_116_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_117_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_118_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_119_{axis=-1, dtype=float64, filter='minimum_filter1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_120_{axis=-1, dtype=uint8, filter='maximum_filter1d', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_121_{axis=-1, dtype=uint8, filter='maximum_filter1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_122_{axis=-1, dtype=uint8, filter='maximum_filter1d', ksize=4, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_123_{axis=-1, dtype=uint8, filter='maximum_filter1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_124_{axis=-1, dtype=float64, filter='maximum_filter1d', ksize=3, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_125_{axis=-1, dtype=float64, filter='maximum_filter1d', ksize=3, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_126_{axis=-1, dtype=float64, filter='maximum_filter1d', ksize=4, order='F', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestFortranOrder::test_filter[_param_127_{axis=-1, dtype=float64, filter='maximum_filter1d', ksize=4, order='F', shape=(3, 4, 5)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_3_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_5_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_7_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_9_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_11_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_13_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_15_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_17_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_19_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_21_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_23_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_25_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_27_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_29_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_31_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_33_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_35_{dtype=uint8, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_36_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_37_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_38_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_39_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_40_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_41_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_42_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_43_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_44_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_45_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_46_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_47_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_48_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_49_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_50_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_51_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_52_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_53_{dtype=int16, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_54_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_55_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_56_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_57_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_58_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_59_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_60_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_61_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_62_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_63_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_64_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_65_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_66_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_67_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_68_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_69_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_70_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_71_{dtype=int16, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_72_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_73_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_74_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_75_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_76_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_77_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_78_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_79_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_80_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_81_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_82_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_83_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_84_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_85_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_86_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_87_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_88_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_89_{dtype=int32, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_90_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_91_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_92_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_93_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_94_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_95_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_96_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_97_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_98_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_99_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_100_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_101_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_102_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_103_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_104_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_105_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_106_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_107_{dtype=int32, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_108_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_109_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_110_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_111_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_112_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_113_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_114_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_115_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_116_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_117_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_118_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_119_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_120_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_121_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_122_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_123_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_124_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_125_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_126_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_127_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_128_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_129_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_130_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_131_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_132_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_133_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_134_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_135_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_136_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_137_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_138_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_139_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_140_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_141_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_142_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_143_{dtype=float32, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 1.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_144_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_146_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_148_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_150_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_152_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_154_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_156_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_158_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_160_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_162_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_164_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_166_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_168_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_170_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_172_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_174_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_176_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_178_{dtype=float64, filter='convolve', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_181_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_183_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_185_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_187_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_189_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_191_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_193_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_195_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_197_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_199_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_201_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_203_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_205_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_207_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_209_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_211_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_213_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_215_{dtype=uint8, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_216_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_217_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_218_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_219_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_220_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_221_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_222_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_223_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_224_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_225_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_226_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_227_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_228_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_229_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_230_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_231_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_232_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_233_{dtype=int16, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_234_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_235_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_236_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_237_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_238_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_239_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_240_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_241_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_242_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_243_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_244_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_245_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_246_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_247_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_248_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_249_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_250_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_251_{dtype=int16, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_252_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_253_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_254_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_255_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_256_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_257_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_258_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_259_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_260_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_261_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_262_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_263_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_264_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_265_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_266_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_267_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_268_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_269_{dtype=int32, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_270_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_271_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_272_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_273_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_274_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_275_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_276_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_277_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_278_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_279_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_280_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_281_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_282_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_283_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_284_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_285_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_286_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_287_{dtype=int32, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_288_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_289_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_290_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_291_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_292_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_293_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_294_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_295_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_296_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_297_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_298_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_299_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_300_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_301_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_302_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_303_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_304_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_305_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_306_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_307_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_308_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_309_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_310_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_311_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_312_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_313_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_314_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_315_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_316_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_317_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_318_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_319_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_320_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_321_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_322_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_323_{dtype=float32, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 1.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_324_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_326_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_328_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_330_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_332_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_334_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_336_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_338_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_340_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_342_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_344_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_346_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_348_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_350_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_352_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_354_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_356_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_358_{dtype=float64, filter='correlate', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_361_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_363_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_365_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_367_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_369_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_371_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_373_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_375_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_377_{axis=0, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_379_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_381_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_383_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_385_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_387_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_389_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_391_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_393_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_395_{axis=0, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_396_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_397_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_398_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_399_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_400_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_401_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_402_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_403_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_404_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_405_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_406_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_407_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_408_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_409_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_410_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_411_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_412_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_413_{axis=0, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_414_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_415_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_416_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_417_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_418_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_419_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_420_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_421_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_422_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_423_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_424_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_425_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_426_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_427_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_428_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_429_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_430_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_431_{axis=0, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_432_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_433_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_434_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_435_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_436_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_437_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_438_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_439_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_440_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_441_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_442_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_443_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_444_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_445_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_446_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_447_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_448_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_449_{axis=0, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_450_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_451_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_452_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_453_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_454_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_455_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_456_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_457_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_458_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_459_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_460_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_461_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_462_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_463_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_464_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_465_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_466_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_467_{axis=0, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_468_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_469_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_470_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_471_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_472_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_473_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_474_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_475_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_476_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_477_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_478_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_479_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_480_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_481_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_482_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_483_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_484_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_485_{axis=0, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_486_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_487_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_488_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_489_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_490_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_491_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_492_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_493_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_494_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_495_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_496_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_497_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_498_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_499_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_500_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_501_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_502_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_503_{axis=0, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_504_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_506_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_508_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_510_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_512_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_514_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_516_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_518_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_520_{axis=0, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_522_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_524_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_526_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_528_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_530_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_532_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_534_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_536_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_538_{axis=0, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_541_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_543_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_545_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_547_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_549_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_551_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_553_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_555_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_557_{axis=0, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_559_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_561_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_563_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_565_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_567_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_569_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_571_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_573_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_575_{axis=0, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_576_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_577_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_578_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_579_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_580_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_581_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_582_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_583_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_584_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_585_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_586_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_587_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_588_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_589_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_590_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_591_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_592_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_593_{axis=0, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_594_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_595_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_596_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_597_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_598_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_599_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_600_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_601_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_602_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_603_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_604_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_605_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_606_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_607_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_608_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_609_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_610_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_611_{axis=0, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_612_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_613_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_614_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_615_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_616_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_617_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_618_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_619_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_620_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_621_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_622_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_623_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_624_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_625_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_626_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_627_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_628_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_629_{axis=0, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_630_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_631_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_632_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_633_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_634_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_635_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_636_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_637_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_638_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_639_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_640_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_641_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_642_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_643_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_644_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_645_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_646_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_647_{axis=0, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_648_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_649_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_650_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_651_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_652_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_653_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_654_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_655_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_656_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_657_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_658_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_659_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_660_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_661_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_662_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_663_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_664_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_665_{axis=0, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_666_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_667_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_668_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_669_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_670_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_671_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_672_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_673_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_674_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_675_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_676_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_677_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_678_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_679_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_680_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_681_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_682_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_683_{axis=0, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_684_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_686_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_688_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_690_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_692_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_694_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_696_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_698_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_700_{axis=0, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_702_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_704_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_706_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_708_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_710_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_712_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_714_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_716_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_718_{axis=0, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_721_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_723_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_725_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_727_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_729_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_731_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_733_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_735_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_737_{axis=1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_739_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_741_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_743_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_745_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_747_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_749_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_751_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_753_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_755_{axis=1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_756_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_757_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_758_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_759_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_760_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_761_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_762_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_763_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_764_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_765_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_766_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_767_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_768_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_769_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_770_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_771_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_772_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_773_{axis=1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_774_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_775_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_776_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_777_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_778_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_779_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_780_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_781_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_782_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_783_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_784_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_785_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_786_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_787_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_788_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_789_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_790_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_791_{axis=1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_792_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_793_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_794_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_795_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_796_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_797_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_798_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_799_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_800_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_801_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_802_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_803_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_804_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_805_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_806_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_807_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_808_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_809_{axis=1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_810_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_811_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_812_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_813_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_814_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_815_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_816_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_817_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_818_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_819_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_820_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_821_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_822_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_823_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_824_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_825_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_826_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_827_{axis=1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_828_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_829_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_830_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_831_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_832_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_833_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_834_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_835_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_836_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_837_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_838_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_839_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_840_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_841_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_842_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_843_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_844_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_845_{axis=1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_846_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_847_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_848_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_849_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_850_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_851_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_852_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_853_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_854_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_855_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_856_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_857_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_858_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_859_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_860_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_861_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_862_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_863_{axis=1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_864_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_866_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_868_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_870_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_872_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_874_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_876_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_878_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_880_{axis=1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_882_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_884_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_886_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_888_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_890_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_892_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_894_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_896_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_898_{axis=1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_901_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_903_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_905_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_907_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_909_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_911_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_913_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_915_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_917_{axis=1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_919_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_921_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_923_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_925_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_927_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_929_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_931_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_933_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_935_{axis=1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_936_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_937_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_938_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_939_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_940_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_941_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_942_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_943_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_944_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_945_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_946_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_947_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_948_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_949_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_950_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_951_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_952_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_953_{axis=1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_954_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_955_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_956_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_957_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_958_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_959_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_960_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_961_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_962_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_963_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_964_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_965_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_966_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_967_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_968_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_969_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_970_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_971_{axis=1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_972_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_973_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_974_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_975_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_976_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_977_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_978_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_979_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_980_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_981_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_982_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_983_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_984_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_985_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_986_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_987_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_988_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_989_{axis=1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_990_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_991_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_992_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_993_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_994_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_995_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_996_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_997_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_998_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_999_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1000_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1001_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1002_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1003_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1004_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1005_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1006_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1007_{axis=1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1008_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1009_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1010_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1011_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1012_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1013_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1014_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1015_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1016_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1017_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1018_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1019_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1020_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1021_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1022_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1023_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1024_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1025_{axis=1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1026_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1027_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1028_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1029_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1030_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1031_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1032_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1033_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1034_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1035_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1036_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1037_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1038_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1039_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1040_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1041_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1042_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1043_{axis=1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1044_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1046_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1048_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1050_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1052_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1054_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1056_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1058_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1060_{axis=1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1062_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1064_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1066_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1068_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1070_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1072_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1074_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1076_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1078_{axis=1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1081_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1083_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1085_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1087_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1089_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1091_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1093_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1095_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1097_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1099_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1101_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1103_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1105_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1107_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1109_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1111_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1113_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1115_{axis=-1, dtype=uint8, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1116_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1117_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1118_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1119_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1120_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1121_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1122_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1123_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1124_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1125_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1126_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1127_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1128_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1129_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1130_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1131_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1132_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1133_{axis=-1, dtype=int16, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1134_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1135_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1136_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1137_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1138_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1139_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1140_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1141_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1142_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1143_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1144_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1145_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1146_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1147_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1148_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1149_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1150_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1151_{axis=-1, dtype=int16, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1152_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1153_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1154_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1155_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1156_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1157_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1158_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1159_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1160_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1161_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1162_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1163_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1164_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1165_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1166_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1167_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1168_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1169_{axis=-1, dtype=int32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1170_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1171_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1172_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1173_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1174_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1175_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1176_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1177_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1178_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1179_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1180_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1181_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1182_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1183_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1184_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1185_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1186_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1187_{axis=-1, dtype=int32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1188_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1189_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1190_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1191_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1192_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1193_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1194_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1195_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1196_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1197_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1198_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1199_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1200_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1201_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1202_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1203_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1204_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1205_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1206_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1207_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1208_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1209_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1210_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1211_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1212_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1213_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1214_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1215_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1216_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1217_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1218_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1219_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1220_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1221_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1222_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1223_{axis=-1, dtype=float32, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1224_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1226_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1228_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1230_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1232_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1234_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1236_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1238_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1240_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1242_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1244_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1246_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1248_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1250_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1252_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1254_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1256_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1258_{axis=-1, dtype=float64, filter='convolve1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1261_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1263_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1265_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1267_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1269_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1271_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1273_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1275_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1277_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1279_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1281_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1283_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1285_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1287_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1289_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1291_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1293_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1295_{axis=-1, dtype=uint8, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1296_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1297_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1298_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1299_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1300_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1301_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1302_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1303_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1304_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1305_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1306_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1307_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1308_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1309_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1310_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1311_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1312_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1313_{axis=-1, dtype=int16, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1314_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1315_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1316_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1317_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1318_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1319_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1320_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1321_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1322_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1323_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1324_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1325_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1326_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1327_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1328_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1329_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1330_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1331_{axis=-1, dtype=int16, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1332_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1333_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1334_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1335_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1336_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1337_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1338_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1339_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1340_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1341_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1342_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1343_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1344_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1345_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1346_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1347_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1348_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1349_{axis=-1, dtype=int32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1350_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1351_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1352_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1353_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1354_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1355_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1356_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1357_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1358_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1359_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1360_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1361_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1362_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1363_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1364_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1365_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1366_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1367_{axis=-1, dtype=int32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1368_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1369_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1370_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1371_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1372_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1373_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1374_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1375_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1376_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1377_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1378_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1379_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1380_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1381_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1382_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1383_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1384_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1385_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1386_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1387_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1388_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1389_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1390_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1391_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1392_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1393_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1394_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1395_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1396_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1397_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1398_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1399_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1400_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1401_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1402_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1403_{axis=-1, dtype=float32, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1404_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1406_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1408_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1410_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1412_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1414_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1416_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1418_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1420_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1422_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1424_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1426_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=None, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1428_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1430_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1432_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=uint8, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1434_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1436_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightDtype::test_filter[_param_1438_{axis=-1, dtype=float64, filter='correlate1d', ksize=4, mode='reflect', output=float64, shape=(1, 3, 4, 5), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_3_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_4_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_8_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_9_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_13_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_14_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_15_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_16_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_17_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_18_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_19_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_20_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_21_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_22_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_23_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_24_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_28_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_29_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_33_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_34_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_38_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_39_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_40_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_41_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_42_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_43_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_44_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_45_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_46_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_47_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_48_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_49_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_53_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_54_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_58_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_59_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_63_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_64_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_65_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_66_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_67_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_68_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_69_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_70_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_71_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_72_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_73_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_74_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_78_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_79_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_83_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_84_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_88_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_89_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_90_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_91_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_92_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_93_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_94_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_95_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_96_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_97_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_98_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex[_param_99_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_3_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_4_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_8_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_9_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_13_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_14_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_15_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_16_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_17_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_18_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_19_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_20_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_21_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_22_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_23_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_24_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_28_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_29_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_33_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_34_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_38_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_39_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_40_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_41_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_42_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_43_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_44_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_45_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_46_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_47_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_48_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_49_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_53_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_54_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_58_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_59_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_63_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_64_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_65_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_66_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_67_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_68_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_69_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_70_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_71_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_72_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_73_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_74_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_78_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_79_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_83_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_84_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_88_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_89_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_90_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_91_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_92_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_93_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_94_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_95_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_96_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_97_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_98_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_error[_param_99_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_3_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_4_{dtype=uint8, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_8_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_9_{dtype=float32, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_13_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_14_{dtype=float64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_15_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_16_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_17_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_18_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_19_{dtype=complex64, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_20_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_21_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_22_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_23_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_24_{dtype=complex128, filter='convolve', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_28_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_29_{dtype=uint8, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_33_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_34_{dtype=float32, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_38_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_39_{dtype=float64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_40_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_41_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_42_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_43_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_44_{dtype=complex64, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_45_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_46_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_47_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_48_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_49_{dtype=complex128, filter='correlate', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_53_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_54_{axis=-1, dtype=uint8, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_58_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_59_{axis=-1, dtype=float32, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_63_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_64_{axis=-1, dtype=float64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_65_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_66_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_67_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_68_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_69_{axis=-1, dtype=complex64, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_70_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_71_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_72_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_73_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_74_{axis=-1, dtype=complex128, filter='convolve1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_78_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_79_{axis=-1, dtype=uint8, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_83_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_84_{axis=-1, dtype=float32, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_88_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_89_{axis=-1, dtype=float64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_90_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_91_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_92_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_93_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_94_{axis=-1, dtype=complex64, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_95_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_96_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_97_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_98_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestWeightComplexDtype::test_filter_complex_output_dtype_warns[_param_99_{axis=-1, dtype=complex128, filter='correlate1d', ksize=3, mode='reflect', output=None, shape=(8, 12), wdtype=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_0_{dtype=uint8, filter='convolve', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_1_{dtype=uint8, filter='convolve', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_2_{dtype=uint8, filter='correlate', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_3_{dtype=uint8, filter='correlate', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_4_{dtype=uint8, filter='minimum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_5_{dtype=uint8, filter='minimum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_6_{dtype=uint8, filter='maximum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_7_{dtype=uint8, filter='maximum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_8_{dtype=float64, filter='convolve', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_9_{dtype=float64, filter='convolve', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_10_{dtype=float64, filter='correlate', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_11_{dtype=float64, filter='correlate', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_12_{dtype=float64, filter='minimum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_13_{dtype=float64, filter='minimum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_14_{dtype=float64, filter='maximum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_0_dim[_param_15_{dtype=float64, filter='maximum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_0_{dtype=uint8, filter='convolve', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_1_{dtype=uint8, filter='convolve', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_2_{dtype=uint8, filter='correlate', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_3_{dtype=uint8, filter='correlate', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_4_{dtype=uint8, filter='minimum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_5_{dtype=uint8, filter='minimum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_6_{dtype=uint8, filter='maximum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_7_{dtype=uint8, filter='maximum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_8_{dtype=float64, filter='convolve', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_9_{dtype=float64, filter='convolve', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_10_{dtype=float64, filter='correlate', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_11_{dtype=float64, filter='correlate', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_12_{dtype=float64, filter='minimum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_13_{dtype=float64, filter='minimum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_14_{dtype=float64, filter='maximum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_missing_dim[_param_15_{dtype=float64, filter='maximum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_0_{dtype=uint8, filter='convolve', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_1_{dtype=uint8, filter='convolve', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_2_{dtype=uint8, filter='correlate', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_3_{dtype=uint8, filter='correlate', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_4_{dtype=uint8, filter='minimum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_5_{dtype=uint8, filter='minimum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_6_{dtype=uint8, filter='maximum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_7_{dtype=uint8, filter='maximum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_8_{dtype=float64, filter='convolve', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_9_{dtype=float64, filter='convolve', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_10_{dtype=float64, filter='correlate', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_11_{dtype=float64, filter='correlate', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_12_{dtype=float64, filter='minimum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_13_{dtype=float64, filter='minimum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_14_{dtype=float64, filter='maximum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_extra_dim[_param_15_{dtype=float64, filter='maximum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_0_{dtype=uint8, filter='convolve', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_1_{dtype=uint8, filter='convolve', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_2_{dtype=uint8, filter='correlate', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_3_{dtype=uint8, filter='correlate', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_4_{dtype=uint8, filter='minimum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_5_{dtype=uint8, filter='minimum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_6_{dtype=uint8, filter='maximum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_7_{dtype=uint8, filter='maximum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_8_{dtype=float64, filter='convolve', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_9_{dtype=float64, filter='convolve', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_10_{dtype=float64, filter='correlate', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_11_{dtype=float64, filter='correlate', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_12_{dtype=float64, filter='minimum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_13_{dtype=float64, filter='minimum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_14_{dtype=float64, filter='maximum_filter', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialWeightCases::test_replace_dim_with_0[_param_15_{dtype=float64, filter='maximum_filter', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_0_{dtype=uint8, filter='convolve1d', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_1_{dtype=uint8, filter='convolve1d', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_2_{dtype=uint8, filter='correlate1d', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_3_{dtype=uint8, filter='correlate1d', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_4_{dtype=uint8, filter='minimum_filter1d', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_5_{dtype=uint8, filter='minimum_filter1d', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_6_{dtype=uint8, filter='maximum_filter1d', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_7_{dtype=uint8, filter='maximum_filter1d', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_8_{dtype=float64, filter='convolve1d', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_9_{dtype=float64, filter='convolve1d', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_10_{dtype=float64, filter='correlate1d', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_11_{dtype=float64, filter='correlate1d', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_12_{dtype=float64, filter='minimum_filter1d', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_13_{dtype=float64, filter='minimum_filter1d', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_14_{dtype=float64, filter='maximum_filter1d', shape=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestSpecialCases1D::test_0_dim[_param_15_{dtype=float64, filter='maximum_filter1d', shape=(3, 3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_pos[_param_0_{filter='convolve1d', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_pos[_param_1_{filter='convolve1d', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_pos[_param_2_{filter='convolve1d', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_pos[_param_3_{filter='correlate1d', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_pos[_param_4_{filter='correlate1d', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_pos[_param_5_{filter='correlate1d', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_pos[_param_6_{filter='minimum_filter1d', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_pos[_param_7_{filter='minimum_filter1d', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_pos[_param_8_{filter='minimum_filter1d', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_pos[_param_9_{filter='maximum_filter1d', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_pos[_param_10_{filter='maximum_filter1d', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_pos[_param_11_{filter='maximum_filter1d', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_neg[_param_0_{filter='convolve1d', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_neg[_param_1_{filter='convolve1d', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_neg[_param_2_{filter='convolve1d', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_neg[_param_3_{filter='correlate1d', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_neg[_param_4_{filter='correlate1d', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_neg[_param_5_{filter='correlate1d', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_neg[_param_6_{filter='minimum_filter1d', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_neg[_param_7_{filter='minimum_filter1d', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_neg[_param_8_{filter='minimum_filter1d', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_neg[_param_9_{filter='maximum_filter1d', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_neg[_param_10_{filter='maximum_filter1d', shape=(3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidAxis::test_invalid_axis_neg[_param_11_{filter='maximum_filter1d', shape=(1, 3, 4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidMode::test_invalid_mode[_param_0_{filter='convolve', mode='unknown', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidMode::test_invalid_mode[_param_1_{filter='correlate', mode='unknown', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidMode::test_invalid_mode[_param_2_{filter='convolve1d', mode='unknown', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidMode::test_invalid_mode[_param_3_{filter='correlate1d', mode='unknown', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidMode::test_invalid_mode[_param_4_{filter='minimum_filter', mode='unknown', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidMode::test_invalid_mode[_param_5_{filter='maximum_filter', mode='unknown', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidMode::test_invalid_mode[_param_6_{filter='minimum_filter1d', mode='unknown', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidMode::test_invalid_mode[_param_7_{filter='maximum_filter1d', mode='unknown', shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_0_{dtype=float64, filter='convolve', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_1_{dtype=float64, filter='convolve', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_2_{dtype=float64, filter='correlate', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_3_{dtype=float64, filter='correlate', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_4_{dtype=float64, filter='convolve1d', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_5_{dtype=float64, filter='convolve1d', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_6_{dtype=float64, filter='correlate1d', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_7_{dtype=float64, filter='correlate1d', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_8_{dtype=float64, filter='minimum_filter', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_9_{dtype=float64, filter='minimum_filter', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_10_{dtype=float64, filter='maximum_filter', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_11_{dtype=float64, filter='maximum_filter', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_12_{dtype=float64, filter='minimum_filter1d', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_13_{dtype=float64, filter='minimum_filter1d', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_14_{dtype=float64, filter='maximum_filter1d', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_neg[_param_15_{dtype=float64, filter='maximum_filter1d', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_0_{dtype=float64, filter='convolve', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_1_{dtype=float64, filter='convolve', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_2_{dtype=float64, filter='correlate', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_3_{dtype=float64, filter='correlate', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_4_{dtype=float64, filter='convolve1d', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_5_{dtype=float64, filter='convolve1d', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_6_{dtype=float64, filter='correlate1d', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_7_{dtype=float64, filter='correlate1d', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_8_{dtype=float64, filter='minimum_filter', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_9_{dtype=float64, filter='minimum_filter', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_10_{dtype=float64, filter='maximum_filter', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_11_{dtype=float64, filter='maximum_filter', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_12_{dtype=float64, filter='minimum_filter1d', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_13_{dtype=float64, filter='minimum_filter1d', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_14_{dtype=float64, filter='maximum_filter1d', ksize=3, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py::TestInvalidOrigin::test_invalid_origin_pos[_param_15_{dtype=float64, filter='maximum_filter1d', ksize=4, shape=(4, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_0_{dtype=float32, shape=(32, 16), shift=1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_1_{dtype=float32, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_2_{dtype=float32, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_3_{dtype=float32, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_4_{dtype=float32, shape=(31, 15), shift=1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_5_{dtype=float32, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_6_{dtype=float32, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_7_{dtype=float32, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_8_{dtype=float64, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_9_{dtype=float64, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_10_{dtype=float64, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_11_{dtype=float64, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_12_{dtype=float64, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_13_{dtype=float64, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_14_{dtype=float64, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_15_{dtype=float64, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_16_{dtype=complex64, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_17_{dtype=complex64, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_18_{dtype=complex64, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_19_{dtype=complex64, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_20_{dtype=complex64, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_21_{dtype=complex64, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_22_{dtype=complex64, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_23_{dtype=complex64, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_24_{dtype=complex128, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_25_{dtype=complex128, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_26_{dtype=complex128, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_27_{dtype=complex128, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_28_{dtype=complex128, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_29_{dtype=complex128, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_30_{dtype=complex128, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_31_{dtype=complex128, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_32_{dtype=float32, shape=(5, 16, 7), shift=3}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_33_{dtype=float32, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_34_{dtype=float64, shape=(5, 16, 7), shift=3}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_35_{dtype=float64, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_36_{dtype=complex64, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_37_{dtype=complex64, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_38_{dtype=complex128, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_39_{dtype=complex128, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_40_{dtype=float32, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_41_{dtype=float32, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_42_{dtype=float64, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_43_{dtype=float64, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_44_{dtype=complex64, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_45_{dtype=complex64, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_46_{dtype=complex128, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis0[_param_47_{dtype=complex128, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_0_{dtype=float32, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_1_{dtype=float32, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_2_{dtype=float32, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_3_{dtype=float32, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_4_{dtype=float32, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_5_{dtype=float32, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_6_{dtype=float32, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_7_{dtype=float32, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_8_{dtype=float64, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_9_{dtype=float64, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_10_{dtype=float64, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_11_{dtype=float64, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_12_{dtype=float64, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_13_{dtype=float64, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_14_{dtype=float64, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_15_{dtype=float64, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_16_{dtype=complex64, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_17_{dtype=complex64, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_18_{dtype=complex64, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_19_{dtype=complex64, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_20_{dtype=complex64, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_21_{dtype=complex64, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_22_{dtype=complex64, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_23_{dtype=complex64, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_24_{dtype=complex128, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_25_{dtype=complex128, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_26_{dtype=complex128, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_27_{dtype=complex128, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_28_{dtype=complex128, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_29_{dtype=complex128, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_30_{dtype=complex128, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_31_{dtype=complex128, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_32_{dtype=float32, shape=(5, 16, 7), shift=3}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_33_{dtype=float32, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_34_{dtype=float64, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_35_{dtype=float64, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_36_{dtype=complex64, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_37_{dtype=complex64, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_38_{dtype=complex128, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_39_{dtype=complex128, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_40_{dtype=float32, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_41_{dtype=float32, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_42_{dtype=float64, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_43_{dtype=float64, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_44_{dtype=complex64, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_45_{dtype=complex64, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_46_{dtype=complex128, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_real_fft_axis1[_param_47_{dtype=complex128, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_0_{dtype=float32, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_1_{dtype=float32, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_2_{dtype=float32, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_3_{dtype=float32, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_4_{dtype=float32, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_5_{dtype=float32, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_6_{dtype=float32, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_7_{dtype=float32, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_8_{dtype=float64, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_9_{dtype=float64, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_10_{dtype=float64, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_11_{dtype=float64, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_12_{dtype=float64, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_13_{dtype=float64, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_14_{dtype=float64, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_15_{dtype=float64, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_16_{dtype=complex64, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_17_{dtype=complex64, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_18_{dtype=complex64, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_19_{dtype=complex64, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_20_{dtype=complex64, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_21_{dtype=complex64, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_22_{dtype=complex64, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_23_{dtype=complex64, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_24_{dtype=complex128, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_25_{dtype=complex128, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_26_{dtype=complex128, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_27_{dtype=complex128, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_28_{dtype=complex128, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_29_{dtype=complex128, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_30_{dtype=complex128, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_31_{dtype=complex128, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_32_{dtype=float32, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_33_{dtype=float32, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_34_{dtype=float64, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_35_{dtype=float64, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_36_{dtype=complex64, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_37_{dtype=complex64, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_38_{dtype=complex128, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_39_{dtype=complex128, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_40_{dtype=float32, shape=(15,), shift=8.5}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_41_{dtype=float32, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_42_{dtype=float64, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_43_{dtype=float64, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_44_{dtype=complex64, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_45_{dtype=complex64, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_46_{dtype=complex128, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft[_param_47_{dtype=complex128, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_0_{dtype=float32, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_1_{dtype=float32, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_2_{dtype=float32, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_3_{dtype=float32, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_4_{dtype=float32, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_5_{dtype=float32, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_6_{dtype=float32, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_7_{dtype=float32, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_8_{dtype=float64, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_9_{dtype=float64, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_10_{dtype=float64, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_11_{dtype=float64, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_12_{dtype=float64, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_13_{dtype=float64, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_14_{dtype=float64, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_15_{dtype=float64, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_16_{dtype=complex64, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_17_{dtype=complex64, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_18_{dtype=complex64, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_19_{dtype=complex64, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_20_{dtype=complex64, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_21_{dtype=complex64, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_22_{dtype=complex64, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_23_{dtype=complex64, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_24_{dtype=complex128, shape=(32, 16), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_25_{dtype=complex128, shape=(32, 16), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_26_{dtype=complex128, shape=(32, 16), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_27_{dtype=complex128, shape=(32, 16), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_28_{dtype=complex128, shape=(31, 15), shift=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_29_{dtype=complex128, shape=(31, 15), shift=-3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_30_{dtype=complex128, shape=(31, 15), shift=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_31_{dtype=complex128, shape=(31, 15), shift=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_32_{dtype=float32, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_33_{dtype=float32, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_34_{dtype=float64, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_35_{dtype=float64, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_36_{dtype=complex64, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_37_{dtype=complex64, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_38_{dtype=complex128, shape=(5, 16, 7), shift=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_39_{dtype=complex128, shape=(5, 16, 7), shift=(-1, 2.5, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_40_{dtype=float32, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_41_{dtype=float32, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_42_{dtype=float64, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_43_{dtype=float64, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_44_{dtype=complex64, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_45_{dtype=complex64, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_46_{dtype=complex128, shape=(15,), shift=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierShift::test_complex_fft_with_output[_param_47_{dtype=complex128, shape=(15,), shift=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_0_{dtype=float32, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_1_{dtype=float32, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_2_{dtype=float32, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_3_{dtype=float32, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_4_{dtype=float32, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_5_{dtype=float32, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_6_{dtype=float64, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_7_{dtype=float64, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_8_{dtype=float64, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_9_{dtype=float64, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_10_{dtype=float64, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_11_{dtype=float64, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_12_{dtype=complex64, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_13_{dtype=complex64, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_14_{dtype=complex64, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_15_{dtype=complex64, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_16_{dtype=complex64, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_17_{dtype=complex64, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_18_{dtype=complex128, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_19_{dtype=complex128, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_20_{dtype=complex128, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_21_{dtype=complex128, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_22_{dtype=complex128, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_23_{dtype=complex128, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_24_{dtype=float32, shape=(5, 16, 7), sigma=3}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_25_{dtype=float32, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_26_{dtype=float64, shape=(5, 16, 7), sigma=3}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_27_{dtype=float64, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_28_{dtype=complex64, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_29_{dtype=complex64, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_30_{dtype=complex128, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_31_{dtype=complex128, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_32_{dtype=float32, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_33_{dtype=float32, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_34_{dtype=float64, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_35_{dtype=float64, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_36_{dtype=complex64, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_37_{dtype=complex64, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_38_{dtype=complex128, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis0[_param_39_{dtype=complex128, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_0_{dtype=float32, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_1_{dtype=float32, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_2_{dtype=float32, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_3_{dtype=float32, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_4_{dtype=float32, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_5_{dtype=float32, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_6_{dtype=float64, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_7_{dtype=float64, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_8_{dtype=float64, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_9_{dtype=float64, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_10_{dtype=float64, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_11_{dtype=float64, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_12_{dtype=complex64, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_13_{dtype=complex64, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_14_{dtype=complex64, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_15_{dtype=complex64, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_16_{dtype=complex64, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_17_{dtype=complex64, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_18_{dtype=complex128, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_19_{dtype=complex128, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_20_{dtype=complex128, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_21_{dtype=complex128, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_22_{dtype=complex128, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_23_{dtype=complex128, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_24_{dtype=float32, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_25_{dtype=float32, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_26_{dtype=float64, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_27_{dtype=float64, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_28_{dtype=complex64, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_29_{dtype=complex64, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_30_{dtype=complex128, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_31_{dtype=complex128, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_32_{dtype=float32, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_33_{dtype=float32, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_34_{dtype=float64, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_35_{dtype=float64, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_36_{dtype=complex64, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_37_{dtype=complex64, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_38_{dtype=complex128, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_real_fft_axis1[_param_39_{dtype=complex128, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_0_{dtype=float32, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_1_{dtype=float32, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_2_{dtype=float32, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_3_{dtype=float32, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_4_{dtype=float32, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_5_{dtype=float32, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_6_{dtype=float64, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_7_{dtype=float64, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_8_{dtype=float64, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_9_{dtype=float64, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_10_{dtype=float64, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_11_{dtype=float64, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_12_{dtype=complex64, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_13_{dtype=complex64, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_14_{dtype=complex64, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_15_{dtype=complex64, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_16_{dtype=complex64, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_17_{dtype=complex64, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_18_{dtype=complex128, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_19_{dtype=complex128, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_20_{dtype=complex128, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_21_{dtype=complex128, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_22_{dtype=complex128, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_23_{dtype=complex128, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_24_{dtype=float32, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_25_{dtype=float32, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_26_{dtype=float64, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_27_{dtype=float64, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_28_{dtype=complex64, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_29_{dtype=complex64, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_30_{dtype=complex128, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_31_{dtype=complex128, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_32_{dtype=float32, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_33_{dtype=float32, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_34_{dtype=float64, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_35_{dtype=float64, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_36_{dtype=complex64, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_37_{dtype=complex64, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_38_{dtype=complex128, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft[_param_39_{dtype=complex128, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_0_{dtype=float32, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_1_{dtype=float32, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_2_{dtype=float32, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_3_{dtype=float32, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_4_{dtype=float32, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_5_{dtype=float32, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_6_{dtype=float64, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_7_{dtype=float64, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_8_{dtype=float64, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_9_{dtype=float64, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_10_{dtype=float64, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_11_{dtype=float64, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_12_{dtype=complex64, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_13_{dtype=complex64, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_14_{dtype=complex64, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_15_{dtype=complex64, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_16_{dtype=complex64, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_17_{dtype=complex64, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_18_{dtype=complex128, shape=(32, 16), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_19_{dtype=complex128, shape=(32, 16), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_20_{dtype=complex128, shape=(32, 16), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_21_{dtype=complex128, shape=(31, 15), sigma=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_22_{dtype=complex128, shape=(31, 15), sigma=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_23_{dtype=complex128, shape=(31, 15), sigma=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_24_{dtype=float32, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_25_{dtype=float32, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_26_{dtype=float64, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_27_{dtype=float64, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_28_{dtype=complex64, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_29_{dtype=complex64, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_30_{dtype=complex128, shape=(5, 16, 7), sigma=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_31_{dtype=complex128, shape=(5, 16, 7), sigma=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_32_{dtype=float32, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_33_{dtype=float32, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_34_{dtype=float64, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_35_{dtype=float64, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_36_{dtype=complex64, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_37_{dtype=complex64, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_38_{dtype=complex128, shape=(15,), sigma=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierGaussian::test_complex_fft_with_output[_param_39_{dtype=complex128, shape=(15,), sigma=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_0_{dtype=float32, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_1_{dtype=float32, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_2_{dtype=float32, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_3_{dtype=float32, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_4_{dtype=float32, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_5_{dtype=float32, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_6_{dtype=float64, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_7_{dtype=float64, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_8_{dtype=float64, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_9_{dtype=float64, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_10_{dtype=float64, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_11_{dtype=float64, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_12_{dtype=complex64, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_13_{dtype=complex64, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_14_{dtype=complex64, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_15_{dtype=complex64, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_16_{dtype=complex64, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_17_{dtype=complex64, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_18_{dtype=complex128, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_19_{dtype=complex128, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_20_{dtype=complex128, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_21_{dtype=complex128, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_22_{dtype=complex128, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_23_{dtype=complex128, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_24_{dtype=float32, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_25_{dtype=float32, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_26_{dtype=float64, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_27_{dtype=float64, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_28_{dtype=complex64, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_29_{dtype=complex64, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_30_{dtype=complex128, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_31_{dtype=complex128, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_32_{dtype=float32, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_33_{dtype=float32, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_34_{dtype=float64, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_35_{dtype=float64, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_36_{dtype=complex64, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_37_{dtype=complex64, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_38_{dtype=complex128, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis0[_param_39_{dtype=complex128, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_0_{dtype=float32, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_1_{dtype=float32, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_2_{dtype=float32, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_3_{dtype=float32, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_4_{dtype=float32, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_5_{dtype=float32, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_6_{dtype=float64, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_7_{dtype=float64, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_8_{dtype=float64, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_9_{dtype=float64, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_10_{dtype=float64, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_11_{dtype=float64, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_12_{dtype=complex64, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_13_{dtype=complex64, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_14_{dtype=complex64, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_15_{dtype=complex64, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_16_{dtype=complex64, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_17_{dtype=complex64, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_18_{dtype=complex128, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_19_{dtype=complex128, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_20_{dtype=complex128, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_21_{dtype=complex128, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_22_{dtype=complex128, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_23_{dtype=complex128, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_24_{dtype=float32, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_25_{dtype=float32, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_26_{dtype=float64, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_27_{dtype=float64, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_28_{dtype=complex64, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_29_{dtype=complex64, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_30_{dtype=complex128, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_31_{dtype=complex128, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_32_{dtype=float32, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_33_{dtype=float32, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_34_{dtype=float64, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_35_{dtype=float64, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_36_{dtype=complex64, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_37_{dtype=complex64, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_38_{dtype=complex128, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_real_fft_axis1[_param_39_{dtype=complex128, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_0_{dtype=float32, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_1_{dtype=float32, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_2_{dtype=float32, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_3_{dtype=float32, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_4_{dtype=float32, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_5_{dtype=float32, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_6_{dtype=float64, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_7_{dtype=float64, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_8_{dtype=float64, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_9_{dtype=float64, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_10_{dtype=float64, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_11_{dtype=float64, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_12_{dtype=complex64, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_13_{dtype=complex64, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_14_{dtype=complex64, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_15_{dtype=complex64, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_16_{dtype=complex64, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_17_{dtype=complex64, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_18_{dtype=complex128, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_19_{dtype=complex128, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_20_{dtype=complex128, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_21_{dtype=complex128, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_22_{dtype=complex128, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_23_{dtype=complex128, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_24_{dtype=float32, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_25_{dtype=float32, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_26_{dtype=float64, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_27_{dtype=float64, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_28_{dtype=complex64, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_29_{dtype=complex64, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_30_{dtype=complex128, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_31_{dtype=complex128, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_32_{dtype=float32, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_33_{dtype=float32, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_34_{dtype=float64, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_35_{dtype=float64, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_36_{dtype=complex64, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_37_{dtype=complex64, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_38_{dtype=complex128, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft[_param_39_{dtype=complex128, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_0_{dtype=float32, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_1_{dtype=float32, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_2_{dtype=float32, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_3_{dtype=float32, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_4_{dtype=float32, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_5_{dtype=float32, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_6_{dtype=float64, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_7_{dtype=float64, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_8_{dtype=float64, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_9_{dtype=float64, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_10_{dtype=float64, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_11_{dtype=float64, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_12_{dtype=complex64, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_13_{dtype=complex64, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_14_{dtype=complex64, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_15_{dtype=complex64, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_16_{dtype=complex64, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_17_{dtype=complex64, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_18_{dtype=complex128, shape=(32, 16), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_19_{dtype=complex128, shape=(32, 16), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_20_{dtype=complex128, shape=(32, 16), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_21_{dtype=complex128, shape=(31, 15), size=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_22_{dtype=complex128, shape=(31, 15), size=(5, 5.3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_23_{dtype=complex128, shape=(31, 15), size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_24_{dtype=float32, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_25_{dtype=float32, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_26_{dtype=float64, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_27_{dtype=float64, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_28_{dtype=complex64, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_29_{dtype=complex64, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_30_{dtype=complex128, shape=(5, 16, 7), size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_31_{dtype=complex128, shape=(5, 16, 7), size=(1, 2.5, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_32_{dtype=float32, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_33_{dtype=float32, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_34_{dtype=float64, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_35_{dtype=float64, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_36_{dtype=complex64, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_37_{dtype=complex64, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_38_{dtype=complex128, shape=(15,), size=8.5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierUniform::test_complex_fft_with_output[_param_39_{dtype=complex128, shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis0[_param_0_{shape=(32, 16), size=1}] | 2.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis0[_param_1_{shape=(32, 16), size=(5, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis0[_param_2_{shape=(32, 16), size=(3, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis0[_param_3_{shape=(31, 15), size=1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis0[_param_4_{shape=(31, 15), size=(5, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis0[_param_5_{shape=(31, 15), size=(3, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis0[_param_6_{shape=(5, 16, 7), size=3}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis0[_param_7_{shape=(5, 16, 7), size=(1, 2, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis0[_param_8_{shape=(15,), size=8}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis0[_param_9_{shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis1[_param_0_{shape=(32, 16), size=1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis1[_param_1_{shape=(32, 16), size=(5, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis1[_param_2_{shape=(32, 16), size=(3, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis1[_param_3_{shape=(31, 15), size=1}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis1[_param_4_{shape=(31, 15), size=(5, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis1[_param_5_{shape=(31, 15), size=(3, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis1[_param_6_{shape=(5, 16, 7), size=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis1[_param_7_{shape=(5, 16, 7), size=(1, 2, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis1[_param_8_{shape=(15,), size=8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_real_fft_axis1[_param_9_{shape=(15,), size=(5,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft[_param_0_{shape=(32, 16), size=1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft[_param_1_{shape=(32, 16), size=(5, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft[_param_2_{shape=(32, 16), size=(3, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft[_param_3_{shape=(31, 15), size=1}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft[_param_4_{shape=(31, 15), size=(5, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft[_param_5_{shape=(31, 15), size=(3, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft[_param_6_{shape=(5, 16, 7), size=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft[_param_7_{shape=(5, 16, 7), size=(1, 2, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft[_param_8_{shape=(15,), size=8}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft[_param_9_{shape=(15,), size=(5,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft_with_output[_param_0_{shape=(32, 16), size=1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft_with_output[_param_1_{shape=(32, 16), size=(5, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft_with_output[_param_2_{shape=(32, 16), size=(3, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft_with_output[_param_3_{shape=(31, 15), size=1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft_with_output[_param_4_{shape=(31, 15), size=(5, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft_with_output[_param_5_{shape=(31, 15), size=(3, 5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft_with_output[_param_6_{shape=(5, 16, 7), size=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft_with_output[_param_7_{shape=(5, 16, 7), size=(1, 2, 4)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft_with_output[_param_8_{shape=(15,), size=8}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoid::test_complex_fft_with_output[_param_9_{shape=(15,), size=(5,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoidInvalid::test_0d_input | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoidInvalid::test_4d_input | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoidInvalid::test_invalid_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py::TestFourierEllipsoidInvalid::test_invalid_size | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_1_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_2_{cval=1.0, mode='constant', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_3_{cval=1.0, mode='constant', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_4_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_5_{cval=1.0, mode='constant', order=1, output=None, prefilter=True}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_6_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_7_{cval=1.0, mode='constant', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_8_{cval=1.0, mode='constant', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_9_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_10_{cval=1.0, mode='constant', order=2, output=None, prefilter=True}] | 4.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_11_{cval=1.0, mode='constant', order=2, output=float64, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_12_{cval=1.0, mode='constant', order=2, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_13_{cval=1.0, mode='constant', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_14_{cval=1.0, mode='constant', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_15_{cval=1.0, mode='constant', order=3, output=None, prefilter=True}] | 4.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_16_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_17_{cval=1.0, mode='constant', order=3, output='f', prefilter=True}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_18_{cval=1.0, mode='constant', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_19_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_20_{cval=1.0, mode='constant', order=4, output=None, prefilter=True}] | 4.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_21_{cval=1.0, mode='constant', order=4, output=float64, prefilter=True}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_22_{cval=1.0, mode='constant', order=4, output='f', prefilter=True}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_23_{cval=1.0, mode='constant', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_24_{cval=1.0, mode='constant', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_25_{cval=1.0, mode='constant', order=5, output=None, prefilter=True}] | 4.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_26_{cval=1.0, mode='constant', order=5, output=float64, prefilter=True}] | 0.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_27_{cval=1.0, mode='constant', order=5, output='f', prefilter=True}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_28_{cval=1.0, mode='constant', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_29_{cval=1.0, mode='constant', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_30_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_31_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_32_{cval=1.0, mode='nearest', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_33_{cval=1.0, mode='nearest', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_34_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_35_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_36_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_37_{cval=1.0, mode='nearest', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_38_{cval=1.0, mode='nearest', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_39_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_40_{cval=1.0, mode='nearest', order=2, output=None, prefilter=True}] | 4.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_41_{cval=1.0, mode='nearest', order=2, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_42_{cval=1.0, mode='nearest', order=2, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_43_{cval=1.0, mode='nearest', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_44_{cval=1.0, mode='nearest', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_45_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True}] | 4.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_46_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_47_{cval=1.0, mode='nearest', order=3, output='f', prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_48_{cval=1.0, mode='nearest', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_49_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_50_{cval=1.0, mode='nearest', order=4, output=None, prefilter=True}] | 4.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_51_{cval=1.0, mode='nearest', order=4, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_52_{cval=1.0, mode='nearest', order=4, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_53_{cval=1.0, mode='nearest', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_54_{cval=1.0, mode='nearest', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_55_{cval=1.0, mode='nearest', order=5, output=None, prefilter=True}] | 4.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_56_{cval=1.0, mode='nearest', order=5, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_57_{cval=1.0, mode='nearest', order=5, output='f', prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_58_{cval=1.0, mode='nearest', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_59_{cval=1.0, mode='nearest', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_60_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_61_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_62_{cval=1.0, mode='mirror', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_63_{cval=1.0, mode='mirror', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_64_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_65_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_66_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_67_{cval=1.0, mode='mirror', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_68_{cval=1.0, mode='mirror', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_69_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_70_{cval=1.0, mode='mirror', order=2, output=None, prefilter=True}] | 4.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_71_{cval=1.0, mode='mirror', order=2, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_72_{cval=1.0, mode='mirror', order=2, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_73_{cval=1.0, mode='mirror', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_74_{cval=1.0, mode='mirror', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_75_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True}] | 4.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_76_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_77_{cval=1.0, mode='mirror', order=3, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_78_{cval=1.0, mode='mirror', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_79_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_80_{cval=1.0, mode='mirror', order=4, output=None, prefilter=True}] | 4.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_81_{cval=1.0, mode='mirror', order=4, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_82_{cval=1.0, mode='mirror', order=4, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_83_{cval=1.0, mode='mirror', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_84_{cval=1.0, mode='mirror', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_85_{cval=1.0, mode='mirror', order=5, output=None, prefilter=True}] | 4.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_86_{cval=1.0, mode='mirror', order=5, output=float64, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_87_{cval=1.0, mode='mirror', order=5, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_88_{cval=1.0, mode='mirror', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_89_{cval=1.0, mode='mirror', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_90_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_91_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_92_{cval=1.0, mode='wrap', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_93_{cval=1.0, mode='wrap', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_94_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_95_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_96_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_97_{cval=1.0, mode='wrap', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_98_{cval=1.0, mode='wrap', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_99_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_100_{cval=1.0, mode='wrap', order=2, output=None, prefilter=True}] | 4.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_101_{cval=1.0, mode='wrap', order=2, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_102_{cval=1.0, mode='wrap', order=2, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_103_{cval=1.0, mode='wrap', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_104_{cval=1.0, mode='wrap', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_105_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True}] | 4.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_106_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_107_{cval=1.0, mode='wrap', order=3, output='f', prefilter=True}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_108_{cval=1.0, mode='wrap', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_109_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_110_{cval=1.0, mode='wrap', order=4, output=None, prefilter=True}] | 4.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_111_{cval=1.0, mode='wrap', order=4, output=float64, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_112_{cval=1.0, mode='wrap', order=4, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_113_{cval=1.0, mode='wrap', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_114_{cval=1.0, mode='wrap', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_115_{cval=1.0, mode='wrap', order=5, output=None, prefilter=True}] | 4.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_116_{cval=1.0, mode='wrap', order=5, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_117_{cval=1.0, mode='wrap', order=5, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_118_{cval=1.0, mode='wrap', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_119_{cval=1.0, mode='wrap', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_120_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_121_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_122_{cval=1.0, mode='grid-wrap', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_123_{cval=1.0, mode='grid-wrap', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_124_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_125_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_126_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_127_{cval=1.0, mode='grid-wrap', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_128_{cval=1.0, mode='grid-wrap', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_129_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_130_{cval=1.0, mode='grid-wrap', order=2, output=None, prefilter=True}] | 4.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_131_{cval=1.0, mode='grid-wrap', order=2, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_132_{cval=1.0, mode='grid-wrap', order=2, output='f', prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_133_{cval=1.0, mode='grid-wrap', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_134_{cval=1.0, mode='grid-wrap', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_135_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True}] | 4.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_136_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_137_{cval=1.0, mode='grid-wrap', order=3, output='f', prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_138_{cval=1.0, mode='grid-wrap', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_139_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_140_{cval=1.0, mode='grid-wrap', order=4, output=None, prefilter=True}] | 4.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_141_{cval=1.0, mode='grid-wrap', order=4, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_142_{cval=1.0, mode='grid-wrap', order=4, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_143_{cval=1.0, mode='grid-wrap', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_144_{cval=1.0, mode='grid-wrap', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_145_{cval=1.0, mode='grid-wrap', order=5, output=None, prefilter=True}] | 4.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_146_{cval=1.0, mode='grid-wrap', order=5, output=float64, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_147_{cval=1.0, mode='grid-wrap', order=5, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_148_{cval=1.0, mode='grid-wrap', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_149_{cval=1.0, mode='grid-wrap', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_150_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_151_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_152_{cval=1.0, mode='reflect', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_153_{cval=1.0, mode='reflect', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_154_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_155_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_156_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_157_{cval=1.0, mode='reflect', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_158_{cval=1.0, mode='reflect', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_159_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_160_{cval=1.0, mode='reflect', order=2, output=None, prefilter=True}] | 4.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_161_{cval=1.0, mode='reflect', order=2, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_162_{cval=1.0, mode='reflect', order=2, output='f', prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_163_{cval=1.0, mode='reflect', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_164_{cval=1.0, mode='reflect', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_165_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True}] | 4.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_166_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_167_{cval=1.0, mode='reflect', order=3, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_168_{cval=1.0, mode='reflect', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_169_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_170_{cval=1.0, mode='reflect', order=4, output=None, prefilter=True}] | 4.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_171_{cval=1.0, mode='reflect', order=4, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_172_{cval=1.0, mode='reflect', order=4, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_173_{cval=1.0, mode='reflect', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_174_{cval=1.0, mode='reflect', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_175_{cval=1.0, mode='reflect', order=5, output=None, prefilter=True}] | 4.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_176_{cval=1.0, mode='reflect', order=5, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_177_{cval=1.0, mode='reflect', order=5, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_178_{cval=1.0, mode='reflect', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_179_{cval=1.0, mode='reflect', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_180_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_181_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_182_{cval=1.0, mode='grid-mirror', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_183_{cval=1.0, mode='grid-mirror', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_184_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_185_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_186_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_187_{cval=1.0, mode='grid-mirror', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_188_{cval=1.0, mode='grid-mirror', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_189_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_190_{cval=1.0, mode='grid-mirror', order=2, output=None, prefilter=True}] | 4.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_191_{cval=1.0, mode='grid-mirror', order=2, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_192_{cval=1.0, mode='grid-mirror', order=2, output='f', prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_193_{cval=1.0, mode='grid-mirror', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_194_{cval=1.0, mode='grid-mirror', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_195_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True}] | 4.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_196_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_197_{cval=1.0, mode='grid-mirror', order=3, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_198_{cval=1.0, mode='grid-mirror', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_199_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_200_{cval=1.0, mode='grid-mirror', order=4, output=None, prefilter=True}] | 4.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_201_{cval=1.0, mode='grid-mirror', order=4, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_202_{cval=1.0, mode='grid-mirror', order=4, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_203_{cval=1.0, mode='grid-mirror', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_204_{cval=1.0, mode='grid-mirror', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_205_{cval=1.0, mode='grid-mirror', order=5, output=None, prefilter=True}] | 4.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_206_{cval=1.0, mode='grid-mirror', order=5, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_207_{cval=1.0, mode='grid-mirror', order=5, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_208_{cval=1.0, mode='grid-mirror', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_209_{cval=1.0, mode='grid-mirror', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_210_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_211_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_212_{cval=1.0, mode='grid-constant', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_213_{cval=1.0, mode='grid-constant', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_214_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_215_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_216_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_217_{cval=1.0, mode='grid-constant', order=1, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_218_{cval=1.0, mode='grid-constant', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_219_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_220_{cval=1.0, mode='grid-constant', order=2, output=None, prefilter=True}] | 4.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_221_{cval=1.0, mode='grid-constant', order=2, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_222_{cval=1.0, mode='grid-constant', order=2, output='f', prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_223_{cval=1.0, mode='grid-constant', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_224_{cval=1.0, mode='grid-constant', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_225_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True}] | 4.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_226_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_227_{cval=1.0, mode='grid-constant', order=3, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_228_{cval=1.0, mode='grid-constant', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_229_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_230_{cval=1.0, mode='grid-constant', order=4, output=None, prefilter=True}] | 4.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_231_{cval=1.0, mode='grid-constant', order=4, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_232_{cval=1.0, mode='grid-constant', order=4, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_233_{cval=1.0, mode='grid-constant', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_234_{cval=1.0, mode='grid-constant', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_235_{cval=1.0, mode='grid-constant', order=5, output=None, prefilter=True}] | 4.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_236_{cval=1.0, mode='grid-constant', order=5, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_237_{cval=1.0, mode='grid-constant', order=5, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_238_{cval=1.0, mode='grid-constant', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float[_param_239_{cval=1.0, mode='grid-constant', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_1_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_2_{cval=1.0, mode='constant', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_3_{cval=1.0, mode='constant', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_4_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_5_{cval=1.0, mode='constant', order=1, output=None, prefilter=True}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_6_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_7_{cval=1.0, mode='constant', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_8_{cval=1.0, mode='constant', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_9_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_10_{cval=1.0, mode='constant', order=2, output=None, prefilter=True}] | 4.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_11_{cval=1.0, mode='constant', order=2, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_12_{cval=1.0, mode='constant', order=2, output='f', prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_13_{cval=1.0, mode='constant', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_14_{cval=1.0, mode='constant', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_15_{cval=1.0, mode='constant', order=3, output=None, prefilter=True}] | 4.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_16_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_17_{cval=1.0, mode='constant', order=3, output='f', prefilter=True}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_18_{cval=1.0, mode='constant', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_19_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_20_{cval=1.0, mode='constant', order=4, output=None, prefilter=True}] | 4.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_21_{cval=1.0, mode='constant', order=4, output=float64, prefilter=True}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_22_{cval=1.0, mode='constant', order=4, output='f', prefilter=True}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_23_{cval=1.0, mode='constant', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_24_{cval=1.0, mode='constant', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_25_{cval=1.0, mode='constant', order=5, output=None, prefilter=True}] | 4.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_26_{cval=1.0, mode='constant', order=5, output=float64, prefilter=True}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_27_{cval=1.0, mode='constant', order=5, output='f', prefilter=True}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_28_{cval=1.0, mode='constant', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_29_{cval=1.0, mode='constant', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_30_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_31_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_32_{cval=1.0, mode='nearest', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_33_{cval=1.0, mode='nearest', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_34_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_35_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_36_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_37_{cval=1.0, mode='nearest', order=1, output='f', prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_38_{cval=1.0, mode='nearest', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_39_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_40_{cval=1.0, mode='nearest', order=2, output=None, prefilter=True}] | 4.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_41_{cval=1.0, mode='nearest', order=2, output=float64, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_42_{cval=1.0, mode='nearest', order=2, output='f', prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_43_{cval=1.0, mode='nearest', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_44_{cval=1.0, mode='nearest', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_45_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True}] | 4.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_46_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_47_{cval=1.0, mode='nearest', order=3, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_48_{cval=1.0, mode='nearest', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_49_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_50_{cval=1.0, mode='nearest', order=4, output=None, prefilter=True}] | 4.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_51_{cval=1.0, mode='nearest', order=4, output=float64, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_52_{cval=1.0, mode='nearest', order=4, output='f', prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_53_{cval=1.0, mode='nearest', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_54_{cval=1.0, mode='nearest', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_55_{cval=1.0, mode='nearest', order=5, output=None, prefilter=True}] | 4.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_56_{cval=1.0, mode='nearest', order=5, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_57_{cval=1.0, mode='nearest', order=5, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_58_{cval=1.0, mode='nearest', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_59_{cval=1.0, mode='nearest', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_60_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_61_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_62_{cval=1.0, mode='mirror', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_63_{cval=1.0, mode='mirror', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_64_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_65_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_66_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_67_{cval=1.0, mode='mirror', order=1, output='f', prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_68_{cval=1.0, mode='mirror', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_69_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_70_{cval=1.0, mode='mirror', order=2, output=None, prefilter=True}] | 4.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_71_{cval=1.0, mode='mirror', order=2, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_72_{cval=1.0, mode='mirror', order=2, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_73_{cval=1.0, mode='mirror', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_74_{cval=1.0, mode='mirror', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_75_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True}] | 4.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_76_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_77_{cval=1.0, mode='mirror', order=3, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_78_{cval=1.0, mode='mirror', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_79_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_80_{cval=1.0, mode='mirror', order=4, output=None, prefilter=True}] | 4.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_81_{cval=1.0, mode='mirror', order=4, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_82_{cval=1.0, mode='mirror', order=4, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_83_{cval=1.0, mode='mirror', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_84_{cval=1.0, mode='mirror', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_85_{cval=1.0, mode='mirror', order=5, output=None, prefilter=True}] | 4.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_86_{cval=1.0, mode='mirror', order=5, output=float64, prefilter=True}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_87_{cval=1.0, mode='mirror', order=5, output='f', prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_88_{cval=1.0, mode='mirror', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_89_{cval=1.0, mode='mirror', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_90_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_91_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_92_{cval=1.0, mode='wrap', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_93_{cval=1.0, mode='wrap', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_94_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_95_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_96_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_97_{cval=1.0, mode='wrap', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_98_{cval=1.0, mode='wrap', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_99_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_100_{cval=1.0, mode='wrap', order=2, output=None, prefilter=True}] | 4.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_101_{cval=1.0, mode='wrap', order=2, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_102_{cval=1.0, mode='wrap', order=2, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_103_{cval=1.0, mode='wrap', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_104_{cval=1.0, mode='wrap', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_105_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True}] | 4.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_106_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_107_{cval=1.0, mode='wrap', order=3, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_108_{cval=1.0, mode='wrap', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_109_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_110_{cval=1.0, mode='wrap', order=4, output=None, prefilter=True}] | 4.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_111_{cval=1.0, mode='wrap', order=4, output=float64, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_112_{cval=1.0, mode='wrap', order=4, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_113_{cval=1.0, mode='wrap', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_114_{cval=1.0, mode='wrap', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_115_{cval=1.0, mode='wrap', order=5, output=None, prefilter=True}] | 4.64 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_116_{cval=1.0, mode='wrap', order=5, output=float64, prefilter=True}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_117_{cval=1.0, mode='wrap', order=5, output='f', prefilter=True}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_118_{cval=1.0, mode='wrap', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_119_{cval=1.0, mode='wrap', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_120_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_121_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_122_{cval=1.0, mode='grid-wrap', order=0, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_123_{cval=1.0, mode='grid-wrap', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_124_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_125_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_126_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_127_{cval=1.0, mode='grid-wrap', order=1, output='f', prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_128_{cval=1.0, mode='grid-wrap', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_129_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_130_{cval=1.0, mode='grid-wrap', order=2, output=None, prefilter=True}] | 4.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_131_{cval=1.0, mode='grid-wrap', order=2, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_132_{cval=1.0, mode='grid-wrap', order=2, output='f', prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_133_{cval=1.0, mode='grid-wrap', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_134_{cval=1.0, mode='grid-wrap', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_135_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True}] | 4.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_136_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_137_{cval=1.0, mode='grid-wrap', order=3, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_138_{cval=1.0, mode='grid-wrap', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_139_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_140_{cval=1.0, mode='grid-wrap', order=4, output=None, prefilter=True}] | 4.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_141_{cval=1.0, mode='grid-wrap', order=4, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_142_{cval=1.0, mode='grid-wrap', order=4, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_143_{cval=1.0, mode='grid-wrap', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_144_{cval=1.0, mode='grid-wrap', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_145_{cval=1.0, mode='grid-wrap', order=5, output=None, prefilter=True}] | 4.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_146_{cval=1.0, mode='grid-wrap', order=5, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_147_{cval=1.0, mode='grid-wrap', order=5, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_148_{cval=1.0, mode='grid-wrap', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_149_{cval=1.0, mode='grid-wrap', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_150_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_151_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_152_{cval=1.0, mode='reflect', order=0, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_153_{cval=1.0, mode='reflect', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_154_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_155_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_156_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_157_{cval=1.0, mode='reflect', order=1, output='f', prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_158_{cval=1.0, mode='reflect', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_159_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_160_{cval=1.0, mode='reflect', order=2, output=None, prefilter=True}] | 4.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_161_{cval=1.0, mode='reflect', order=2, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_162_{cval=1.0, mode='reflect', order=2, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_163_{cval=1.0, mode='reflect', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_164_{cval=1.0, mode='reflect', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_165_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True}] | 4.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_166_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_167_{cval=1.0, mode='reflect', order=3, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_168_{cval=1.0, mode='reflect', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_169_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_170_{cval=1.0, mode='reflect', order=4, output=None, prefilter=True}] | 4.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_171_{cval=1.0, mode='reflect', order=4, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_172_{cval=1.0, mode='reflect', order=4, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_173_{cval=1.0, mode='reflect', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_174_{cval=1.0, mode='reflect', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_175_{cval=1.0, mode='reflect', order=5, output=None, prefilter=True}] | 4.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_176_{cval=1.0, mode='reflect', order=5, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_177_{cval=1.0, mode='reflect', order=5, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_178_{cval=1.0, mode='reflect', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_179_{cval=1.0, mode='reflect', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_180_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_181_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_182_{cval=1.0, mode='grid-mirror', order=0, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_183_{cval=1.0, mode='grid-mirror', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_184_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_185_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_186_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_187_{cval=1.0, mode='grid-mirror', order=1, output='f', prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_188_{cval=1.0, mode='grid-mirror', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_189_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_190_{cval=1.0, mode='grid-mirror', order=2, output=None, prefilter=True}] | 4.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_191_{cval=1.0, mode='grid-mirror', order=2, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_192_{cval=1.0, mode='grid-mirror', order=2, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_193_{cval=1.0, mode='grid-mirror', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_194_{cval=1.0, mode='grid-mirror', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_195_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True}] | 4.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_196_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_197_{cval=1.0, mode='grid-mirror', order=3, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_198_{cval=1.0, mode='grid-mirror', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_199_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_200_{cval=1.0, mode='grid-mirror', order=4, output=None, prefilter=True}] | 4.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_201_{cval=1.0, mode='grid-mirror', order=4, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_202_{cval=1.0, mode='grid-mirror', order=4, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_203_{cval=1.0, mode='grid-mirror', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_204_{cval=1.0, mode='grid-mirror', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_205_{cval=1.0, mode='grid-mirror', order=5, output=None, prefilter=True}] | 4.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_206_{cval=1.0, mode='grid-mirror', order=5, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_207_{cval=1.0, mode='grid-mirror', order=5, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_208_{cval=1.0, mode='grid-mirror', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_209_{cval=1.0, mode='grid-mirror', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_210_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_211_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_212_{cval=1.0, mode='grid-constant', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_213_{cval=1.0, mode='grid-constant', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_214_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_215_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_216_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_217_{cval=1.0, mode='grid-constant', order=1, output='f', prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_218_{cval=1.0, mode='grid-constant', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_219_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_220_{cval=1.0, mode='grid-constant', order=2, output=None, prefilter=True}] | 4.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_221_{cval=1.0, mode='grid-constant', order=2, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_222_{cval=1.0, mode='grid-constant', order=2, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_223_{cval=1.0, mode='grid-constant', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_224_{cval=1.0, mode='grid-constant', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_225_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True}] | 4.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_226_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_227_{cval=1.0, mode='grid-constant', order=3, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_228_{cval=1.0, mode='grid-constant', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_229_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_230_{cval=1.0, mode='grid-constant', order=4, output=None, prefilter=True}] | 4.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_231_{cval=1.0, mode='grid-constant', order=4, output=float64, prefilter=True}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_232_{cval=1.0, mode='grid-constant', order=4, output='f', prefilter=True}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_233_{cval=1.0, mode='grid-constant', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_234_{cval=1.0, mode='grid-constant', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_235_{cval=1.0, mode='grid-constant', order=5, output=None, prefilter=True}] | 4.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_236_{cval=1.0, mode='grid-constant', order=5, output=float64, prefilter=True}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_237_{cval=1.0, mode='grid-constant', order=5, output='f', prefilter=True}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_238_{cval=1.0, mode='grid-constant', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_complex_float[_param_239_{cval=1.0, mode='grid-constant', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_1_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_2_{cval=1.0, mode='constant', order=0, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_3_{cval=1.0, mode='constant', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_4_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_5_{cval=1.0, mode='constant', order=1, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_6_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_7_{cval=1.0, mode='constant', order=1, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_8_{cval=1.0, mode='constant', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_9_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_10_{cval=1.0, mode='constant', order=2, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_11_{cval=1.0, mode='constant', order=2, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_12_{cval=1.0, mode='constant', order=2, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_13_{cval=1.0, mode='constant', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_14_{cval=1.0, mode='constant', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_15_{cval=1.0, mode='constant', order=3, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_16_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_17_{cval=1.0, mode='constant', order=3, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_18_{cval=1.0, mode='constant', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_19_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_20_{cval=1.0, mode='constant', order=4, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_21_{cval=1.0, mode='constant', order=4, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_22_{cval=1.0, mode='constant', order=4, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_23_{cval=1.0, mode='constant', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_24_{cval=1.0, mode='constant', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_25_{cval=1.0, mode='constant', order=5, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_26_{cval=1.0, mode='constant', order=5, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_27_{cval=1.0, mode='constant', order=5, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_28_{cval=1.0, mode='constant', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_29_{cval=1.0, mode='constant', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_30_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_31_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_32_{cval=1.0, mode='nearest', order=0, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_33_{cval=1.0, mode='nearest', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_34_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_35_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_36_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_37_{cval=1.0, mode='nearest', order=1, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_38_{cval=1.0, mode='nearest', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_39_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_40_{cval=1.0, mode='nearest', order=2, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_41_{cval=1.0, mode='nearest', order=2, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_42_{cval=1.0, mode='nearest', order=2, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_43_{cval=1.0, mode='nearest', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_44_{cval=1.0, mode='nearest', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_45_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_46_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_47_{cval=1.0, mode='nearest', order=3, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_48_{cval=1.0, mode='nearest', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_49_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_50_{cval=1.0, mode='nearest', order=4, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_51_{cval=1.0, mode='nearest', order=4, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_52_{cval=1.0, mode='nearest', order=4, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_53_{cval=1.0, mode='nearest', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_54_{cval=1.0, mode='nearest', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_55_{cval=1.0, mode='nearest', order=5, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_56_{cval=1.0, mode='nearest', order=5, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_57_{cval=1.0, mode='nearest', order=5, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_58_{cval=1.0, mode='nearest', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_59_{cval=1.0, mode='nearest', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_60_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_61_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_62_{cval=1.0, mode='mirror', order=0, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_63_{cval=1.0, mode='mirror', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_64_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_65_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_66_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_67_{cval=1.0, mode='mirror', order=1, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_68_{cval=1.0, mode='mirror', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_69_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_70_{cval=1.0, mode='mirror', order=2, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_71_{cval=1.0, mode='mirror', order=2, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_72_{cval=1.0, mode='mirror', order=2, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_73_{cval=1.0, mode='mirror', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_74_{cval=1.0, mode='mirror', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_75_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_76_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_77_{cval=1.0, mode='mirror', order=3, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_78_{cval=1.0, mode='mirror', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_79_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_80_{cval=1.0, mode='mirror', order=4, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_81_{cval=1.0, mode='mirror', order=4, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_82_{cval=1.0, mode='mirror', order=4, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_83_{cval=1.0, mode='mirror', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_84_{cval=1.0, mode='mirror', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_85_{cval=1.0, mode='mirror', order=5, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_86_{cval=1.0, mode='mirror', order=5, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_87_{cval=1.0, mode='mirror', order=5, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_88_{cval=1.0, mode='mirror', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_89_{cval=1.0, mode='mirror', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_90_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_91_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_92_{cval=1.0, mode='wrap', order=0, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_93_{cval=1.0, mode='wrap', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_94_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_95_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_96_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_97_{cval=1.0, mode='wrap', order=1, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_98_{cval=1.0, mode='wrap', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_99_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_100_{cval=1.0, mode='wrap', order=2, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_101_{cval=1.0, mode='wrap', order=2, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_102_{cval=1.0, mode='wrap', order=2, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_103_{cval=1.0, mode='wrap', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_104_{cval=1.0, mode='wrap', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_105_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_106_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_107_{cval=1.0, mode='wrap', order=3, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_108_{cval=1.0, mode='wrap', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_109_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_110_{cval=1.0, mode='wrap', order=4, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_111_{cval=1.0, mode='wrap', order=4, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_112_{cval=1.0, mode='wrap', order=4, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_113_{cval=1.0, mode='wrap', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_114_{cval=1.0, mode='wrap', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_115_{cval=1.0, mode='wrap', order=5, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_116_{cval=1.0, mode='wrap', order=5, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_117_{cval=1.0, mode='wrap', order=5, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_118_{cval=1.0, mode='wrap', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_119_{cval=1.0, mode='wrap', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_120_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_121_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_122_{cval=1.0, mode='grid-wrap', order=0, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_123_{cval=1.0, mode='grid-wrap', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_124_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_125_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_126_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_127_{cval=1.0, mode='grid-wrap', order=1, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_128_{cval=1.0, mode='grid-wrap', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_129_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_130_{cval=1.0, mode='grid-wrap', order=2, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_131_{cval=1.0, mode='grid-wrap', order=2, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_132_{cval=1.0, mode='grid-wrap', order=2, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_133_{cval=1.0, mode='grid-wrap', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_134_{cval=1.0, mode='grid-wrap', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_135_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_136_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_137_{cval=1.0, mode='grid-wrap', order=3, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_138_{cval=1.0, mode='grid-wrap', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_139_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_140_{cval=1.0, mode='grid-wrap', order=4, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_141_{cval=1.0, mode='grid-wrap', order=4, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_142_{cval=1.0, mode='grid-wrap', order=4, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_143_{cval=1.0, mode='grid-wrap', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_144_{cval=1.0, mode='grid-wrap', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_145_{cval=1.0, mode='grid-wrap', order=5, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_146_{cval=1.0, mode='grid-wrap', order=5, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_147_{cval=1.0, mode='grid-wrap', order=5, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_148_{cval=1.0, mode='grid-wrap', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_149_{cval=1.0, mode='grid-wrap', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_150_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_151_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_152_{cval=1.0, mode='reflect', order=0, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_153_{cval=1.0, mode='reflect', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_154_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_155_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_156_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_157_{cval=1.0, mode='reflect', order=1, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_158_{cval=1.0, mode='reflect', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_159_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_160_{cval=1.0, mode='reflect', order=2, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_161_{cval=1.0, mode='reflect', order=2, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_162_{cval=1.0, mode='reflect', order=2, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_163_{cval=1.0, mode='reflect', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_164_{cval=1.0, mode='reflect', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_165_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_166_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_167_{cval=1.0, mode='reflect', order=3, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_168_{cval=1.0, mode='reflect', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_169_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_170_{cval=1.0, mode='reflect', order=4, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_171_{cval=1.0, mode='reflect', order=4, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_172_{cval=1.0, mode='reflect', order=4, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_173_{cval=1.0, mode='reflect', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_174_{cval=1.0, mode='reflect', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_175_{cval=1.0, mode='reflect', order=5, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_176_{cval=1.0, mode='reflect', order=5, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_177_{cval=1.0, mode='reflect', order=5, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_178_{cval=1.0, mode='reflect', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_179_{cval=1.0, mode='reflect', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_180_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_181_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_182_{cval=1.0, mode='grid-mirror', order=0, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_183_{cval=1.0, mode='grid-mirror', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_184_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_185_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_186_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_187_{cval=1.0, mode='grid-mirror', order=1, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_188_{cval=1.0, mode='grid-mirror', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_189_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_190_{cval=1.0, mode='grid-mirror', order=2, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_191_{cval=1.0, mode='grid-mirror', order=2, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_192_{cval=1.0, mode='grid-mirror', order=2, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_193_{cval=1.0, mode='grid-mirror', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_194_{cval=1.0, mode='grid-mirror', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_195_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_196_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_197_{cval=1.0, mode='grid-mirror', order=3, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_198_{cval=1.0, mode='grid-mirror', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_199_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_200_{cval=1.0, mode='grid-mirror', order=4, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_201_{cval=1.0, mode='grid-mirror', order=4, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_202_{cval=1.0, mode='grid-mirror', order=4, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_203_{cval=1.0, mode='grid-mirror', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_204_{cval=1.0, mode='grid-mirror', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_205_{cval=1.0, mode='grid-mirror', order=5, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_206_{cval=1.0, mode='grid-mirror', order=5, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_207_{cval=1.0, mode='grid-mirror', order=5, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_208_{cval=1.0, mode='grid-mirror', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_209_{cval=1.0, mode='grid-mirror', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_210_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_211_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_212_{cval=1.0, mode='grid-constant', order=0, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_213_{cval=1.0, mode='grid-constant', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_214_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_215_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_216_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_217_{cval=1.0, mode='grid-constant', order=1, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_218_{cval=1.0, mode='grid-constant', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_219_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_220_{cval=1.0, mode='grid-constant', order=2, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_221_{cval=1.0, mode='grid-constant', order=2, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_222_{cval=1.0, mode='grid-constant', order=2, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_223_{cval=1.0, mode='grid-constant', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_224_{cval=1.0, mode='grid-constant', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_225_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_226_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_227_{cval=1.0, mode='grid-constant', order=3, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_228_{cval=1.0, mode='grid-constant', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_229_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_230_{cval=1.0, mode='grid-constant', order=4, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_231_{cval=1.0, mode='grid-constant', order=4, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_232_{cval=1.0, mode='grid-constant', order=4, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_233_{cval=1.0, mode='grid-constant', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_234_{cval=1.0, mode='grid-constant', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_235_{cval=1.0, mode='grid-constant', order=5, output=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_236_{cval=1.0, mode='grid-constant', order=5, output=float64, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_237_{cval=1.0, mode='grid-constant', order=5, output='f', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_238_{cval=1.0, mode='grid-constant', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_fortran_order[_param_239_{cval=1.0, mode='grid-constant', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_1_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_2_{cval=1.0, mode='constant', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_3_{cval=1.0, mode='constant', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_4_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_5_{cval=1.0, mode='constant', order=1, output=None, prefilter=True}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_6_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_7_{cval=1.0, mode='constant', order=1, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_8_{cval=1.0, mode='constant', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_9_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_10_{cval=1.0, mode='constant', order=2, output=None, prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_11_{cval=1.0, mode='constant', order=2, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_12_{cval=1.0, mode='constant', order=2, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_13_{cval=1.0, mode='constant', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_14_{cval=1.0, mode='constant', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_15_{cval=1.0, mode='constant', order=3, output=None, prefilter=True}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_16_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_17_{cval=1.0, mode='constant', order=3, output='f', prefilter=True}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_18_{cval=1.0, mode='constant', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_19_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_20_{cval=1.0, mode='constant', order=4, output=None, prefilter=True}] | 1.67 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_21_{cval=1.0, mode='constant', order=4, output=float64, prefilter=True}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_22_{cval=1.0, mode='constant', order=4, output='f', prefilter=True}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_23_{cval=1.0, mode='constant', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_24_{cval=1.0, mode='constant', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_25_{cval=1.0, mode='constant', order=5, output=None, prefilter=True}] | 1.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_26_{cval=1.0, mode='constant', order=5, output=float64, prefilter=True}] | 0.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_27_{cval=1.0, mode='constant', order=5, output='f', prefilter=True}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_28_{cval=1.0, mode='constant', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_29_{cval=1.0, mode='constant', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_30_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_31_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_32_{cval=1.0, mode='nearest', order=0, output='f', prefilter=True}] | 0.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_33_{cval=1.0, mode='nearest', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_34_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_35_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_36_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_37_{cval=1.0, mode='nearest', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_38_{cval=1.0, mode='nearest', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_39_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_40_{cval=1.0, mode='nearest', order=2, output=None, prefilter=True}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_41_{cval=1.0, mode='nearest', order=2, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_42_{cval=1.0, mode='nearest', order=2, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_43_{cval=1.0, mode='nearest', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_44_{cval=1.0, mode='nearest', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_45_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_46_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_47_{cval=1.0, mode='nearest', order=3, output='f', prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_48_{cval=1.0, mode='nearest', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_49_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_50_{cval=1.0, mode='nearest', order=4, output=None, prefilter=True}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_51_{cval=1.0, mode='nearest', order=4, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_52_{cval=1.0, mode='nearest', order=4, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_53_{cval=1.0, mode='nearest', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_54_{cval=1.0, mode='nearest', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_55_{cval=1.0, mode='nearest', order=5, output=None, prefilter=True}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_56_{cval=1.0, mode='nearest', order=5, output=float64, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_57_{cval=1.0, mode='nearest', order=5, output='f', prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_58_{cval=1.0, mode='nearest', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_59_{cval=1.0, mode='nearest', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_60_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_61_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_62_{cval=1.0, mode='mirror', order=0, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_63_{cval=1.0, mode='mirror', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_64_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_65_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_66_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_67_{cval=1.0, mode='mirror', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_68_{cval=1.0, mode='mirror', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_69_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_70_{cval=1.0, mode='mirror', order=2, output=None, prefilter=True}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_71_{cval=1.0, mode='mirror', order=2, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_72_{cval=1.0, mode='mirror', order=2, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_73_{cval=1.0, mode='mirror', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_74_{cval=1.0, mode='mirror', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_75_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_76_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_77_{cval=1.0, mode='mirror', order=3, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_78_{cval=1.0, mode='mirror', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_79_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_80_{cval=1.0, mode='mirror', order=4, output=None, prefilter=True}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_81_{cval=1.0, mode='mirror', order=4, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_82_{cval=1.0, mode='mirror', order=4, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_83_{cval=1.0, mode='mirror', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_84_{cval=1.0, mode='mirror', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_85_{cval=1.0, mode='mirror', order=5, output=None, prefilter=True}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_86_{cval=1.0, mode='mirror', order=5, output=float64, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_87_{cval=1.0, mode='mirror', order=5, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_88_{cval=1.0, mode='mirror', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_89_{cval=1.0, mode='mirror', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_90_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_91_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_92_{cval=1.0, mode='wrap', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_93_{cval=1.0, mode='wrap', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_94_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_95_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_96_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_97_{cval=1.0, mode='wrap', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_98_{cval=1.0, mode='wrap', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_99_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_100_{cval=1.0, mode='wrap', order=2, output=None, prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_101_{cval=1.0, mode='wrap', order=2, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_102_{cval=1.0, mode='wrap', order=2, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_103_{cval=1.0, mode='wrap', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_104_{cval=1.0, mode='wrap', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_105_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_106_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_107_{cval=1.0, mode='wrap', order=3, output='f', prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_108_{cval=1.0, mode='wrap', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_109_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_110_{cval=1.0, mode='wrap', order=4, output=None, prefilter=True}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_111_{cval=1.0, mode='wrap', order=4, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_112_{cval=1.0, mode='wrap', order=4, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_113_{cval=1.0, mode='wrap', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_114_{cval=1.0, mode='wrap', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_115_{cval=1.0, mode='wrap', order=5, output=None, prefilter=True}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_116_{cval=1.0, mode='wrap', order=5, output=float64, prefilter=True}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_117_{cval=1.0, mode='wrap', order=5, output='f', prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_118_{cval=1.0, mode='wrap', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_119_{cval=1.0, mode='wrap', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_120_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_121_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_122_{cval=1.0, mode='grid-wrap', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_123_{cval=1.0, mode='grid-wrap', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_124_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_125_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_126_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_127_{cval=1.0, mode='grid-wrap', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_128_{cval=1.0, mode='grid-wrap', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_129_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_130_{cval=1.0, mode='grid-wrap', order=2, output=None, prefilter=True}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_131_{cval=1.0, mode='grid-wrap', order=2, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_132_{cval=1.0, mode='grid-wrap', order=2, output='f', prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_133_{cval=1.0, mode='grid-wrap', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_134_{cval=1.0, mode='grid-wrap', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_135_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_136_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_137_{cval=1.0, mode='grid-wrap', order=3, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_138_{cval=1.0, mode='grid-wrap', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_139_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_140_{cval=1.0, mode='grid-wrap', order=4, output=None, prefilter=True}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_141_{cval=1.0, mode='grid-wrap', order=4, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_142_{cval=1.0, mode='grid-wrap', order=4, output='f', prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_143_{cval=1.0, mode='grid-wrap', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_144_{cval=1.0, mode='grid-wrap', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_145_{cval=1.0, mode='grid-wrap', order=5, output=None, prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_146_{cval=1.0, mode='grid-wrap', order=5, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_147_{cval=1.0, mode='grid-wrap', order=5, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_148_{cval=1.0, mode='grid-wrap', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_149_{cval=1.0, mode='grid-wrap', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_150_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_151_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_152_{cval=1.0, mode='reflect', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_153_{cval=1.0, mode='reflect', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_154_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_155_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_156_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_157_{cval=1.0, mode='reflect', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_158_{cval=1.0, mode='reflect', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_159_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_160_{cval=1.0, mode='reflect', order=2, output=None, prefilter=True}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_161_{cval=1.0, mode='reflect', order=2, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_162_{cval=1.0, mode='reflect', order=2, output='f', prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_163_{cval=1.0, mode='reflect', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_164_{cval=1.0, mode='reflect', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_165_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_166_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_167_{cval=1.0, mode='reflect', order=3, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_168_{cval=1.0, mode='reflect', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_169_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_170_{cval=1.0, mode='reflect', order=4, output=None, prefilter=True}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_171_{cval=1.0, mode='reflect', order=4, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_172_{cval=1.0, mode='reflect', order=4, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_173_{cval=1.0, mode='reflect', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_174_{cval=1.0, mode='reflect', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_175_{cval=1.0, mode='reflect', order=5, output=None, prefilter=True}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_176_{cval=1.0, mode='reflect', order=5, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_177_{cval=1.0, mode='reflect', order=5, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_178_{cval=1.0, mode='reflect', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_179_{cval=1.0, mode='reflect', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_180_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_181_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_182_{cval=1.0, mode='grid-mirror', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_183_{cval=1.0, mode='grid-mirror', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_184_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_185_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_186_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_187_{cval=1.0, mode='grid-mirror', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_188_{cval=1.0, mode='grid-mirror', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_189_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_190_{cval=1.0, mode='grid-mirror', order=2, output=None, prefilter=True}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_191_{cval=1.0, mode='grid-mirror', order=2, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_192_{cval=1.0, mode='grid-mirror', order=2, output='f', prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_193_{cval=1.0, mode='grid-mirror', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_194_{cval=1.0, mode='grid-mirror', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_195_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_196_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_197_{cval=1.0, mode='grid-mirror', order=3, output='f', prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_198_{cval=1.0, mode='grid-mirror', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_199_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_200_{cval=1.0, mode='grid-mirror', order=4, output=None, prefilter=True}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_201_{cval=1.0, mode='grid-mirror', order=4, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_202_{cval=1.0, mode='grid-mirror', order=4, output='f', prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_203_{cval=1.0, mode='grid-mirror', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_204_{cval=1.0, mode='grid-mirror', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_205_{cval=1.0, mode='grid-mirror', order=5, output=None, prefilter=True}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_206_{cval=1.0, mode='grid-mirror', order=5, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_207_{cval=1.0, mode='grid-mirror', order=5, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_208_{cval=1.0, mode='grid-mirror', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_209_{cval=1.0, mode='grid-mirror', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_210_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_211_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_212_{cval=1.0, mode='grid-constant', order=0, output='f', prefilter=True}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_213_{cval=1.0, mode='grid-constant', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_214_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_215_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_216_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_217_{cval=1.0, mode='grid-constant', order=1, output='f', prefilter=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_218_{cval=1.0, mode='grid-constant', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_219_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_220_{cval=1.0, mode='grid-constant', order=2, output=None, prefilter=True}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_221_{cval=1.0, mode='grid-constant', order=2, output=float64, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_222_{cval=1.0, mode='grid-constant', order=2, output='f', prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_223_{cval=1.0, mode='grid-constant', order=2, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_224_{cval=1.0, mode='grid-constant', order=2, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_225_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_226_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_227_{cval=1.0, mode='grid-constant', order=3, output='f', prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_228_{cval=1.0, mode='grid-constant', order=3, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_229_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_230_{cval=1.0, mode='grid-constant', order=4, output=None, prefilter=True}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_231_{cval=1.0, mode='grid-constant', order=4, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_232_{cval=1.0, mode='grid-constant', order=4, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_233_{cval=1.0, mode='grid-constant', order=4, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_234_{cval=1.0, mode='grid-constant', order=4, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_235_{cval=1.0, mode='grid-constant', order=5, output=None, prefilter=True}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_236_{cval=1.0, mode='grid-constant', order=5, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_237_{cval=1.0, mode='grid-constant', order=5, output='f', prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_238_{cval=1.0, mode='grid-constant', order=5, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_float_nd_coords[_param_239_{cval=1.0, mode='grid-constant', order=5, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True}] | 11.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_1_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True}] | 5.64 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_2_{cval=1.0, mode='constant', order=0, output='f', prefilter=True}] | 11.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_3_{cval=1.0, mode='constant', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_4_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_5_{cval=1.0, mode='constant', order=1, output=None, prefilter=True}] | 11.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_6_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True}] | 5.67 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_7_{cval=1.0, mode='constant', order=1, output='f', prefilter=True}] | 11.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_8_{cval=1.0, mode='constant', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_9_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_10_{cval=1.0, mode='constant', order=2, output=None, prefilter=True}] | 6.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_11_{cval=1.0, mode='constant', order=2, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_12_{cval=1.0, mode='constant', order=2, output='f', prefilter=True}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_13_{cval=1.0, mode='constant', order=2, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_14_{cval=1.0, mode='constant', order=2, output='empty', prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_15_{cval=1.0, mode='constant', order=3, output=None, prefilter=True}] | 7.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_16_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_17_{cval=1.0, mode='constant', order=3, output='f', prefilter=True}] | 1.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_18_{cval=1.0, mode='constant', order=3, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_19_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_20_{cval=1.0, mode='constant', order=4, output=None, prefilter=True}] | 7.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_21_{cval=1.0, mode='constant', order=4, output=float64, prefilter=True}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_22_{cval=1.0, mode='constant', order=4, output='f', prefilter=True}] | 1.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_23_{cval=1.0, mode='constant', order=4, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_24_{cval=1.0, mode='constant', order=4, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_25_{cval=1.0, mode='constant', order=5, output=None, prefilter=True}] | 8.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_26_{cval=1.0, mode='constant', order=5, output=float64, prefilter=True}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_27_{cval=1.0, mode='constant', order=5, output='f', prefilter=True}] | 1.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_28_{cval=1.0, mode='constant', order=5, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_29_{cval=1.0, mode='constant', order=5, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_30_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True}] | 11.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_31_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True}] | 5.64 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_32_{cval=1.0, mode='nearest', order=0, output='f', prefilter=True}] | 11.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_33_{cval=1.0, mode='nearest', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_34_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_35_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True}] | 11.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_36_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True}] | 5.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_37_{cval=1.0, mode='nearest', order=1, output='f', prefilter=True}] | 11.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_38_{cval=1.0, mode='nearest', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_39_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_40_{cval=1.0, mode='nearest', order=2, output=None, prefilter=True}] | 6.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_41_{cval=1.0, mode='nearest', order=2, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_42_{cval=1.0, mode='nearest', order=2, output='f', prefilter=True}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_43_{cval=1.0, mode='nearest', order=2, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_44_{cval=1.0, mode='nearest', order=2, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_45_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True}] | 6.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_46_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_47_{cval=1.0, mode='nearest', order=3, output='f', prefilter=True}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_48_{cval=1.0, mode='nearest', order=3, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_49_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_50_{cval=1.0, mode='nearest', order=4, output=None, prefilter=True}] | 6.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_51_{cval=1.0, mode='nearest', order=4, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_52_{cval=1.0, mode='nearest', order=4, output='f', prefilter=True}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_53_{cval=1.0, mode='nearest', order=4, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_54_{cval=1.0, mode='nearest', order=4, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_55_{cval=1.0, mode='nearest', order=5, output=None, prefilter=True}] | 6.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_56_{cval=1.0, mode='nearest', order=5, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_57_{cval=1.0, mode='nearest', order=5, output='f', prefilter=True}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_58_{cval=1.0, mode='nearest', order=5, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_59_{cval=1.0, mode='nearest', order=5, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_60_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True}] | 11.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_61_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True}] | 5.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_62_{cval=1.0, mode='mirror', order=0, output='f', prefilter=True}] | 11.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_63_{cval=1.0, mode='mirror', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_64_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_65_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True}] | 11.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_66_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True}] | 5.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_67_{cval=1.0, mode='mirror', order=1, output='f', prefilter=True}] | 11.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_68_{cval=1.0, mode='mirror', order=1, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_69_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_70_{cval=1.0, mode='mirror', order=2, output=None, prefilter=True}] | 6.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_71_{cval=1.0, mode='mirror', order=2, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_72_{cval=1.0, mode='mirror', order=2, output='f', prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_73_{cval=1.0, mode='mirror', order=2, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_74_{cval=1.0, mode='mirror', order=2, output='empty', prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_75_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True}] | 6.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_76_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_77_{cval=1.0, mode='mirror', order=3, output='f', prefilter=True}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_78_{cval=1.0, mode='mirror', order=3, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_79_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_80_{cval=1.0, mode='mirror', order=4, output=None, prefilter=True}] | 6.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_81_{cval=1.0, mode='mirror', order=4, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_82_{cval=1.0, mode='mirror', order=4, output='f', prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_83_{cval=1.0, mode='mirror', order=4, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_84_{cval=1.0, mode='mirror', order=4, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_85_{cval=1.0, mode='mirror', order=5, output=None, prefilter=True}] | 6.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_86_{cval=1.0, mode='mirror', order=5, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_87_{cval=1.0, mode='mirror', order=5, output='f', prefilter=True}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_88_{cval=1.0, mode='mirror', order=5, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_89_{cval=1.0, mode='mirror', order=5, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_90_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True}] | 11.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_91_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True}] | 5.66 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_92_{cval=1.0, mode='wrap', order=0, output='f', prefilter=True}] | 11.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_93_{cval=1.0, mode='wrap', order=0, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_94_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_95_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True}] | 11.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_96_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True}] | 5.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_97_{cval=1.0, mode='wrap', order=1, output='f', prefilter=True}] | 11.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_98_{cval=1.0, mode='wrap', order=1, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_99_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_100_{cval=1.0, mode='wrap', order=2, output=None, prefilter=True}] | 6.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_101_{cval=1.0, mode='wrap', order=2, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_102_{cval=1.0, mode='wrap', order=2, output='f', prefilter=True}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_103_{cval=1.0, mode='wrap', order=2, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_104_{cval=1.0, mode='wrap', order=2, output='empty', prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_105_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True}] | 7.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_106_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_107_{cval=1.0, mode='wrap', order=3, output='f', prefilter=True}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_108_{cval=1.0, mode='wrap', order=3, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_109_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_110_{cval=1.0, mode='wrap', order=4, output=None, prefilter=True}] | 6.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_111_{cval=1.0, mode='wrap', order=4, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_112_{cval=1.0, mode='wrap', order=4, output='f', prefilter=True}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_113_{cval=1.0, mode='wrap', order=4, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_114_{cval=1.0, mode='wrap', order=4, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_115_{cval=1.0, mode='wrap', order=5, output=None, prefilter=True}] | 7.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_116_{cval=1.0, mode='wrap', order=5, output=float64, prefilter=True}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_117_{cval=1.0, mode='wrap', order=5, output='f', prefilter=True}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_118_{cval=1.0, mode='wrap', order=5, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_119_{cval=1.0, mode='wrap', order=5, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_120_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True}] | 11.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_121_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True}] | 5.66 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_122_{cval=1.0, mode='grid-wrap', order=0, output='f', prefilter=True}] | 11.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_123_{cval=1.0, mode='grid-wrap', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_124_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_125_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True}] | 11.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_126_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True}] | 5.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_127_{cval=1.0, mode='grid-wrap', order=1, output='f', prefilter=True}] | 11.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_128_{cval=1.0, mode='grid-wrap', order=1, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_129_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_130_{cval=1.0, mode='grid-wrap', order=2, output=None, prefilter=True}] | 6.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_131_{cval=1.0, mode='grid-wrap', order=2, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_132_{cval=1.0, mode='grid-wrap', order=2, output='f', prefilter=True}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_133_{cval=1.0, mode='grid-wrap', order=2, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_134_{cval=1.0, mode='grid-wrap', order=2, output='empty', prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_135_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True}] | 6.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_136_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_137_{cval=1.0, mode='grid-wrap', order=3, output='f', prefilter=True}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_138_{cval=1.0, mode='grid-wrap', order=3, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_139_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_140_{cval=1.0, mode='grid-wrap', order=4, output=None, prefilter=True}] | 6.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_141_{cval=1.0, mode='grid-wrap', order=4, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_142_{cval=1.0, mode='grid-wrap', order=4, output='f', prefilter=True}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_143_{cval=1.0, mode='grid-wrap', order=4, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_144_{cval=1.0, mode='grid-wrap', order=4, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_145_{cval=1.0, mode='grid-wrap', order=5, output=None, prefilter=True}] | 6.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_146_{cval=1.0, mode='grid-wrap', order=5, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_147_{cval=1.0, mode='grid-wrap', order=5, output='f', prefilter=True}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_148_{cval=1.0, mode='grid-wrap', order=5, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_149_{cval=1.0, mode='grid-wrap', order=5, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_150_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True}] | 11.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_151_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True}] | 5.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_152_{cval=1.0, mode='reflect', order=0, output='f', prefilter=True}] | 11.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_153_{cval=1.0, mode='reflect', order=0, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_154_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_155_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True}] | 11.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_156_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True}] | 5.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_157_{cval=1.0, mode='reflect', order=1, output='f', prefilter=True}] | 11.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_158_{cval=1.0, mode='reflect', order=1, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_159_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_160_{cval=1.0, mode='reflect', order=2, output=None, prefilter=True}] | 6.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_161_{cval=1.0, mode='reflect', order=2, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_162_{cval=1.0, mode='reflect', order=2, output='f', prefilter=True}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_163_{cval=1.0, mode='reflect', order=2, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_164_{cval=1.0, mode='reflect', order=2, output='empty', prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_165_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True}] | 6.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_166_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_167_{cval=1.0, mode='reflect', order=3, output='f', prefilter=True}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_168_{cval=1.0, mode='reflect', order=3, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_169_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_170_{cval=1.0, mode='reflect', order=4, output=None, prefilter=True}] | 6.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_171_{cval=1.0, mode='reflect', order=4, output=float64, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_172_{cval=1.0, mode='reflect', order=4, output='f', prefilter=True}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_173_{cval=1.0, mode='reflect', order=4, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_174_{cval=1.0, mode='reflect', order=4, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_175_{cval=1.0, mode='reflect', order=5, output=None, prefilter=True}] | 6.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_176_{cval=1.0, mode='reflect', order=5, output=float64, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_177_{cval=1.0, mode='reflect', order=5, output='f', prefilter=True}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_178_{cval=1.0, mode='reflect', order=5, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_179_{cval=1.0, mode='reflect', order=5, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_180_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True}] | 11.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_181_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True}] | 5.67 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_182_{cval=1.0, mode='grid-mirror', order=0, output='f', prefilter=True}] | 11.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_183_{cval=1.0, mode='grid-mirror', order=0, output=float, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_184_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_185_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True}] | 11.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_186_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True}] | 5.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_187_{cval=1.0, mode='grid-mirror', order=1, output='f', prefilter=True}] | 11.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_188_{cval=1.0, mode='grid-mirror', order=1, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_189_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_190_{cval=1.0, mode='grid-mirror', order=2, output=None, prefilter=True}] | 6.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_191_{cval=1.0, mode='grid-mirror', order=2, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_192_{cval=1.0, mode='grid-mirror', order=2, output='f', prefilter=True}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_193_{cval=1.0, mode='grid-mirror', order=2, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_194_{cval=1.0, mode='grid-mirror', order=2, output='empty', prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_195_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True}] | 6.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_196_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_197_{cval=1.0, mode='grid-mirror', order=3, output='f', prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_198_{cval=1.0, mode='grid-mirror', order=3, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_199_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_200_{cval=1.0, mode='grid-mirror', order=4, output=None, prefilter=True}] | 6.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_201_{cval=1.0, mode='grid-mirror', order=4, output=float64, prefilter=True}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_202_{cval=1.0, mode='grid-mirror', order=4, output='f', prefilter=True}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_203_{cval=1.0, mode='grid-mirror', order=4, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_204_{cval=1.0, mode='grid-mirror', order=4, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_205_{cval=1.0, mode='grid-mirror', order=5, output=None, prefilter=True}] | 6.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_206_{cval=1.0, mode='grid-mirror', order=5, output=float64, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_207_{cval=1.0, mode='grid-mirror', order=5, output='f', prefilter=True}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_208_{cval=1.0, mode='grid-mirror', order=5, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_209_{cval=1.0, mode='grid-mirror', order=5, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_210_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True}] | 11.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_211_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True}] | 5.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_212_{cval=1.0, mode='grid-constant', order=0, output='f', prefilter=True}] | 11.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_213_{cval=1.0, mode='grid-constant', order=0, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_214_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_215_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True}] | 11.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_216_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True}] | 5.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_217_{cval=1.0, mode='grid-constant', order=1, output='f', prefilter=True}] | 11.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_218_{cval=1.0, mode='grid-constant', order=1, output=float, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_219_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_220_{cval=1.0, mode='grid-constant', order=2, output=None, prefilter=True}] | 6.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_221_{cval=1.0, mode='grid-constant', order=2, output=float64, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_222_{cval=1.0, mode='grid-constant', order=2, output='f', prefilter=True}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_223_{cval=1.0, mode='grid-constant', order=2, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_224_{cval=1.0, mode='grid-constant', order=2, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_225_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True}] | 6.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_226_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_227_{cval=1.0, mode='grid-constant', order=3, output='f', prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_228_{cval=1.0, mode='grid-constant', order=3, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_229_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_230_{cval=1.0, mode='grid-constant', order=4, output=None, prefilter=True}] | 6.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_231_{cval=1.0, mode='grid-constant', order=4, output=float64, prefilter=True}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_232_{cval=1.0, mode='grid-constant', order=4, output='f', prefilter=True}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_233_{cval=1.0, mode='grid-constant', order=4, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_234_{cval=1.0, mode='grid-constant', order=4, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_235_{cval=1.0, mode='grid-constant', order=5, output=None, prefilter=True}] | 7.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_236_{cval=1.0, mode='grid-constant', order=5, output=float64, prefilter=True}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_237_{cval=1.0, mode='grid-constant', order=5, output='f', prefilter=True}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_238_{cval=1.0, mode='grid-constant', order=5, output=float, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinates::test_map_coordinates_int[_param_239_{cval=1.0, mode='grid-constant', order=5, output='empty', prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_0_{mode='constant', order=0}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_1_{mode='constant', order=1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_2_{mode='constant', order=2}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_3_{mode='constant', order=3}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_4_{mode='constant', order=4}] | 1.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_5_{mode='constant', order=5}] | 1.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_6_{mode='nearest', order=0}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_7_{mode='nearest', order=1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_8_{mode='nearest', order=2}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_9_{mode='nearest', order=3}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_10_{mode='nearest', order=4}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_11_{mode='nearest', order=5}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_12_{mode='mirror', order=0}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_13_{mode='mirror', order=1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_14_{mode='mirror', order=2}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_15_{mode='mirror', order=3}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_16_{mode='mirror', order=4}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_17_{mode='mirror', order=5}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_18_{mode='wrap', order=0}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_19_{mode='wrap', order=1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_20_{mode='wrap', order=2}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_21_{mode='wrap', order=3}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_22_{mode='wrap', order=4}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_23_{mode='wrap', order=5}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_24_{mode='grid-wrap', order=0}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_25_{mode='grid-wrap', order=1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_26_{mode='grid-wrap', order=2}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_27_{mode='grid-wrap', order=3}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_28_{mode='grid-wrap', order=4}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_29_{mode='grid-wrap', order=5}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_30_{mode='reflect', order=0}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_31_{mode='reflect', order=1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_32_{mode='reflect', order=2}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_33_{mode='reflect', order=3}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_34_{mode='reflect', order=4}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_35_{mode='reflect', order=5}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_36_{mode='grid-mirror', order=0}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_37_{mode='grid-mirror', order=1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_38_{mode='grid-mirror', order=2}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_39_{mode='grid-mirror', order=3}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_40_{mode='grid-mirror', order=4}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_41_{mode='grid-mirror', order=5}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_42_{mode='grid-constant', order=0}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_43_{mode='grid-constant', order=1}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_44_{mode='grid-constant', order=2}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestMapCoordinatesHalfInteger::test_map_coordinates_float[_param_45_{mode='grid-constant', order=3}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_0_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_3_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_4_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_5_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_6_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_7_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_8_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_9_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_10_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_11_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_12_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_13_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_14_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_15_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_16_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_17_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_18_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_19_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_20_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_21_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_22_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_23_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_24_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_25_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_26_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_27_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_28_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_29_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_30_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_31_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_32_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_33_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_34_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_35_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_36_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_37_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_38_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_39_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_40_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_41_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_42_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_43_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_44_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_45_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_46_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_47_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_48_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_49_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_50_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_51_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_52_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_53_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_54_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_55_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_56_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_57_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_58_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_59_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_60_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_61_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_62_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_63_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_64_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_65_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_66_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_67_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_68_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_69_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_70_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_71_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_72_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_73_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_74_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_75_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_76_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_77_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_78_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_79_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_80_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_81_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_82_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_83_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_84_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_85_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_86_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_87_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_88_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_89_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_90_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_91_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_92_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_93_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_94_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_95_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_96_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_97_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_98_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_99_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_100_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_101_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_102_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_103_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_104_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_105_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_106_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_107_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_108_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_109_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_110_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_111_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_112_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_113_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_114_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_115_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_116_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_117_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_118_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_119_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_120_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_121_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_122_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_123_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_124_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_125_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_126_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_127_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_128_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_129_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_130_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_131_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_132_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_133_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_134_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_135_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_136_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_137_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_138_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_139_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_140_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_141_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_142_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_143_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_144_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_145_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_146_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_147_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_148_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_149_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_150_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_151_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_152_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_153_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_154_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_155_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_156_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_157_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_158_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_159_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_160_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_161_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_162_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_163_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_164_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_165_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_166_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_167_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_168_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_169_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_170_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_171_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_172_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_173_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_174_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_175_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_176_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_177_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_178_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_179_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_180_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_181_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_182_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_183_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_184_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_185_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_186_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_187_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_188_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_189_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_190_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_191_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_192_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_193_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_194_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_195_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_196_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_197_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_198_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_199_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_200_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_201_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_202_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_203_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_204_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_205_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_206_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_207_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_208_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_209_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_210_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_211_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_212_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_213_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_214_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_215_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_216_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_217_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_218_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_219_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_220_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_221_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_222_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_223_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_224_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_225_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_226_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_227_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_228_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_229_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_230_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_231_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_232_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_233_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_234_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_235_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_236_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_237_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_238_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_239_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_240_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_241_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_242_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_243_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_244_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_245_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_246_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_247_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_248_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_249_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_250_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_251_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_252_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_253_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_254_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_255_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_256_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_257_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_258_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_259_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_260_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_261_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_262_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_263_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_264_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_265_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_266_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_267_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_268_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_269_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_270_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_271_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_272_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_273_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_274_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_275_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_276_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_277_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_278_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_279_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_280_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_281_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_282_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_283_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_284_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_285_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_286_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_287_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_288_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_289_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_290_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_291_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_292_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_293_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_294_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_295_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_296_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_297_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_298_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_299_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_300_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_301_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_302_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_303_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_304_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_305_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_306_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_307_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_308_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_309_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_310_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_311_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_312_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_313_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_314_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_315_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_316_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_317_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_318_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_319_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_320_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_321_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_322_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_323_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_324_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_325_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_326_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_327_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_328_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_329_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_330_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_331_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_332_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_333_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_334_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_335_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_336_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_337_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_338_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_339_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_340_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_341_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_342_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_343_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_344_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_345_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_346_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_347_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_348_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_349_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_350_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_351_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_352_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_353_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_354_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_355_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_356_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_357_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_358_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_359_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_360_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_361_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_362_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_363_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_364_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_365_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_366_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_367_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_368_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_369_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_370_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_371_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_372_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_373_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_374_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_375_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_376_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_377_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_378_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_379_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_380_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_381_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_382_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_383_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_384_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_385_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_386_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_387_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_388_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_389_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_390_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_391_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_392_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_393_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_394_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_395_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_396_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_397_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_398_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_399_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_400_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_401_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_402_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_403_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_404_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_405_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_406_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_407_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_408_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_409_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_410_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_411_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_412_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_413_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_414_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_415_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_416_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_417_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_418_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_419_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_420_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_421_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_422_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_423_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_424_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_425_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_426_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_427_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_428_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_429_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_430_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_431_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_432_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_433_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_434_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_435_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_436_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_437_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_438_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_439_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_440_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_441_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_442_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_443_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_444_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_445_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_446_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_447_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_448_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_449_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_450_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_451_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_452_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_453_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_454_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_455_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_456_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_457_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_458_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_459_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_460_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_461_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_462_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_463_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_464_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_465_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_466_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_467_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_468_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_469_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_470_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_471_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_472_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_473_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_474_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_475_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_476_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_477_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_478_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_479_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_480_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_481_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_482_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_483_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_484_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_485_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_486_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_487_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_488_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_489_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_490_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_491_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_492_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_493_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_494_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_495_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_496_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_497_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_498_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_499_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_500_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_501_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_502_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_503_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_504_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_505_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_506_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_507_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_508_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_509_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_510_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_511_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_512_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_513_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_514_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_515_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_516_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_517_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_518_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_519_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_520_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_521_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_522_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_523_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_524_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_525_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_526_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_527_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_528_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_529_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_530_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_531_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_532_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_533_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_534_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_535_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_536_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_537_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_538_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_539_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_540_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_541_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_542_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_543_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_544_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_545_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_546_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_547_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_548_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_549_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_550_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_551_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_552_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_553_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_554_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_555_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_556_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_557_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_558_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_559_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_560_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_561_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_562_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_563_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_564_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_565_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_566_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_567_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_568_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_569_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_570_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_571_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_572_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_573_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_574_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_575_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_576_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_577_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_578_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_579_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_580_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_581_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_582_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_583_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_584_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_585_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_586_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_587_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_588_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_589_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_590_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_591_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_592_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_593_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_594_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_595_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_596_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_597_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_598_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_599_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_600_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_601_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_602_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_603_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_604_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_605_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_606_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_607_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_608_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_609_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_610_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_611_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_612_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_613_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_614_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_615_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_616_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_617_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_618_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_619_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_620_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_621_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_622_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_623_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_624_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_625_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_626_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_627_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_628_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_629_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_630_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_631_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_632_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_633_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_634_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_635_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_636_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_637_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_638_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_639_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_640_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_641_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_642_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_643_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_644_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_645_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_646_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_647_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_648_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_649_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_650_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_651_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_652_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_653_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_654_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_655_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_656_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_657_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_658_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_659_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_660_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_661_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_662_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_663_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_664_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_665_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_666_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_667_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_668_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_669_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_670_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_671_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_672_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_673_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_674_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_675_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_676_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_677_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_678_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_679_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_680_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_681_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_682_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_683_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_684_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_685_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_686_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_687_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_688_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_689_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_690_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_691_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_692_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_693_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_694_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_695_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_696_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_697_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_698_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_699_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_700_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_701_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_702_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_703_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_704_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_705_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_706_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_707_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_708_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_709_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_710_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_711_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_712_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_713_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_714_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_715_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_716_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_717_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_718_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_719_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_720_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_721_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_722_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_723_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_724_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_725_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_726_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_727_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_728_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_729_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_730_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_731_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_732_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_733_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_734_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_735_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_736_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_737_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_738_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_739_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_740_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_741_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_742_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_743_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_744_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_745_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_746_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_747_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_748_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_749_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_750_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_751_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_752_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_753_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_754_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_755_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_756_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_757_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_758_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_759_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_760_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_761_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_762_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_763_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_764_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_765_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_766_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_767_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_768_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_769_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_770_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_771_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_772_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_773_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_774_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_775_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_776_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_777_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_778_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_779_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_780_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_781_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_782_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_783_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_784_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_785_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_786_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_787_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_788_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_789_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_790_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_791_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_792_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_793_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_794_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_795_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_796_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_797_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_798_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_799_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_800_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_801_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_802_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_803_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_804_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_805_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_806_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_807_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_808_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_809_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_810_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_811_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_812_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_813_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_814_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_815_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_816_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_817_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_818_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_819_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_820_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_821_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_822_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_823_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_824_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_825_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_826_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_827_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_828_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_829_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_830_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_831_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_832_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_833_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_834_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_835_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_836_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_837_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_838_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_839_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_840_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_841_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_842_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_843_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_844_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_845_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_846_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_847_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_848_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_849_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_850_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_851_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_852_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_853_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_854_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_855_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_856_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_857_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_858_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_859_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_860_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_861_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_862_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_863_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_864_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_865_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_866_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_867_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_868_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_869_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_870_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_871_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_872_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_873_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_874_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_875_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_876_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_877_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_878_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_879_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_880_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_881_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_882_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_883_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_884_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_885_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_886_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_887_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_888_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_889_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_890_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_891_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_892_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_893_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_894_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_895_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_896_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_897_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_898_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_899_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_900_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_901_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_902_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_903_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_904_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_905_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_906_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_907_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_908_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_909_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_910_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_911_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_912_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_913_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_914_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_915_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_916_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_917_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_918_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_919_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_920_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_921_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_922_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_923_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_924_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_925_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_926_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_927_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_928_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_929_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_930_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_931_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_932_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_933_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_934_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_935_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_936_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_937_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_938_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_939_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_940_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_941_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_942_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_943_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_944_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_945_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_946_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_947_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_948_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_949_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_950_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_951_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_952_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_953_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_954_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_955_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_956_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_957_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_958_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_959_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_960_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_961_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_962_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_963_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_964_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_965_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_966_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_967_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_968_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_969_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_970_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_971_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_972_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_973_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_974_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_975_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_976_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_977_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_978_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_979_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_980_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_981_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_982_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_983_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_984_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_985_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_986_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_987_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_988_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_989_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_990_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_991_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_992_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_993_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_994_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_995_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_996_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_997_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_998_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_999_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1000_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1001_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1002_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1003_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1004_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1005_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1006_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1007_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1008_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1009_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1010_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1011_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1012_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1013_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1014_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1015_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1016_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1017_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1018_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1019_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1020_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1021_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1022_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1023_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1024_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1025_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1026_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1027_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1028_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1029_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1030_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1031_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1032_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1033_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1034_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1035_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1036_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1037_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1038_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1039_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1040_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1041_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1042_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1043_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1044_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1045_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1046_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1047_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1048_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1049_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1050_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1051_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1052_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1053_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1054_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1055_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1056_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1057_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1058_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1059_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1060_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1061_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1062_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1063_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1064_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1065_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1066_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1067_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1068_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1069_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1070_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1071_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1072_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1073_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1074_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1075_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1076_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1077_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1078_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1079_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1080_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1081_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1082_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1083_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1084_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1085_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1086_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1087_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1088_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1089_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1090_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1091_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1092_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1093_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1094_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1095_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1096_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1097_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1098_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1099_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1100_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1101_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1102_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1103_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1104_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1105_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1106_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1107_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1108_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1109_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1110_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1111_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1112_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1113_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1114_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1115_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1116_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1117_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1118_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1119_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1120_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1121_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1122_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1123_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1124_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1125_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1126_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1127_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1128_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1129_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1130_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1131_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1132_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1133_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1134_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1135_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1136_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1137_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1138_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1139_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1140_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1141_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1142_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1143_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1144_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1145_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1146_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1147_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1148_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1149_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1150_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1151_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1152_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1153_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1154_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1155_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1156_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1157_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1158_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1159_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1160_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1161_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1162_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1163_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1164_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1165_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1166_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1167_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1168_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1169_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1170_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1171_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1172_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1173_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1174_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1175_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1176_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1177_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1178_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1179_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1180_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1181_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1182_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1183_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1184_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1185_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1186_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1187_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1188_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1189_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1190_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1191_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1192_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1193_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1194_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1195_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1196_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1197_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1198_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1199_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1200_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1201_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1202_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1203_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1204_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1205_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1206_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1207_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1208_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1209_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1210_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1211_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1212_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1213_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1214_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1215_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1216_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1217_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1218_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1219_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1220_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1221_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1222_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1223_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1224_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1225_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1226_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1227_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1228_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1229_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1230_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1231_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1232_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1233_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1234_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1235_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1236_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1237_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1238_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1239_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1240_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1241_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1242_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1243_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1244_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1245_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1246_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1247_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1248_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1249_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1250_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1251_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1252_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1253_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1254_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1255_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1256_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1257_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1258_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1259_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1260_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1261_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1262_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1263_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1264_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1265_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1266_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1267_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1268_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1269_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1270_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1271_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1272_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1273_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1274_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1275_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1276_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1277_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1278_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1279_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1280_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1281_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1282_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1283_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1284_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1285_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1286_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1287_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1288_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1289_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1290_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1291_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1292_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1293_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1294_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1295_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1296_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1297_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1298_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1299_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1300_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1301_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1302_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1303_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1304_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1305_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1306_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1307_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1308_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1309_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1310_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1311_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1312_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1313_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1314_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1315_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1316_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1317_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1318_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1319_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1320_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1321_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1322_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1323_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1324_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1325_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1326_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1327_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1328_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1329_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1330_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1331_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1332_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1333_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1334_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1335_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1336_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1337_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1338_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1339_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1340_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1341_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1342_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1343_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1344_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1345_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1346_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1347_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1348_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1349_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1350_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1351_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1352_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1353_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1354_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1355_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1356_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1357_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1358_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1359_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1360_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1361_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1362_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1363_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1364_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1365_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1366_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1367_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1368_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1369_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1370_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1371_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1372_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1373_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1374_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1375_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1376_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1377_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1378_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1379_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1380_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1381_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1382_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1383_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1384_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1385_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1386_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1387_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1388_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1389_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1390_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1391_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1392_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1393_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1394_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1395_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1396_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1397_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1398_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1399_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1400_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1401_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1402_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1403_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1404_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1405_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1406_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1407_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1408_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1409_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1410_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1411_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1412_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1413_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1414_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1415_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1416_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1417_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1418_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1419_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1420_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1421_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1422_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1423_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1424_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1425_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1426_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1427_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1428_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1429_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1430_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1431_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1432_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1433_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1434_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1435_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1436_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1437_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1438_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1439_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1440_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1441_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1442_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1443_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1444_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1445_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1446_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1447_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1448_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1449_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1450_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1451_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1452_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1453_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1454_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1455_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1456_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1457_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1458_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1459_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1460_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1461_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1462_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1463_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1464_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1465_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1466_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1467_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1468_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1469_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1470_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1471_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1472_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1473_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1474_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1475_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1476_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1477_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1478_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1479_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1480_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1481_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1482_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1483_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1484_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1485_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1486_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1487_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1488_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1489_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1490_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1491_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1492_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1493_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1494_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1495_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1496_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1497_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1498_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1499_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1500_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1501_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1502_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1503_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1504_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1505_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1506_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1507_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1508_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1509_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1510_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1511_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1512_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1513_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1514_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1515_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1516_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1517_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1518_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1519_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1520_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1521_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1522_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1523_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1524_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1525_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1526_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1527_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1528_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1529_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1530_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1531_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1532_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1533_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1534_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1535_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1536_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1537_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1538_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1539_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1540_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1541_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1542_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1543_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1544_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1545_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1546_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1547_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1548_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1549_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1550_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1551_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1552_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1553_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1554_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1555_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1556_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1557_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1558_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1559_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1560_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1561_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1562_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1563_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1564_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1565_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1566_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1567_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1568_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1569_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1570_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1571_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1572_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1573_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1574_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1575_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1576_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1577_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1578_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1579_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1580_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1581_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1582_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1583_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1584_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1585_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1586_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1587_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1588_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1589_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1590_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1591_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1592_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1593_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1594_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1595_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1596_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1597_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1598_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1599_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1600_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1601_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1602_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1603_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1604_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1605_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1606_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1607_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1608_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1609_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1610_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1611_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1612_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1613_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1614_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1615_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1616_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1617_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1618_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1619_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1620_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1621_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1622_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1623_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1624_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1625_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1626_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1627_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1628_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1629_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1630_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1631_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1632_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1633_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1634_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1635_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1636_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1637_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1638_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1639_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1640_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1641_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1642_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1643_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1644_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1645_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1646_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1647_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1648_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1649_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1650_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1651_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1652_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1653_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1654_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1655_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1656_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1657_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1658_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1659_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1660_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1661_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1662_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1663_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1664_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1665_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1666_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1667_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1668_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1669_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1670_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1671_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1672_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1673_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1674_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1675_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1676_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1677_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1678_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1679_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1680_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1681_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1682_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1683_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1684_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1685_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1686_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1687_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1688_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1689_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1690_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1691_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1692_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1693_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1694_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1695_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1696_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1697_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1698_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1699_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1700_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1701_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1702_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1703_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1704_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1705_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1706_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1707_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1708_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1709_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1710_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1711_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1712_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1713_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1714_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1715_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1716_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1717_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1718_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1719_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1720_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1721_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1722_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1723_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1724_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1725_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1726_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1727_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1728_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1729_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1730_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1731_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1732_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1733_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1734_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1735_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1736_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1737_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1738_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1739_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1740_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1741_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1742_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1743_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1744_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1745_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1746_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1747_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1748_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1749_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1750_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1751_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1752_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1753_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1754_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1755_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1756_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1757_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1758_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1759_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1760_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1761_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1762_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1763_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1764_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1765_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1766_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1767_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1768_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1769_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1770_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1771_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1772_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1773_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1774_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1775_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1776_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1777_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1778_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1779_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1780_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1781_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1782_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1783_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1784_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1785_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1786_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1787_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1788_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1789_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1790_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1791_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1792_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1793_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1794_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1795_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1796_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1797_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1798_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1799_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1800_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1801_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1802_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1803_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1804_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1805_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1806_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1807_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1808_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1809_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1810_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1811_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1812_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1813_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1814_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1815_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1816_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1817_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1818_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1819_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1820_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1821_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1822_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1823_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1824_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1825_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1826_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1827_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1828_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1829_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1830_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1831_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1832_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1833_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1834_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1835_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1836_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1837_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1838_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1839_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1840_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1841_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1842_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1843_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1844_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1845_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1846_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1847_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1848_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1849_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1850_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1851_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1852_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1853_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1854_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1855_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1856_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1857_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1858_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1859_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1860_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1861_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1862_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1863_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1864_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1865_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1866_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1867_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1868_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1869_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1870_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1871_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1872_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1873_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1874_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1875_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1876_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1877_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1878_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1879_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1880_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1881_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1882_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1883_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1884_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1885_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1886_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1887_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1888_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1889_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1890_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1891_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1892_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1893_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1894_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1895_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1896_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1897_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1898_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1899_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1900_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1901_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1902_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1903_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1904_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1905_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1906_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1907_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1908_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1909_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1910_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1911_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1912_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1913_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1914_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1915_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1916_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1917_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1918_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1919_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1920_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1921_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1922_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1923_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1924_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1925_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1926_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1927_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1928_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1929_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1930_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1931_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1932_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1933_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1934_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1935_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1936_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1937_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1938_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1939_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1940_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1941_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1942_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1943_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1944_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1945_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1946_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1947_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1948_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1949_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1950_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1951_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1952_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1953_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1954_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1955_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1956_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1957_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1958_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1959_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1960_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1961_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1962_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1963_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1964_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1965_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1966_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1967_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1968_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1969_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1970_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1971_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1972_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1973_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1974_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1975_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1976_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1977_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1978_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1979_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1980_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1981_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1982_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1983_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1984_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1985_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1986_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1987_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1988_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1989_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1990_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1991_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1992_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1993_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1994_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1995_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1996_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1997_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1998_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_1999_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2000_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2001_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2002_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2003_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2004_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2005_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2006_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2007_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2008_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2009_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2010_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2011_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2012_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2013_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2014_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2015_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2016_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2017_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2018_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2019_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2020_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2021_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2022_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2023_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2024_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2025_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2026_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2027_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2028_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2029_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2030_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2031_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2032_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2033_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2034_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2035_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2036_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2037_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2038_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2039_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2040_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2041_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2042_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2043_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2044_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2045_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2046_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2047_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2048_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2049_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2050_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2051_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2052_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2053_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2054_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2055_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2056_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2057_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2058_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2059_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2060_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2061_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2062_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2063_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2064_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2065_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2066_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2067_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2068_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2069_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2070_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2071_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2072_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2073_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2074_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2075_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2076_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2077_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2078_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2079_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2080_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2081_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2082_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2083_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2084_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2085_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2086_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2087_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2088_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2089_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2090_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2091_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2092_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2093_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2094_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2095_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2096_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2097_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2098_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2099_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2100_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2101_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2102_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2103_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2104_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2105_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2106_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2107_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2108_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2109_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2110_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2111_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2112_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2113_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2114_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2115_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2116_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2117_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2118_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2119_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2120_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2121_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2122_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2123_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2124_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2125_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2126_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2127_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2128_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2129_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2130_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2131_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2132_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2133_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2134_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2135_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2136_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2137_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2138_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2139_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2140_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2141_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2142_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2143_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2144_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2145_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2146_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2147_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2148_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2149_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2150_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2151_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2152_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2153_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2154_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2155_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2156_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2157_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2158_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2159_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2160_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2161_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2162_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2163_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2164_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2165_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2166_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2167_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2168_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2169_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2170_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2171_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2172_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2173_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2174_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2175_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2176_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2177_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2178_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2179_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2180_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2181_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2182_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2183_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2184_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2185_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2186_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2187_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2188_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2189_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2190_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2191_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2192_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2193_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2194_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2195_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2196_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2197_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2198_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2199_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2200_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2201_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2202_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2203_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2204_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2205_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2206_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2207_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2208_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2209_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2210_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2211_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2212_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2213_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2214_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2215_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2216_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2217_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2218_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2219_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2220_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2221_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2222_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2223_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2224_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2225_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2226_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2227_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2228_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2229_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2230_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2231_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2232_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2233_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2234_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2235_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2236_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2237_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2238_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2239_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2240_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2241_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2242_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2243_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2244_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2245_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2246_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2247_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2248_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2249_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2250_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2251_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2252_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2253_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2254_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2255_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2256_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2257_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2258_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2259_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2260_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2261_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2262_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2263_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2264_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2265_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2266_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2267_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2268_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2269_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2270_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2271_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2272_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2273_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2274_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2275_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2276_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2277_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2278_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2279_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2280_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2281_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2282_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2283_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2284_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2285_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2286_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2287_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2288_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2289_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2290_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2291_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2292_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2293_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2294_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2295_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2296_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2297_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2298_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2299_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2300_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2301_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2302_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_float[_param_2303_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_0_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_3_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_4_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_5_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_6_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_7_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_8_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_9_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_10_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_11_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_12_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_13_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_14_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_15_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_16_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_17_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_18_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.66 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_19_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_20_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_21_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_22_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_23_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_24_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_25_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_26_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_27_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_28_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_29_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_30_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_31_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_32_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_33_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_34_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_35_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_36_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_37_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_38_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_39_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_40_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_41_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_42_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_43_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_44_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_45_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_46_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_47_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_48_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_49_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_50_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_51_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_52_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_53_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_54_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_55_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_56_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_57_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_58_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_59_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_60_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_61_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_62_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_63_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_64_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_65_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_66_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_67_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_68_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_69_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_70_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_71_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_72_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_73_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_74_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_75_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_76_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_77_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_78_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_79_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_80_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_81_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_82_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_83_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_84_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_85_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_86_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_87_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_88_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_89_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_90_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_91_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_92_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_93_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_94_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_95_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_96_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_97_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_98_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_99_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_100_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_101_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_102_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_103_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_104_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_105_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_106_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_107_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_108_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_109_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_110_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_111_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_112_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_113_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_114_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_115_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_116_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_117_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_118_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_119_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_120_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_121_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_122_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_123_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_124_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_125_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_126_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_127_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_128_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_129_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_130_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_131_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_132_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_133_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_134_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_135_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_136_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_137_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_138_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_139_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_140_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_141_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_142_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_143_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_144_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_145_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_146_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_147_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_148_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_149_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_150_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_151_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_152_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_153_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_154_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_155_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_156_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_157_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_158_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_159_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_160_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_161_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_162_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_163_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_164_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_165_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_166_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_167_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_168_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_169_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_170_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_171_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_172_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_173_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_174_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_175_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_176_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_177_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_178_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_179_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_180_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_181_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_182_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_183_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_184_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_185_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_186_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_187_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_188_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_189_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_190_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_191_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_192_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_193_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_194_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_195_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_196_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_197_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_198_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_199_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_200_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_201_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_202_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_203_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_204_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_205_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_206_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_207_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_208_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_209_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_210_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_211_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_212_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_213_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_214_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_215_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_216_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_217_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_218_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_219_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_220_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_221_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_222_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_223_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_224_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_225_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_226_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_227_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_228_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_229_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_230_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_231_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_232_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_233_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_234_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_235_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_236_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_237_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_238_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_239_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_240_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_241_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_242_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_243_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_244_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_245_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_246_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_247_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_248_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_249_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_250_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_251_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_252_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_253_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_254_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_255_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_256_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_257_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_258_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_259_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_260_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_261_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_262_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_263_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_264_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_265_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_266_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_267_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_268_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_269_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_270_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_271_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_272_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_273_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_274_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_275_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_276_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_277_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_278_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_279_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_280_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_281_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_282_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_283_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_284_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_285_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_286_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_287_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_288_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_289_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_290_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_291_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_292_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_293_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_294_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_295_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_296_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_297_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_298_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_299_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_300_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_301_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_302_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_303_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_304_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_305_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_306_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_307_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_308_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_309_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_310_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_311_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_312_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_313_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_314_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_315_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_316_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_317_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_318_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_319_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_320_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_321_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_322_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_323_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_324_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_325_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_326_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_327_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_328_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_329_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_330_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_331_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_332_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_333_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_334_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_335_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_336_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_337_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_338_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_339_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_340_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_341_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_342_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_343_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_344_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_345_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_346_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_347_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_348_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_349_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_350_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_351_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_352_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_353_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_354_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_355_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_356_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_357_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_358_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_359_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_360_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_361_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_362_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_363_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_364_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_365_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_366_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_367_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_368_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_369_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_370_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_371_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_372_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_373_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_374_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_375_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_376_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_377_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_378_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_379_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_380_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_381_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_382_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_383_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_384_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_385_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_386_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_387_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_388_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_389_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_390_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_391_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_392_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_393_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_394_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_395_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_396_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_397_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_398_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_399_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_400_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_401_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_402_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_403_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_404_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_405_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_406_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_407_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_408_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_409_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_410_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_411_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_412_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_413_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_414_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_415_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_416_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_417_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_418_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_419_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_420_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_421_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_422_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_423_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_424_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_425_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_426_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_427_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_428_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_429_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_430_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_431_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_432_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_433_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_434_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_435_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_436_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_437_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_438_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_439_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_440_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_441_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_442_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_443_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_444_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_445_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_446_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_447_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_448_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_449_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_450_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_451_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_452_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_453_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_454_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_455_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_456_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_457_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_458_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_459_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_460_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_461_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_462_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_463_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_464_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_465_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_466_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_467_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_468_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_469_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_470_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_471_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_472_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_473_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_474_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_475_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_476_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_477_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_478_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_479_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_480_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_481_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_482_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_483_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_484_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_485_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_486_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_487_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_488_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_489_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_490_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_491_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_492_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_493_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_494_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_495_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_496_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_497_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_498_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_499_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_500_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_501_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_502_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_503_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_504_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_505_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_506_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_507_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_508_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_509_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_510_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_511_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_512_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_513_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_514_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_515_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_516_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_517_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_518_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_519_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_520_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_521_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_522_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_523_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_524_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_525_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_526_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_527_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_528_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_529_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_530_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_531_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_532_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_533_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_534_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_535_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 1.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_536_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_537_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_538_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_539_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_540_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_541_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_542_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_543_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_544_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_545_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_546_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_547_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_548_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_549_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_550_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_551_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_552_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_553_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_554_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_555_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_556_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_557_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_558_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_559_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_560_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_561_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_562_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_563_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_564_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_565_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_566_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_567_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_568_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_569_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_570_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_571_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_572_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_573_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_574_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_575_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_576_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_577_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_578_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_579_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_580_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_581_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_582_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_583_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_584_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_585_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_586_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_587_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_588_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_589_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_590_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_591_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_592_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_593_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_594_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.67 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_595_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_596_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_597_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_598_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_599_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_600_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_601_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_602_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_603_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_604_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_605_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_606_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_607_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_608_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_609_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_610_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_611_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_612_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_613_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_614_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_615_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_616_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_617_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_618_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_619_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_620_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_621_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_622_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_623_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_624_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_625_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_626_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_627_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_628_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_629_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_630_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_631_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_632_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_633_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_634_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_635_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_636_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_637_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_638_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_639_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_640_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_641_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_642_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_643_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_644_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_645_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_646_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_647_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_648_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_649_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_650_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_651_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_652_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_653_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_654_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_655_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_656_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_657_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_658_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_659_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_660_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_661_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_662_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_663_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_664_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_665_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_666_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_667_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_668_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_669_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_670_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_671_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_672_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_673_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_674_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_675_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_676_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_677_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_678_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_679_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_680_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_681_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_682_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_683_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_684_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_685_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_686_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_687_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_688_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_689_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_690_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_691_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_692_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_693_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_694_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_695_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_696_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_697_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_698_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_699_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_700_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_701_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_702_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_703_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_704_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_705_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_706_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_707_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_708_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_709_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_710_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_711_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_712_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_713_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_714_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_715_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_716_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_717_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_718_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_719_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_720_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_721_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_722_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_723_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_724_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_725_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_726_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_727_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_728_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_729_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_730_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_731_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_732_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_733_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_734_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_735_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_736_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_737_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_738_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_739_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_740_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_741_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_742_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_743_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_744_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_745_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_746_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_747_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_748_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_749_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_750_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_751_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_752_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_753_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_754_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_755_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_756_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_757_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_758_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_759_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_760_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_761_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_762_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_763_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_764_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_765_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_766_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_767_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_768_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_769_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_770_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_771_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_772_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_773_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_774_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_775_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_776_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_777_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_778_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_779_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_780_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_781_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_782_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_783_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_784_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_785_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_786_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_787_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_788_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_789_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_790_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_791_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_792_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_793_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_794_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_795_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_796_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_797_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_798_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_799_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_800_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_801_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_802_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_803_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_804_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_805_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_806_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_807_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_808_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_809_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_810_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_811_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_812_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_813_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_814_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_815_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_816_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_817_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_818_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_819_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_820_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_821_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_822_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_823_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_824_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_825_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_826_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_827_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_828_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_829_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_830_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_831_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_832_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_833_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_834_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_835_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_836_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_837_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_838_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_839_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_840_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_841_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_842_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_843_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_844_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_845_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_846_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_847_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_848_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_849_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_850_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_851_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_852_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_853_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_854_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_855_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_856_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_857_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_858_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_859_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_860_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_861_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_862_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_863_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_864_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_865_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_866_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_867_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_868_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_869_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_870_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_871_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_872_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_873_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_874_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_875_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_876_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_877_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_878_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_879_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_880_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_881_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_882_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_883_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_884_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_885_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_886_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_887_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_888_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_889_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_890_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_891_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_892_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_893_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_894_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_895_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_896_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_897_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_898_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_899_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_900_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_901_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_902_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_903_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_904_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_905_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_906_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_907_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_908_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_909_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_910_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_911_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_912_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_913_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_914_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_915_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_916_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_917_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_918_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_919_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_920_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_921_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_922_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_923_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_924_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_925_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_926_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_927_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_928_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_929_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_930_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_931_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_932_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_933_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_934_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_935_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_936_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_937_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_938_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_939_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_940_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_941_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_942_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_943_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_944_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_945_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_946_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_947_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_948_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_949_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_950_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_951_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_952_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_953_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_954_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_955_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_956_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_957_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_958_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_959_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_960_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_961_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_962_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_963_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_964_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_965_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_966_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_967_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_968_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_969_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_970_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_971_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_972_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_973_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_974_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_975_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_976_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_977_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_978_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_979_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_980_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_981_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_982_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_983_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_984_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_985_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_986_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_987_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_988_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_989_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_990_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_991_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_992_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_993_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_994_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_995_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_996_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_997_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_998_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_999_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1000_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1001_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1002_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1003_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1004_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1005_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1006_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1007_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1008_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1009_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1010_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1011_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1012_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1013_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1014_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1015_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1016_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1017_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1018_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1019_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1020_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1021_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1022_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1023_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1024_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1025_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1026_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1027_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1028_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1029_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1030_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1031_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1032_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1033_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1034_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1035_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1036_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1037_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1038_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1039_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1040_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1041_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1042_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1043_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1044_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1045_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1046_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1047_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1048_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1049_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1050_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1051_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1052_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1053_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1054_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1055_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1056_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1057_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1058_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1059_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1060_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1061_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1062_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1063_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1064_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1065_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1066_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1067_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1068_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1069_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1070_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1071_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1072_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1073_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1074_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1075_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1076_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1077_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1078_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1079_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1080_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1081_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1082_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1083_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1084_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1085_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1086_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1087_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1088_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1089_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1090_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1091_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1092_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1093_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1094_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1095_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1096_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1097_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1098_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1099_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1100_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1101_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1102_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1103_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1104_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1105_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 1.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1106_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1107_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1108_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1109_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1110_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 1.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1111_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 1.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1112_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1113_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1114_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1115_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1116_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1117_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1118_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1119_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1120_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1121_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1122_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1123_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1124_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1125_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1126_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1127_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1128_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1129_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1130_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1131_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1132_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1133_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1134_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1135_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1136_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1137_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1138_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1139_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1140_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1141_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1142_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1143_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1144_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1145_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1146_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1147_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1148_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1149_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1150_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1151_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1152_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1153_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1154_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1155_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1156_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1157_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1158_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1159_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1160_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1161_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1162_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1163_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1164_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1165_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1166_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1167_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1168_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1169_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1170_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1171_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1172_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1173_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1174_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1175_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1176_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1177_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1178_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1179_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1180_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1181_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1182_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1183_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1184_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1185_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1186_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1187_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1188_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1189_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1190_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1191_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1192_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1193_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1194_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1195_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1196_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1197_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1198_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1199_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1200_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1201_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1202_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1203_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1204_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1205_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1206_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1207_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1208_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1209_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1210_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1211_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1212_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1213_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1214_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1215_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1216_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1217_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1218_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1219_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1220_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1221_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1222_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1223_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1224_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1225_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1226_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1227_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1228_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1229_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1230_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1231_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1232_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1233_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1234_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1235_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1236_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1237_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1238_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1239_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1240_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1241_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1242_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1243_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1244_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1245_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1246_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1247_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1248_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1249_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1250_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1251_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1252_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1253_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1254_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1255_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1256_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1257_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1258_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1259_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1260_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1261_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1262_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1263_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1264_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1265_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1266_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1267_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1268_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1269_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1270_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1271_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1272_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1273_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1274_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1275_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1276_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1277_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1278_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1279_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1280_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1281_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1282_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1283_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1284_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1285_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1286_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1287_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1288_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1289_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1290_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1291_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1292_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1293_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1294_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1295_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1296_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1297_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1298_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1299_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1300_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1301_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1302_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1303_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1304_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1305_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1306_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1307_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1308_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1309_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1310_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1311_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1312_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1313_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1314_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1315_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1316_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1317_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1318_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1319_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1320_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1321_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1322_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1323_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1324_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1325_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1326_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1327_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1328_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1329_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1330_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1331_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1332_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1333_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1334_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1335_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1336_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1337_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1338_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1339_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1340_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1341_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1342_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1343_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1344_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1345_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1346_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1347_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1348_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1349_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1350_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1351_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1352_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1353_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1354_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1355_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1356_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1357_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1358_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1359_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1360_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1361_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1362_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1363_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1364_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1365_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1366_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1367_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1368_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1369_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1370_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1371_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1372_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1373_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1374_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1375_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1376_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1377_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1378_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1379_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1380_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1381_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1382_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1383_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1384_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1385_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1386_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1387_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1388_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1389_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1390_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1391_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1392_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1393_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1394_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1395_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1396_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1397_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1398_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1399_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1400_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1401_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1402_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1403_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1404_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1405_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1406_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1407_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1408_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1409_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1410_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1411_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1412_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1413_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1414_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1415_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1416_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1417_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1418_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1419_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1420_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1421_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1422_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1423_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1424_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1425_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1426_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1427_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1428_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1429_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1430_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1431_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1432_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1433_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1434_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1435_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1436_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1437_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1438_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1439_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1440_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1441_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1442_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1443_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1444_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1445_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1446_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1447_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1448_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1449_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1450_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1451_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1452_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1453_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1454_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1455_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1456_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1457_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1458_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1459_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1460_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1461_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1462_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1463_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1464_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1465_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1466_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1467_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1468_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1469_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1470_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1471_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1472_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1473_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1474_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1475_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1476_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1477_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1478_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1479_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1480_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1481_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1482_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1483_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1484_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1485_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1486_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1487_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1488_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1489_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1490_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1491_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1492_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1493_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1494_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1495_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1496_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1497_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1498_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1499_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1500_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1501_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1502_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1503_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1504_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1505_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1506_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1507_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1508_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1509_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1510_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1511_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1512_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1513_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1514_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1515_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1516_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1517_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1518_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1519_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1520_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1521_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1522_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1523_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1524_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1525_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1526_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1527_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1528_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1529_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1530_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1531_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1532_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1533_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1534_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1535_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1536_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1537_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1538_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1539_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1540_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1541_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1542_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1543_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1544_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1545_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1546_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1547_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1548_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1549_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1550_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1551_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1552_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1553_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1554_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1555_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1556_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1557_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1558_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1559_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1560_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1561_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1562_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1563_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1564_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1565_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1566_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1567_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1568_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1569_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1570_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1571_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1572_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1573_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1574_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1575_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1576_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1577_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1578_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1579_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1580_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1581_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1582_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1583_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1584_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1585_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1586_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1587_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1588_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1589_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1590_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1591_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1592_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1593_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1594_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1595_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1596_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1597_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1598_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1599_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1600_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1601_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1602_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1603_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1604_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1605_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1606_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1607_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1608_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1609_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1610_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1611_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1612_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1613_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1614_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1615_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1616_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1617_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1618_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1619_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1620_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1621_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1622_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1623_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1624_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1625_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1626_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1627_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1628_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1629_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1630_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1631_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1632_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1633_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1634_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1635_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1636_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1637_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1638_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1639_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1640_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1641_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1642_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1643_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1644_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1645_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1646_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1647_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1648_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1649_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1650_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1651_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1652_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1653_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1654_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1655_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1656_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1657_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1658_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1659_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1660_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1661_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1662_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1663_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1664_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1665_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1666_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1667_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1668_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1669_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1670_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1671_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1672_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1673_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1674_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1675_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1676_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1677_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1678_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1679_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1680_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1681_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1682_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1683_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1684_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1685_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1686_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1687_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1688_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1689_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1690_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1691_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1692_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1693_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1694_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1695_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1696_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1697_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1698_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1699_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1700_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1701_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1702_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1703_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1704_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1705_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1706_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1707_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1708_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1709_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1710_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1711_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1712_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1713_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1714_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1715_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1716_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1717_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1718_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1719_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1720_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1721_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1722_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1723_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1724_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1725_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1726_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1727_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1728_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1729_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1730_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1731_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1732_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1733_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1734_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1735_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1736_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1737_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1738_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1739_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1740_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1741_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1742_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1743_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1744_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1745_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1746_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1747_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1748_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1749_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1750_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1751_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1752_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1753_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1754_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1755_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1756_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1757_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1758_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1759_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1760_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1761_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1762_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1763_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1764_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1765_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1766_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1767_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1768_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1769_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1770_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1771_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1772_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1773_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1774_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1775_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1776_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1777_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1778_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1779_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1780_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1781_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1782_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1783_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1784_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1785_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1786_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1787_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1788_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1789_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1790_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1791_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1792_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1793_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1794_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1795_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1796_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1797_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1798_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1799_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1800_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1801_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1802_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1803_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1804_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1805_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1806_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1807_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1808_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1809_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1810_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1811_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1812_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1813_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1814_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1815_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1816_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1817_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1818_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1819_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1820_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1821_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1822_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1823_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1824_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1825_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1826_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1827_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1828_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1829_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1830_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1831_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1832_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1833_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1834_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1835_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1836_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1837_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1838_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1839_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1840_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1841_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1842_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1843_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1844_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1845_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1846_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1847_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1848_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1849_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1850_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1851_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1852_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1853_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1854_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1855_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1856_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1857_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1858_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1859_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1860_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1861_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1862_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1863_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1864_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1865_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1866_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1867_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1868_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1869_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1870_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1871_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1872_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1873_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1874_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1875_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1876_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1877_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1878_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1879_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1880_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1881_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1882_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1883_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1884_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1885_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1886_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1887_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1888_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1889_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1890_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1891_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1892_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1893_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1894_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1895_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1896_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1897_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1898_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1899_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1900_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1901_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1902_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1903_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1904_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1905_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1906_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1907_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1908_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1909_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1910_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1911_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1912_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1913_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1914_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1915_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1916_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1917_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1918_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1919_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1920_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1921_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1922_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1923_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1924_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1925_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1926_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1927_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1928_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1929_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1930_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1931_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1932_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1933_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1934_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1935_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1936_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1937_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1938_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1939_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1940_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1941_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1942_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1943_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1944_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1945_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1946_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1947_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1948_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1949_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1950_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1951_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1952_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1953_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1954_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1955_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1956_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1957_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1958_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1959_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1960_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1961_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1962_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1963_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1964_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1965_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1966_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1967_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1968_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1969_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1970_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1971_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1972_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1973_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1974_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1975_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1976_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1977_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1978_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1979_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1980_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1981_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1982_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1983_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1984_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1985_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1986_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1987_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1988_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1989_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1990_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1991_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1992_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1993_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1994_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1995_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1996_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1997_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1998_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_1999_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2000_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2001_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2002_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2003_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2004_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2005_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2006_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2007_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2008_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2009_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2010_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2011_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2012_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2013_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2014_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2015_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2016_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2017_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2018_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2019_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2020_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2021_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2022_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2023_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2024_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2025_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2026_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2027_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2028_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2029_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2030_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2031_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2032_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2033_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2034_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2035_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2036_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2037_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2038_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2039_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2040_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2041_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2042_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2043_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2044_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2045_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2046_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2047_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2048_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2049_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2050_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2051_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2052_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2053_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2054_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2055_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2056_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2057_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2058_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2059_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2060_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2061_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2062_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2063_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2064_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2065_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2066_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2067_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2068_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2069_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2070_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2071_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2072_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2073_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2074_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2075_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2076_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2077_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2078_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2079_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2080_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2081_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2082_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2083_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2084_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2085_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2086_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2087_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2088_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2089_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2090_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2091_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2092_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2093_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2094_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2095_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2096_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2097_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2098_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2099_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2100_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2101_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2102_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2103_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2104_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2105_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2106_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2107_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2108_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2109_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2110_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2111_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2112_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2113_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2114_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2115_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2116_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2117_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2118_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2119_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2120_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2121_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2122_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2123_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2124_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2125_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2126_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2127_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2128_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2129_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2130_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2131_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2132_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2133_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2134_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2135_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2136_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2137_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2138_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2139_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2140_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2141_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2142_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2143_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2144_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2145_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2146_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2147_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2148_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2149_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2150_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2151_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2152_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2153_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2154_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2155_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2156_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2157_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2158_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2159_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2160_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2161_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2162_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2163_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2164_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2165_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2166_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2167_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2168_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2169_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2170_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2171_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2172_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2173_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2174_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2175_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2176_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2177_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2178_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2179_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2180_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2181_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2182_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2183_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2184_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2185_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2186_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2187_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2188_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2189_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2190_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2191_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2192_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2193_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2194_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2195_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2196_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2197_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2198_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2199_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2200_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2201_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2202_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2203_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2204_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2205_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2206_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2207_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2208_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2209_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2210_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2211_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2212_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2213_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2214_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2215_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2216_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2217_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2218_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2219_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2220_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2221_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2222_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2223_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2224_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2225_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2226_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2227_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2228_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2229_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2230_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2231_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2232_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2233_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2234_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2235_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2236_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2237_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2238_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2239_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2240_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2241_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2242_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2243_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2244_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2245_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2246_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2247_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2248_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2249_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2250_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2251_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2252_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2253_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2254_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2255_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2256_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2257_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2258_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2259_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2260_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2261_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2262_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2263_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2264_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2265_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2266_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2267_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2268_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2269_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2270_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2271_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2272_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2273_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2274_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2275_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2276_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2277_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2278_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2279_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2280_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2281_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2282_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2283_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2284_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2285_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2286_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2287_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2288_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2289_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2290_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2291_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2292_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2293_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2294_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2295_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2296_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2297_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2298_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2299_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2300_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2301_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2302_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_complex_float[_param_2303_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_0_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_3_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_4_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_5_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_6_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_7_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_8_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_9_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_10_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_11_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_12_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_13_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_14_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_15_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_16_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_17_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_18_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_19_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_20_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_21_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_22_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.67 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_23_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_24_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_25_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_26_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_27_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_28_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_29_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_30_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_31_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_32_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_33_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_34_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_35_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_36_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_37_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_38_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_39_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_40_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_41_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_42_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_43_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_44_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_45_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_46_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_47_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_48_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_49_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_50_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_51_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_52_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_53_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_54_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_55_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_56_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_57_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_58_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_59_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_60_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_61_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_62_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_63_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_64_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_65_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_66_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_67_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_68_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_69_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_70_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_71_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_72_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_73_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_74_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_75_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_76_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_77_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_78_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_79_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_80_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_81_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_82_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_83_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_84_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_85_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_86_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_87_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_88_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_89_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_90_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_91_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_92_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_93_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_94_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_95_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_96_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_97_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_98_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_99_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_100_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_101_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_102_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_103_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_104_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_105_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_106_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_107_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_108_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_109_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_110_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_111_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_112_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_113_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_114_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_115_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_116_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_117_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_118_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_119_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_120_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_121_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_122_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_123_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_124_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_125_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_126_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_127_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_128_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_129_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_130_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_131_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_132_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_133_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_134_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_135_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_136_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_137_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_138_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_139_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_140_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_141_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_142_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_143_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_144_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_145_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_146_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_147_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_148_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_149_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_150_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_151_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_152_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_153_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_154_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_155_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_156_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_157_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_158_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_159_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_160_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_161_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_162_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_163_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_164_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_165_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_166_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_167_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_168_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_169_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_170_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_171_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_172_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_173_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_174_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_175_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_176_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_177_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_178_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_179_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_180_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_181_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_182_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_183_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_184_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_185_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_186_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_187_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_188_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_189_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_190_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_191_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_192_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_193_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_194_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_195_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_196_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_197_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_198_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_199_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_200_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_201_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_202_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_203_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_204_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_205_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_206_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_207_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_208_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_209_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_210_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_211_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_212_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_213_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_214_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_215_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_216_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_217_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_218_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_219_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_220_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_221_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_222_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_223_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_224_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_225_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_226_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_227_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_228_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_229_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_230_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_231_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_232_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_233_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_234_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_235_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_236_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_237_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_238_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_239_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_240_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_241_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_242_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_243_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_244_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_245_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_246_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_247_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_248_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_249_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_250_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_251_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_252_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_253_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_254_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_255_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_256_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_257_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_258_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_259_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_260_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_261_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_262_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_263_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_264_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_265_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_266_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_267_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_268_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_269_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_270_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_271_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_272_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_273_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_274_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_275_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_276_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_277_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_278_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_279_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_280_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_281_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_282_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_283_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_284_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_285_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_286_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_287_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_288_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_289_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_290_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_291_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_292_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_293_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_294_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_295_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_296_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_297_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_298_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_299_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_300_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_301_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_302_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_303_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_304_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_305_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_306_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_307_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_308_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_309_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_310_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_311_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_312_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_313_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_314_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_315_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_316_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_317_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_318_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_319_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_320_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_321_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_322_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_323_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_324_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_325_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_326_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_327_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_328_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_329_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_330_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_331_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_332_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_333_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_334_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_335_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_336_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_337_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_338_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_339_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_340_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_341_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_342_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_343_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_344_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_345_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_346_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_347_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_348_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_349_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_350_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_351_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_352_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_353_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_354_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_355_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_356_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_357_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_358_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_359_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_360_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_361_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_362_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_363_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_364_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_365_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_366_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_367_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_368_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_369_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_370_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_371_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_372_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_373_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_374_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_375_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_376_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_377_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_378_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_379_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_380_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_381_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_382_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_383_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_384_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_385_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_386_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_387_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_388_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_389_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_390_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_391_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_392_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_393_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_394_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_395_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_396_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_397_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_398_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_399_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_400_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_401_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_402_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_403_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_404_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_405_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_406_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_407_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_408_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_409_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_410_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_411_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_412_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_413_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_414_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_415_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_416_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_417_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_418_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_419_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_420_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_421_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_422_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_423_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_424_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_425_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_426_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_427_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_428_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_429_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_430_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_431_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_432_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_433_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_434_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_435_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_436_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_437_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_438_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_439_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_440_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_441_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_442_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_443_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_444_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_445_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_446_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_447_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_448_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_449_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_450_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_451_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_452_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_453_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_454_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_455_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_456_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_457_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_458_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_459_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_460_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_461_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_462_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_463_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_464_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_465_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_466_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_467_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_468_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_469_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_470_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_471_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_472_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_473_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_474_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_475_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_476_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_477_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_478_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_479_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_480_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_481_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_482_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_483_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_484_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_485_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_486_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_487_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_488_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_489_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_490_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_491_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_492_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_493_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_494_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_495_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_496_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_497_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_498_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_499_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_500_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_501_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_502_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_503_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_504_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_505_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_506_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_507_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_508_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_509_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_510_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_511_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_512_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_513_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_514_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_515_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_516_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_517_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_518_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_519_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_520_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_521_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_522_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_523_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_524_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_525_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_526_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_527_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_528_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_529_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_530_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_531_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_532_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_533_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_534_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_535_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_536_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_537_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_538_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_539_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_540_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_541_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_542_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_543_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_544_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_545_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_546_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_547_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_548_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_549_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_550_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_551_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_552_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_553_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_554_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_555_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_556_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_557_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_558_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_559_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_560_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_561_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_562_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_563_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_564_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_565_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_566_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_567_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_568_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_569_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_570_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_571_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_572_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_573_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_574_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_575_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_576_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_577_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_578_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_579_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_580_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_581_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_582_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_583_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_584_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_585_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_586_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_587_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_588_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_589_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_590_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_591_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_592_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_593_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_594_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_595_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_596_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_597_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_598_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.66 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_599_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_600_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_601_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_602_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_603_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_604_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_605_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_606_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_607_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_608_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_609_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_610_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_611_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_612_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_613_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_614_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_615_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_616_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_617_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_618_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_619_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_620_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_621_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_622_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_623_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_624_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_625_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_626_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_627_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_628_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_629_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_630_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_631_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_632_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_633_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_634_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_635_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_636_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_637_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_638_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_639_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_640_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_641_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_642_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_643_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_644_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_645_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_646_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_647_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_648_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_649_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_650_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_651_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_652_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_653_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_654_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_655_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_656_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_657_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_658_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_659_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_660_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_661_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_662_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_663_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_664_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_665_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_666_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_667_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_668_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_669_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_670_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_671_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_672_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_673_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_674_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_675_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_676_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_677_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_678_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_679_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_680_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_681_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_682_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_683_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_684_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_685_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_686_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_687_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_688_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_689_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_690_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_691_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_692_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_693_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_694_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_695_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_696_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_697_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_698_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_699_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_700_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_701_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_702_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_703_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_704_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_705_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_706_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_707_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_708_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_709_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_710_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_711_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_712_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_713_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_714_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_715_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_716_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_717_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_718_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_719_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_720_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_721_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_722_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_723_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_724_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_725_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_726_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_727_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_728_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_729_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_730_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_731_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_732_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_733_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_734_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_735_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_736_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_737_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_738_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_739_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_740_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_741_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_742_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_743_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_744_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_745_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_746_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_747_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_748_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_749_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_750_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_751_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_752_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_753_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_754_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_755_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_756_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_757_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_758_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_759_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_760_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_761_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_762_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_763_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_764_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_765_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_766_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_767_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_768_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_769_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_770_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_771_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_772_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_773_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_774_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_775_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_776_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_777_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_778_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_779_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_780_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_781_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_782_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_783_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_784_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_785_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_786_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_787_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_788_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_789_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_790_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_791_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_792_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_793_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_794_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_795_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_796_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_797_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_798_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_799_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_800_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_801_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_802_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_803_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_804_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_805_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_806_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_807_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_808_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_809_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_810_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_811_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_812_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_813_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_814_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.67 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_815_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_816_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_817_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_818_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_819_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_820_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_821_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_822_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_823_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_824_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_825_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_826_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_827_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_828_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_829_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_830_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_831_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_832_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_833_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_834_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_835_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_836_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_837_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_838_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_839_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_840_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_841_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_842_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_843_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_844_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_845_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_846_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_847_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_848_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_849_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_850_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_851_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_852_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_853_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_854_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_855_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_856_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_857_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_858_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_859_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_860_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_861_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_862_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_863_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_864_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_865_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_866_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_867_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_868_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_869_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_870_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_871_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_872_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_873_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_874_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_875_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_876_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_877_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_878_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_879_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_880_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_881_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_882_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_883_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_884_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_885_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_886_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_887_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_888_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_889_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_890_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_891_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_892_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_893_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_894_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_895_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_896_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_897_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_898_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_899_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_900_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_901_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_902_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_903_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_904_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_905_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_906_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_907_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_908_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_909_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_910_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_911_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_912_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_913_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_914_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_915_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_916_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_917_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_918_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_919_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_920_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_921_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_922_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_923_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_924_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_925_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_926_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_927_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_928_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_929_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_930_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_931_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_932_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_933_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_934_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_935_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_936_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_937_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_938_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_939_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_940_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_941_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_942_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_943_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_944_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_945_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_946_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_947_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_948_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_949_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_950_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_951_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_952_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_953_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_954_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_955_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_956_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_957_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_958_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_959_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_960_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_961_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_962_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_963_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_964_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_965_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_966_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_967_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_968_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_969_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_970_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_971_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_972_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_973_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_974_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_975_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_976_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_977_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_978_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_979_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_980_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_981_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_982_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_983_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_984_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_985_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_986_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_987_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_988_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_989_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_990_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_991_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_992_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_993_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_994_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_995_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_996_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_997_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_998_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_999_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1000_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1001_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1002_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1003_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1004_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1005_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1006_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1007_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1008_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1009_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1010_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1011_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1012_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1013_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1014_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1015_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1016_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1017_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1018_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1019_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1020_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1021_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1022_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1023_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1024_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1025_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1026_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1027_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1028_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1029_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1030_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1031_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1032_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1033_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1034_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1035_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1036_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1037_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1038_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1039_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1040_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1041_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1042_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1043_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1044_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1045_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1046_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1047_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1048_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1049_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1050_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1051_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1052_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1053_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1054_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1055_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1056_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1057_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1058_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1059_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1060_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1061_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1062_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1063_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1064_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1065_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1066_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1067_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1068_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1069_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1070_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1071_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1072_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1073_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1074_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1075_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1076_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1077_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1078_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1079_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1080_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1081_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1082_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1083_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1084_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1085_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1086_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1087_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1088_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1089_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1090_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1091_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1092_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1093_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1094_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1095_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1096_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1097_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1098_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1099_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1100_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1101_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1102_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1103_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1104_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1105_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1106_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1107_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1108_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1109_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1110_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1111_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1112_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1113_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1114_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1115_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 1.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1116_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1117_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1118_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1119_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1120_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1121_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1122_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1123_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1124_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1125_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1126_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1127_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1128_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1129_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1130_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1131_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1132_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1133_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1134_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1135_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1136_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1137_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1138_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1139_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1140_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1141_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1142_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1143_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1144_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1145_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1146_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1147_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1148_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1149_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1150_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1151_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1152_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1153_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1154_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1155_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1156_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1157_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1158_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1159_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1160_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1161_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1162_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1163_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1164_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1165_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1166_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1167_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1168_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1169_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1170_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1171_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1172_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1173_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1174_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1175_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1176_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1177_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1178_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1179_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1180_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1181_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1182_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1183_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1184_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1185_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1186_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1187_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1188_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1189_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1190_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1191_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1192_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1193_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1194_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1195_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1196_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1197_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1198_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1199_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1200_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1201_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1202_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1203_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1204_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1205_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1206_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1207_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1208_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1209_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1210_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1211_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1212_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1213_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1214_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1215_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1216_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1217_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1218_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1219_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1220_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1221_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1222_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1223_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1224_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1225_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1226_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1227_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1228_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1229_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1230_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1231_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1232_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1233_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1234_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1235_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1236_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1237_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1238_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1239_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1240_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1241_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1242_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1243_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1244_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1245_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1246_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1247_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1248_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1249_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1250_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1251_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1252_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1253_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1254_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1255_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1256_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1257_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1258_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1259_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1260_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1261_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1262_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1263_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1264_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1265_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1266_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1267_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1268_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1269_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1270_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1271_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1272_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1273_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1274_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1275_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1276_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1277_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1278_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1279_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1280_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1281_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1282_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1283_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1284_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1285_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1286_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1287_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1288_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1289_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1290_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1291_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1292_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1293_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1294_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1295_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1296_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1297_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1298_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1299_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1300_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1301_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1302_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1303_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1304_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1305_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1306_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1307_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1308_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1309_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1310_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1311_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1312_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1313_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1314_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1315_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1316_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1317_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1318_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1319_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1320_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1321_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1322_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1323_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1324_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1325_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1326_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1327_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1328_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1329_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1330_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1331_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1332_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1333_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1334_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1335_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1336_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1337_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1338_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1339_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1340_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1341_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1342_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1343_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1344_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1345_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1346_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1347_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1348_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1349_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1350_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1351_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1352_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1353_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1354_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1355_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1356_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1357_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1358_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1359_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1360_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1361_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1362_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1363_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1364_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1365_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1366_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1367_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1368_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1369_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1370_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1371_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1372_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1373_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1374_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1375_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1376_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1377_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1378_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1379_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1380_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1381_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1382_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1383_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1384_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1385_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1386_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1387_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1388_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1389_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1390_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1391_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1392_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1393_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1394_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1395_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1396_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1397_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1398_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1399_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1400_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1401_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1402_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1403_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1404_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1405_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1406_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1407_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1408_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1409_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1410_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1411_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1412_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1413_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1414_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1415_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1416_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1417_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1418_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1419_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1420_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1421_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1422_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1423_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1424_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1425_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1426_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1427_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1428_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1429_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1430_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1431_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1432_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1433_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1434_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1435_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1436_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1437_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1438_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1439_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1440_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1441_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1442_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1443_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1444_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1445_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1446_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1447_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1448_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1449_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1450_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1451_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1452_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1453_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1454_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1455_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1456_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1457_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1458_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1459_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1460_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1461_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1462_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1463_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1464_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1465_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1466_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1467_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1468_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1469_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1470_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1471_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1472_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1473_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1474_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1475_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1476_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1477_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1478_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1479_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1480_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1481_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1482_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1483_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1484_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1485_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1486_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1487_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1488_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1489_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1490_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1491_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1492_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1493_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1494_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1495_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1496_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1497_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1498_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1499_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1500_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1501_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1502_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1503_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1504_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1505_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1506_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1507_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1508_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1509_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1510_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1511_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1512_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1513_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1514_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1515_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1516_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1517_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1518_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1519_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1520_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1521_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1522_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1523_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1524_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1525_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1526_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1527_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1528_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1529_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1530_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1531_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1532_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1533_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1534_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1535_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1536_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1537_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1538_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1539_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1540_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1541_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1542_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1543_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1544_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1545_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1546_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1547_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1548_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1549_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1550_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1551_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1552_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1553_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1554_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1555_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1556_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1557_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1558_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1559_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1560_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1561_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1562_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1563_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1564_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1565_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1566_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1567_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1568_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1569_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1570_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1571_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1572_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1573_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1574_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1575_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1576_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1577_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1578_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1579_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1580_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1581_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1582_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1583_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1584_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1585_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1586_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1587_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1588_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1589_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1590_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1591_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1592_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1593_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1594_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1595_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1596_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1597_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1598_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1599_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1600_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1601_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1602_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1603_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1604_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1605_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1606_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1607_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1608_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1609_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1610_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1611_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1612_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1613_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1614_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1615_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1616_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1617_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1618_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1619_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1620_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1621_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1622_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1623_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1624_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1625_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1626_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1627_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1628_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1629_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1630_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1631_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1632_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1633_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1634_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1635_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1636_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1637_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1638_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1639_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1640_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1641_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1642_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1643_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1644_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1645_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1646_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1647_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1648_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1649_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1650_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1651_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1652_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1653_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1654_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1655_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1656_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1657_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1658_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1659_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1660_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1661_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1662_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1663_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1664_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1665_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1666_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1667_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1668_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1669_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1670_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1671_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1672_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1673_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1674_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1675_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1676_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1677_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1678_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1679_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1680_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1681_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1682_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1683_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1684_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1685_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1686_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1687_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1688_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1689_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1690_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1691_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1692_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1693_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1694_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1695_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1696_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1697_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1698_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1699_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1700_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1701_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1702_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1703_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1704_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1705_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1706_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1707_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1708_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1709_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1710_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1711_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1712_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1713_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1714_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1715_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1716_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1717_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1718_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1719_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1720_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1721_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1722_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1723_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1724_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1725_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1726_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1727_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1728_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1729_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1730_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1731_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1732_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1733_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1734_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1735_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1736_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1737_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1738_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1739_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1740_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1741_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1742_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1743_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1744_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1745_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1746_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1747_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1748_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1749_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1750_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1751_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1752_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1753_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1754_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1755_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1756_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1757_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1758_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1759_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1760_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1761_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1762_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1763_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1764_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1765_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1766_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1767_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1768_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1769_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1770_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1771_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1772_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1773_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1774_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1775_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1776_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1777_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1778_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1779_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1780_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1781_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1782_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1783_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1784_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1785_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1786_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1787_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1788_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1789_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1790_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1791_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1792_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1793_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1794_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1795_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1796_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1797_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1798_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1799_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1800_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1801_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1802_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1803_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1804_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1805_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1806_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1807_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1808_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1809_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1810_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1811_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1812_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1813_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1814_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1815_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1816_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1817_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1818_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1819_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1820_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1821_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1822_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1823_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1824_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1825_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1826_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1827_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1828_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1829_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1830_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1831_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1832_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1833_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1834_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1835_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1836_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1837_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1838_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1839_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1840_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1841_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1842_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1843_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1844_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1845_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1846_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1847_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1848_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1849_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1850_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1851_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1852_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1853_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1854_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1855_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1856_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1857_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1858_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1859_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1860_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1861_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1862_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1863_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1864_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1865_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1866_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1867_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1868_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1869_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1870_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1871_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1872_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1873_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1874_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1875_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1876_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1877_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1878_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1879_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1880_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1881_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1882_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1883_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1884_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1885_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1886_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1887_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1888_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1889_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1890_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1891_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1892_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1893_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1894_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1895_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1896_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1897_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1898_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1899_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1900_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1901_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1902_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1903_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1904_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1905_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1906_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1907_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1908_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1909_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1910_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1911_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1912_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1913_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1914_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1915_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1916_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1917_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1918_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1919_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1920_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1921_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1922_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1923_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1924_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1925_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1926_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1927_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1928_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1929_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1930_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1931_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1932_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1933_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1934_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1935_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1936_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1937_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1938_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1939_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1940_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1941_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1942_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1943_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1944_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1945_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1946_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1947_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1948_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1949_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1950_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1951_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1952_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1953_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1954_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1955_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1956_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1957_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1958_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1959_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1960_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1961_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1962_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1963_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1964_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1965_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1966_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1967_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1968_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1969_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1970_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1971_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1972_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1973_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1974_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1975_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1976_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1977_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1978_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1979_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1980_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1981_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1982_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1983_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1984_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1985_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1986_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1987_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1988_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1989_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1990_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1991_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1992_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1993_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1994_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1995_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1996_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1997_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1998_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_1999_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2000_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2001_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2002_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2003_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2004_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2005_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2006_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2007_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2008_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2009_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2010_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2011_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2012_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2013_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2014_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2015_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2016_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2017_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2018_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2019_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2020_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2021_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2022_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2023_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2024_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2025_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2026_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2027_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2028_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2029_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2030_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2031_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2032_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2033_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2034_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2035_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2036_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2037_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2038_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2039_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2040_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2041_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2042_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2043_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2044_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2045_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2046_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2047_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2048_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2049_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2050_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2051_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2052_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2053_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2054_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2055_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2056_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2057_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2058_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2059_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2060_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2061_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2062_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2063_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2064_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2065_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2066_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2067_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2068_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2069_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2070_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2071_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2072_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2073_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2074_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2075_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2076_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2077_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2078_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2079_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2080_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2081_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2082_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2083_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2084_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2085_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2086_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2087_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2088_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2089_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2090_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2091_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2092_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2093_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2094_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2095_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2096_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2097_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2098_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2099_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2100_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2101_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2102_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2103_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2104_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2105_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2106_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2107_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2108_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2109_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2110_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2111_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2112_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2113_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2114_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2115_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2116_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2117_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2118_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2119_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2120_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2121_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2122_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2123_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2124_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2125_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2126_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2127_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2128_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2129_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2130_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2131_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2132_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2133_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2134_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2135_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2136_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2137_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2138_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2139_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2140_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2141_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2142_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2143_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2144_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2145_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2146_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2147_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2148_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2149_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2150_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2151_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2152_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2153_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2154_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2155_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2156_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2157_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2158_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2159_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2160_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2161_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2162_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2163_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2164_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2165_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2166_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2167_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2168_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2169_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2170_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2171_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2172_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2173_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2174_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2175_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2176_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2177_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2178_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2179_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2180_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2181_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2182_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2183_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2184_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2185_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2186_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2187_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2188_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2189_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2190_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2191_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2192_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2193_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2194_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2195_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2196_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2197_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2198_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2199_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2200_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2201_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2202_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2203_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2204_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2205_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2206_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2207_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2208_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2209_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2210_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2211_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2212_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2213_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2214_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2215_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2216_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2217_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2218_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2219_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2220_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2221_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2222_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2223_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2224_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2225_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2226_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2227_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2228_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2229_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2230_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2231_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2232_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2233_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2234_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2235_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2236_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2237_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2238_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2239_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2240_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2241_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2242_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2243_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2244_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2245_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2246_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2247_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2248_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2249_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2250_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2251_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2252_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2253_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2254_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2255_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2256_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2257_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2258_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2259_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2260_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2261_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2262_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2263_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2264_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2265_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2266_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2267_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2268_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2269_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2270_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2271_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2272_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2273_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2274_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2275_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2276_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2277_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2278_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2279_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2280_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2281_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2282_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2283_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2284_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2285_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2286_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2287_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2288_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2289_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2290_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2291_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2292_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2293_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2294_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2295_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2296_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2297_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2298_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2299_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2300_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2301_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2302_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_fortran_order[_param_2303_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_0_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_3_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_4_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_5_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_6_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_7_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_8_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_9_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_10_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_11_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_12_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 6.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_14_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_15_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_16_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_18_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 6.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_20_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_21_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_22_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_24_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_26_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_27_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_28_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_30_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 7.64 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_32_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_33_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_34_{cval=1.0, matrix_shape=(2,), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_36_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_37_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_38_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_39_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_40_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_41_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_42_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_43_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_44_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_45_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_46_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_47_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_48_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_50_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_51_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_52_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_54_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_56_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_57_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_58_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_60_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_62_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_63_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_64_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_66_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_68_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_69_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_70_{cval=1.0, matrix_shape=(2,), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_72_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_73_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_74_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_75_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_76_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_77_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_78_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_79_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_80_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_81_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_82_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_83_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_84_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 5.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_86_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_87_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_88_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_90_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 5.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_92_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_93_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_94_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_96_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_98_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_99_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_100_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_102_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_104_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_105_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_106_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_108_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_109_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_110_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_111_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_112_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_113_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_114_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_115_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_116_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_117_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_118_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_119_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_120_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_122_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_123_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_124_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_126_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_128_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_129_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_130_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_132_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_134_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_135_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_136_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_138_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_140_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_141_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_142_{cval=1.0, matrix_shape=(2,), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_144_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_145_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_146_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_147_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_148_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_149_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_150_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_151_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_152_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_153_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_154_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_155_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_156_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 6.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_158_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_159_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_160_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_162_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 6.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_164_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_165_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_166_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_168_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_170_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_171_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_172_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_174_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_176_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_177_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_178_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_180_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_181_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_182_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_183_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_184_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_185_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_186_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_187_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_188_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_189_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_190_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_191_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_192_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_194_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_195_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_196_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_198_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_200_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_201_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_202_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_204_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_206_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_207_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_208_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_210_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_212_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_213_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_214_{cval=1.0, matrix_shape=(2,), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_216_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_217_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_218_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_219_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_220_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_221_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_222_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_223_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_224_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_225_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_226_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_227_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_228_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 6.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_230_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_231_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_232_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_234_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 6.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_236_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_237_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_238_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_240_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_242_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_243_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_244_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_246_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_248_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_249_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_250_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_252_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_253_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_254_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_255_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_256_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_257_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_258_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_259_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_260_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_261_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_262_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_263_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_264_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_266_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_267_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_268_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_270_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_272_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_273_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_274_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_276_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_278_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_279_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_280_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_282_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_284_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_285_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_286_{cval=1.0, matrix_shape=(2,), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_288_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_289_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_290_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_291_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_292_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_293_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_294_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_295_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_296_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_297_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_298_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_299_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_300_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 5.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_302_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_303_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_304_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_306_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 5.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_308_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_309_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_310_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_312_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_314_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_315_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_316_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_318_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_320_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_321_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_322_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_324_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_325_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_326_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_327_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_328_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_329_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_330_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_331_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_332_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_333_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_334_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_335_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_336_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_338_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_339_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_340_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_342_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_344_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_345_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_346_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_348_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_350_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_351_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_352_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_354_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_356_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_357_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_358_{cval=1.0, matrix_shape=(2,), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_360_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_361_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_362_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_363_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_364_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_365_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_366_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_367_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_368_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_369_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_370_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_371_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_372_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 5.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_374_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_375_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_376_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_378_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 6.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_380_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_381_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_382_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_384_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_386_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_387_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_388_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_390_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_392_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_393_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_394_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_396_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_397_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_398_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_399_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_400_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_401_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_402_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_403_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_404_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_405_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_406_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_407_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_408_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_410_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_411_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_412_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_414_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_416_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_417_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_418_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_420_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_422_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_423_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_424_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_426_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_428_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_429_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_430_{cval=1.0, matrix_shape=(2,), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_432_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_433_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_434_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_435_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_436_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_437_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_438_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_439_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_440_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_441_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_442_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_443_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_444_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 5.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_446_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_447_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_448_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_450_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 6.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_452_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_453_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_454_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_456_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_458_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_459_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_460_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_462_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_464_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_465_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_466_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_468_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_469_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_470_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_471_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_472_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_473_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_474_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_475_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_476_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_477_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_478_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_479_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_480_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_482_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_483_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_484_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_486_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_488_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_489_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_490_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_492_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_494_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_495_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_496_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_498_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_500_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_501_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_502_{cval=1.0, matrix_shape=(2,), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_504_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_505_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_506_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_507_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_508_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_509_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_510_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_511_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_512_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_513_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_514_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_515_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_516_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 5.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_518_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_519_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_520_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_522_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 6.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_524_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_525_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_526_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_528_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_530_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_531_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_532_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_534_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_536_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_537_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_538_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_540_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_541_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_542_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_543_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_544_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_545_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_546_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_547_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_548_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_549_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_550_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_551_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_552_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_554_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_555_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_556_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_558_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_560_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_561_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_562_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_564_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_566_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_567_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_568_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_570_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_572_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_573_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_574_{cval=1.0, matrix_shape=(2,), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_576_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_577_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_578_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_579_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_580_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_581_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_582_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_583_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_584_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_585_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_586_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_587_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_588_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 6.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_590_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_591_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_592_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_594_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 6.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_596_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_597_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_598_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_600_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_602_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_603_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_604_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_606_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 7.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_608_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_609_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_610_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_612_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_613_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_614_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_615_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_616_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_617_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_618_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_619_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_620_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_621_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_622_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_623_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_624_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_626_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_627_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_628_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_630_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_632_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_633_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_634_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_636_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_638_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_639_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_640_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_642_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_644_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_645_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_646_{cval=1.0, matrix_shape=(2, 2), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_648_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_649_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_650_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_651_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_652_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_653_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_654_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_655_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_656_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_657_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_658_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_659_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_660_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 5.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_662_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_663_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_664_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_666_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 5.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_668_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_669_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_670_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_672_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_674_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_675_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_676_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_678_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_680_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_681_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_682_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_684_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_685_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_686_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_687_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_688_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_689_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_690_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_691_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_692_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_693_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_694_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_695_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_696_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_698_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_699_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_700_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_702_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_704_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_705_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_706_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_708_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_710_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_711_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_712_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_714_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_716_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_717_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_718_{cval=1.0, matrix_shape=(2, 2), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_720_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_721_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_722_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_723_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_724_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_725_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_726_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_727_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_728_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_729_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_730_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_731_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_732_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 6.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_734_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_735_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_736_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_738_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 6.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_740_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_741_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_742_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_744_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_746_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_747_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_748_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_750_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_752_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_753_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_754_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_756_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_757_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_758_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_759_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_760_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_761_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_762_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_763_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_764_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_765_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_766_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_767_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_768_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_770_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_771_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_772_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_774_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_776_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_777_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_778_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_780_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_782_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_783_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_784_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_786_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_788_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_789_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_790_{cval=1.0, matrix_shape=(2, 2), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_792_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_793_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_794_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_795_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_796_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_797_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_798_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_799_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_800_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_801_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_802_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_803_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_804_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 6.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_806_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_807_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_808_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_810_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 6.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_812_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_813_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_814_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_816_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_818_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_819_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_820_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_822_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_824_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_825_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_826_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_828_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_829_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_830_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_831_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_832_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_833_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_834_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_835_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_836_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_837_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_838_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_839_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_840_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_842_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_843_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_844_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_846_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_848_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_849_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_850_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_852_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_854_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_855_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_856_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_858_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_860_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_861_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_862_{cval=1.0, matrix_shape=(2, 2), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_864_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_865_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_866_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_867_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_868_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_869_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_870_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_871_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_872_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_873_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_874_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_875_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_876_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 5.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_878_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_879_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_880_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_882_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 5.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_884_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_885_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_886_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_888_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_890_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_891_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_892_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_894_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_896_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_897_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_898_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_900_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_901_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_902_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_903_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_904_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_905_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_906_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_907_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_908_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_909_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_910_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_911_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_912_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_914_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_915_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_916_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_918_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_920_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_921_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_922_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_924_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_926_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_927_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_928_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_930_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_932_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_933_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_934_{cval=1.0, matrix_shape=(2, 2), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_936_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_937_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_938_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_939_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_940_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_941_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_942_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_943_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_944_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_945_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_946_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_947_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_948_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 5.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_950_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_951_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_952_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_954_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 6.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_956_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_957_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_958_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_960_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_962_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_963_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_964_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_966_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_968_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_969_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_970_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_972_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_973_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_974_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_975_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_976_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_977_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_978_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_979_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_980_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_981_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_982_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_983_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_984_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_986_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_987_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_988_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_990_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_992_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_993_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_994_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_996_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_998_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_999_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1000_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1002_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1004_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1005_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1006_{cval=1.0, matrix_shape=(2, 2), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1008_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1009_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1010_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1011_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1012_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1013_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1014_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1015_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1016_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1017_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1018_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1019_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1020_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 5.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1022_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1023_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1024_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1026_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 6.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1028_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1029_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1030_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1032_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1034_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1035_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1036_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1038_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1040_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1041_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1042_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1044_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1045_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1046_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1047_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1048_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1049_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1050_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1051_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1052_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1053_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1054_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1055_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1056_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1058_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1059_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1060_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1062_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1064_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1065_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1066_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1068_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1070_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1071_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1072_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1074_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1076_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1077_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1078_{cval=1.0, matrix_shape=(2, 2), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1080_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1081_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1082_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1083_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1084_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1085_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1086_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 5.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1087_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1088_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1089_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1090_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1091_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1092_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 5.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1094_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1095_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1096_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1098_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 6.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1100_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1101_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1102_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1104_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 6.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1106_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1107_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1108_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1110_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 6.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1112_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1113_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1114_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1116_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1117_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1118_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1119_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1120_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1121_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1122_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1123_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1124_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1125_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1126_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1127_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1128_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1130_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1131_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1132_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1134_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1136_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1137_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1138_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1140_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1142_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1143_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1144_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1146_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1148_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1149_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1150_{cval=1.0, matrix_shape=(2, 2), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1152_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1153_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1154_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1155_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1156_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1157_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1158_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1159_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1160_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1161_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1162_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1163_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1164_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1165_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1166_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1167_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1168_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1169_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1170_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1171_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1172_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1173_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1174_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1175_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1176_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1177_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1178_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1179_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1180_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1181_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1182_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1183_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1184_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1185_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1186_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1187_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1188_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1189_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1190_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1191_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1192_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1193_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1194_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1195_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1196_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1197_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1198_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1199_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1200_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1201_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1202_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1203_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1204_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1205_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1206_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1207_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1208_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1209_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1210_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1211_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1212_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1213_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1214_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1215_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1216_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1217_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1218_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1219_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1220_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1221_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1222_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1223_{cval=1.0, matrix_shape=(2, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1224_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1225_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1226_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1227_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1228_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1229_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1230_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1231_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1232_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1233_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1234_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1235_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1236_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1237_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 5.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1238_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1239_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1240_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1241_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1242_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1243_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 5.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1244_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1245_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1246_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1247_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1248_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1249_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 6.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1250_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1251_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1252_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1253_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1254_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1255_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 6.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1256_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1257_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1258_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1259_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1260_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1261_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1262_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1263_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1264_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1265_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1266_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1267_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1268_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1269_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1270_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1271_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1272_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1273_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1274_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1275_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1276_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1277_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1278_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1279_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1280_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1281_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1282_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1283_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1284_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1285_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1286_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1287_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1288_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1289_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1290_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1291_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1292_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1293_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1294_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1295_{cval=1.0, matrix_shape=(2, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1296_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1297_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1298_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1299_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1300_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1301_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1302_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1303_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1304_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1305_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1306_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1307_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1308_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1309_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1310_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1311_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1312_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1313_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1314_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1315_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1316_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1317_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1318_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1319_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1320_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1321_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1322_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1323_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1324_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1325_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1326_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1327_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1328_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1329_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1330_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1331_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1332_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1333_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1334_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1335_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1336_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1337_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1338_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1339_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1340_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1341_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1342_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1343_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1344_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1345_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1346_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1347_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1348_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1349_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1350_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1351_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1352_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1353_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1354_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1355_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1356_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1357_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1358_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1359_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1360_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1361_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1362_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1363_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1364_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1365_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1366_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1367_{cval=1.0, matrix_shape=(2, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1368_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1369_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1370_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1371_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1372_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1373_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1374_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1375_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1376_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1377_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1378_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1379_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1380_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1381_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1382_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1383_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1384_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1385_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1386_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1387_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1388_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1389_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1390_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1391_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1392_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1393_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1394_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1395_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1396_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1397_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1398_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1399_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1400_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1401_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1402_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1403_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1404_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1405_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1406_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1407_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1408_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1409_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1410_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1411_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1412_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1413_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1414_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1415_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1416_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1417_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1418_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1419_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1420_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1421_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1422_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1423_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1424_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1425_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1426_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1427_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1428_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1429_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1430_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1431_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1432_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1433_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1434_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1435_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1436_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1437_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1438_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1439_{cval=1.0, matrix_shape=(2, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1440_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1441_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1442_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1443_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1444_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1445_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1446_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1447_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1448_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1449_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1450_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1451_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1452_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1453_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1454_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1455_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1456_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1457_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1458_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1459_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1460_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1461_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1462_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1463_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1464_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1465_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1466_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1467_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1468_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1469_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1470_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1471_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1472_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1473_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1474_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1475_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1476_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1477_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1478_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1479_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1480_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1481_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1482_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1483_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1484_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1485_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1486_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1487_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1488_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1489_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1490_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1491_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1492_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1493_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1494_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1495_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1496_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1497_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1498_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1499_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1500_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1501_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1502_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1503_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1504_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1505_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1506_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1507_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1508_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1509_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1510_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1511_{cval=1.0, matrix_shape=(2, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1512_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1513_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1514_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1515_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1516_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1517_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1518_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1519_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1520_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1521_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1522_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1523_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1524_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1525_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1526_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1527_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1528_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1529_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1530_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1531_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1532_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1533_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1534_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1535_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1536_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1537_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1538_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1539_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1540_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1541_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1542_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1543_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1544_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1545_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1546_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1547_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1548_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1549_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1550_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1551_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1552_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1553_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1554_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1555_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1556_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1557_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1558_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1559_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1560_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1561_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1562_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1563_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1564_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1565_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1566_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1567_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1568_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1569_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1570_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1571_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1572_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1573_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1574_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1575_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1576_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1577_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1578_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1579_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1580_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1581_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1582_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1583_{cval=1.0, matrix_shape=(2, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1584_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1585_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1586_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1587_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1588_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1589_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1590_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1591_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1592_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1593_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1594_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1595_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1596_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1597_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1598_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1599_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1600_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1601_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1602_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1603_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1604_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1605_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1606_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1607_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1608_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1609_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1610_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1611_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1612_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1613_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1614_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1615_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1616_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1617_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1618_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1619_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1620_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1621_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1622_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1623_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1624_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1625_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1626_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1627_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1628_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1629_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1630_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1631_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1632_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1633_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1634_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1635_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1636_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1637_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1638_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1639_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1640_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1641_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1642_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1643_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1644_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1645_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1646_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1647_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1648_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1649_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1650_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1651_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1652_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1653_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1654_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1655_{cval=1.0, matrix_shape=(2, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1656_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1657_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1658_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1659_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1660_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1661_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1662_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1663_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1664_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1665_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1666_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1667_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1668_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1669_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 5.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1670_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1671_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1672_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1673_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1674_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1675_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 6.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1676_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1677_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1678_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1679_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1680_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1681_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 6.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1682_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1683_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1684_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1685_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1686_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1687_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 6.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1688_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1689_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1690_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1691_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1692_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1693_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1694_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1695_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1696_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1697_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1698_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1699_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1700_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1701_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1702_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1703_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1704_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1705_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1706_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1707_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1708_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1709_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1710_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1711_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1712_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1713_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1714_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1715_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1716_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1717_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1718_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1719_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1720_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1721_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1722_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1723_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1724_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1725_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1726_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1727_{cval=1.0, matrix_shape=(2, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1728_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1729_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1730_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1731_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1732_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1733_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1734_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1735_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1736_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1737_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1738_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1739_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1740_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1741_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1742_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1743_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1744_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1745_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1746_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1747_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1748_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1749_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1750_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1751_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1752_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1753_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1754_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1755_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1756_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1757_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1758_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1759_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1760_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1761_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1762_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1763_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1764_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1765_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1766_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1767_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1768_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1769_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1770_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1771_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1772_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1773_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1774_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1775_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1776_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1777_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1778_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1779_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1780_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1781_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1782_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1783_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1784_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1785_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1786_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1787_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1788_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1789_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1790_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1791_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1792_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1793_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1794_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1795_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1796_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1797_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1798_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1799_{cval=1.0, matrix_shape=(3, 3), mode='constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1800_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1801_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1802_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1803_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1804_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1805_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1806_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1807_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1808_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1809_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1810_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1811_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1812_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1813_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1814_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1815_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1816_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1817_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1818_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1819_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1820_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1821_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1822_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1823_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1824_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1825_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1826_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1827_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1828_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1829_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1830_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1831_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1832_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1833_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1834_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1835_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1836_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1837_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1838_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1839_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1840_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1841_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1842_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1843_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1844_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1845_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1846_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1847_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1848_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1849_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1850_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1851_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1852_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1853_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1854_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1855_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1856_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1857_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1858_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1859_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1860_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1861_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1862_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1863_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1864_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1865_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1866_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1867_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1868_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1869_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1870_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1871_{cval=1.0, matrix_shape=(3, 3), mode='nearest', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1872_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1873_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1874_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1875_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1876_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1877_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1878_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1879_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1880_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1881_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1882_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1883_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1884_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1885_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1886_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1887_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1888_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1889_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1890_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1891_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1892_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1893_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1894_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1895_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1896_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1897_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1898_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1899_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1900_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1901_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1902_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1903_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1904_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1905_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1906_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1907_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1908_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1909_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1910_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1911_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1912_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1913_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1914_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1915_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1916_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1917_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1918_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1919_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1920_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1921_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1922_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1923_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1924_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1925_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1926_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1927_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1928_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1929_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1930_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1931_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1932_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1933_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1934_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1935_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1936_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1937_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1938_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1939_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1940_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1941_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1942_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1943_{cval=1.0, matrix_shape=(3, 3), mode='mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1944_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1945_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1946_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1947_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1948_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1949_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1950_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1951_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1952_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1953_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1954_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1955_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1956_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1957_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1958_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1959_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1960_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1961_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1962_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1963_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1964_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1965_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1966_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1967_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1968_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1969_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1970_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1971_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1972_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1973_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1974_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1975_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1976_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1977_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1978_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1979_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1980_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1981_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1982_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1983_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1984_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1985_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1986_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1987_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1988_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1989_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1990_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1991_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1992_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1993_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1994_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1995_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1996_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1997_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1998_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_1999_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2000_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2001_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2002_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2003_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2004_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2005_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2006_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2007_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2008_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2009_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2010_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2011_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2012_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2013_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2014_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2015_{cval=1.0, matrix_shape=(3, 3), mode='wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2016_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2017_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2018_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2019_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2020_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2021_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2022_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2023_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2024_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2025_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2026_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2027_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2028_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2029_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2030_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2031_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2032_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2033_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2034_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2035_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2036_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2037_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2038_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2039_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2040_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2041_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2042_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2043_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2044_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2045_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2046_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2047_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2048_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2049_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2050_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2051_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2052_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2053_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2054_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2055_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2056_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2057_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2058_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2059_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2060_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2061_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2062_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2063_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2064_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2065_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2066_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2067_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2068_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2069_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2070_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2071_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2072_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2073_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2074_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2075_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2076_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2077_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2078_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2079_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2080_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2081_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2082_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2083_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2084_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2085_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2086_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2087_{cval=1.0, matrix_shape=(3, 3), mode='grid-wrap', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2088_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2089_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2090_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2091_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2092_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2093_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2094_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2095_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2096_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2097_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2098_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2099_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2100_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2101_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2102_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2103_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2104_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2105_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2106_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2107_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2108_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2109_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2110_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2111_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2112_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2113_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2114_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2115_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2116_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2117_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2118_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2119_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2120_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2121_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2122_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2123_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2124_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2125_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2126_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2127_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2128_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2129_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2130_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2131_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2132_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2133_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2134_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2135_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2136_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2137_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2138_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2139_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2140_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2141_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2142_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2143_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2144_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2145_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2146_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2147_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2148_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2149_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2150_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2151_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2152_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2153_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2154_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2155_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2156_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2157_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2158_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2159_{cval=1.0, matrix_shape=(3, 3), mode='reflect', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2160_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2161_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2162_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2163_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2164_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2165_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2166_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2167_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2168_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2169_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2170_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2171_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2172_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2173_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2174_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2175_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2176_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2177_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2178_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2179_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2180_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2181_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2182_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2183_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2184_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2185_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2186_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2187_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2188_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2189_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2190_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2191_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2192_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2193_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2194_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2195_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2196_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2197_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2198_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2199_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2200_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2201_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2202_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2203_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2204_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2205_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2206_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2207_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2208_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2209_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2210_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2211_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2212_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2213_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2214_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2215_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2216_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2217_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2218_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2219_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2220_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2221_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2222_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2223_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2224_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2225_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2226_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2227_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2228_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2229_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2230_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2231_{cval=1.0, matrix_shape=(3, 3), mode='grid-mirror', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2232_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2233_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2234_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2235_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2236_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2237_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2238_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2239_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2240_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2241_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2242_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2243_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2244_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2245_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2246_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2247_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2248_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2249_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2250_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2251_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2252_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2253_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2254_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2255_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2256_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2257_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2258_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2259_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2260_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2261_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2262_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2263_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2264_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2265_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2266_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2267_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=0.3, order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2268_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2269_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2270_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2271_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2272_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2273_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=0, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2274_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2275_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=None, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2276_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2277_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output=float64, output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2278_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2279_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=1, output='empty', output_shape=None, prefilter=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2280_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2281_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2282_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2283_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2284_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2285_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=2, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2286_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2287_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=None, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2288_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2289_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output=float64, output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2290_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=False}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2291_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=3, output='empty', output_shape=None, prefilter=True}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2292_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2293_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=None, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2294_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2295_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output=float64, output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2296_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=False}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2297_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=4, output='empty', output_shape=None, prefilter=True}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2298_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2299_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=None, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2300_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2301_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output=float64, output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2302_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=False}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineTransform::test_affine_transform_int[_param_2303_{cval=1.0, matrix_shape=(3, 3), mode='grid-constant', offset=[-1.3, 1.3], order=5, output='empty', output_shape=None, prefilter=True}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineExceptions::test_invalid_affine_ndim | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineExceptions::test_invalid_affine_shape | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestAffineExceptions::test_invalid_output_dtype | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_0_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_1_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=True}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_2_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_3_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=True}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_4_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_5_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_6_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_7_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=True}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_8_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_9_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_10_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_11_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_12_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_13_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=True}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_14_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_15_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_16_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_17_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_18_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_19_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=True}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_20_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_21_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_22_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_23_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_24_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_25_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=True}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_26_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_27_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_28_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_29_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_30_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_31_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=True}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_32_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_33_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_34_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_35_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_36_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_37_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_38_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_39_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_40_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_41_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_42_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_43_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_44_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_45_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_46_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_47_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_48_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_49_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_50_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_51_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_52_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_53_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_54_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_55_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_56_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_57_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_58_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_59_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_60_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_61_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_62_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_63_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_64_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_65_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_66_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_67_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_68_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_69_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_70_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_71_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_72_{angle=-15, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_73_{angle=-15, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_74_{angle=-15, axes=(1, 0), cval=1.0, mode='constant', order=3, output=None, prefilter=True, reshape=False}] | 1.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_75_{angle=-15, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_76_{angle=-15, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_77_{angle=-15, axes=(1, 0), cval=1.0, mode='nearest', order=3, output=None, prefilter=True, reshape=False}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_78_{angle=-15, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_79_{angle=-15, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_80_{angle=-15, axes=(1, 0), cval=1.0, mode='mirror', order=3, output=None, prefilter=True, reshape=False}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_81_{angle=-15, axes=(1, 0), cval=1.0, mode='wrap', order=0, output=None, prefilter=True, reshape=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_82_{angle=-15, axes=(1, 0), cval=1.0, mode='wrap', order=1, output=None, prefilter=True, reshape=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_83_{angle=-15, axes=(1, 0), cval=1.0, mode='wrap', order=3, output=None, prefilter=True, reshape=False}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_84_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, reshape=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_85_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, reshape=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_86_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, reshape=False}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_87_{angle=-15, axes=(1, 0), cval=1.0, mode='reflect', order=0, output=None, prefilter=True, reshape=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_88_{angle=-15, axes=(1, 0), cval=1.0, mode='reflect', order=1, output=None, prefilter=True, reshape=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_89_{angle=-15, axes=(1, 0), cval=1.0, mode='reflect', order=3, output=None, prefilter=True, reshape=False}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_90_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, reshape=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_91_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, reshape=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_92_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, reshape=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_93_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, reshape=False}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_94_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, reshape=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_float[_param_95_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, reshape=False}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_0_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_1_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=True}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_2_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_3_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_4_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_5_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_6_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_7_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=True}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_8_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_9_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_10_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_11_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_12_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_13_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=True}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_14_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=False}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_15_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_16_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_17_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_18_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_19_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=True}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_20_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_21_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=True}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_22_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_23_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_24_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=False}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_25_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=True}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_26_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=False}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_27_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=True}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_28_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_29_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_30_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_31_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=True}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_32_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=False}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_33_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=True}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_34_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_35_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_36_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_37_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_38_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_39_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_40_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_41_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_42_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_43_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_44_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_45_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_46_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_47_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_48_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_49_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_50_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_51_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_52_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_53_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_54_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_55_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_56_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_57_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_58_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_59_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_60_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_61_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_62_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_63_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_64_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_65_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_66_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_67_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_68_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_69_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_70_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_71_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_72_{angle=-15, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_73_{angle=-15, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_74_{angle=-15, axes=(1, 0), cval=1.0, mode='constant', order=3, output=None, prefilter=True, reshape=False}] | 1.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_75_{angle=-15, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_76_{angle=-15, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_77_{angle=-15, axes=(1, 0), cval=1.0, mode='nearest', order=3, output=None, prefilter=True, reshape=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_78_{angle=-15, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_79_{angle=-15, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_80_{angle=-15, axes=(1, 0), cval=1.0, mode='mirror', order=3, output=None, prefilter=True, reshape=False}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_81_{angle=-15, axes=(1, 0), cval=1.0, mode='wrap', order=0, output=None, prefilter=True, reshape=False}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_82_{angle=-15, axes=(1, 0), cval=1.0, mode='wrap', order=1, output=None, prefilter=True, reshape=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_83_{angle=-15, axes=(1, 0), cval=1.0, mode='wrap', order=3, output=None, prefilter=True, reshape=False}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_84_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, reshape=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_85_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, reshape=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_86_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, reshape=False}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_87_{angle=-15, axes=(1, 0), cval=1.0, mode='reflect', order=0, output=None, prefilter=True, reshape=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_88_{angle=-15, axes=(1, 0), cval=1.0, mode='reflect', order=1, output=None, prefilter=True, reshape=False}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_89_{angle=-15, axes=(1, 0), cval=1.0, mode='reflect', order=3, output=None, prefilter=True, reshape=False}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_90_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, reshape=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_91_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, reshape=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_92_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, reshape=False}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_93_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, reshape=False}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_94_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, reshape=False}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_complex_float[_param_95_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, reshape=False}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_0_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_1_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_2_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_3_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_4_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_5_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_6_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_7_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_8_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_9_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_10_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_11_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_12_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_13_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_14_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_15_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_16_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_17_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_18_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_19_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_20_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_21_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_22_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_23_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_24_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_25_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_26_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_27_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_28_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_29_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_30_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_31_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_32_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_33_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_34_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_35_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_36_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_37_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_38_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_39_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_40_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_41_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_42_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_43_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_44_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_45_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_46_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_47_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_48_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_49_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_50_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_51_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_52_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_53_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_54_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_55_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_56_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_57_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_58_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_59_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_60_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_61_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_62_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_63_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_64_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_65_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_66_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_67_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_68_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_69_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_70_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_71_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=True}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_72_{angle=-15, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_73_{angle=-15, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_74_{angle=-15, axes=(1, 0), cval=1.0, mode='constant', order=3, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_75_{angle=-15, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_76_{angle=-15, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_77_{angle=-15, axes=(1, 0), cval=1.0, mode='nearest', order=3, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_78_{angle=-15, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_79_{angle=-15, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_80_{angle=-15, axes=(1, 0), cval=1.0, mode='mirror', order=3, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_81_{angle=-15, axes=(1, 0), cval=1.0, mode='wrap', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_82_{angle=-15, axes=(1, 0), cval=1.0, mode='wrap', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_83_{angle=-15, axes=(1, 0), cval=1.0, mode='wrap', order=3, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_84_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_85_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_86_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_87_{angle=-15, axes=(1, 0), cval=1.0, mode='reflect', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_88_{angle=-15, axes=(1, 0), cval=1.0, mode='reflect', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_89_{angle=-15, axes=(1, 0), cval=1.0, mode='reflect', order=3, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_90_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_91_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_92_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_93_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_94_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_fortran_order[_param_95_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, reshape=False}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_0_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=False}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_1_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=True}] | 5.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_2_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_4_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_5_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_6_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=False}] | 5.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_7_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=True}] | 5.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_8_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_10_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_11_{angle=-10, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_12_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=False}] | 5.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_13_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=True}] | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_14_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_16_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_17_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_18_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=False}] | 5.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_19_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=True}] | 5.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_20_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_22_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_23_{angle=-10, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_24_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=False}] | 5.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_25_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=True}] | 5.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_26_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_28_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_29_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_30_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=False}] | 5.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_31_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=True}] | 5.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_32_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_34_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_35_{angle=-10, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_36_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_37_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_38_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output=float64, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_40_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_41_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=0, output='empty', prefilter=True, reshape=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_42_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_43_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_44_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output=float64, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_46_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_47_{angle=1000, axes=(1, 0), cval=1.0, mode='constant', order=1, output='empty', prefilter=True, reshape=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_48_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_49_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_50_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_52_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_53_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, reshape=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_54_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_55_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_56_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_58_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_59_{angle=1000, axes=(1, 0), cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, reshape=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_60_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_61_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_62_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_64_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_65_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, reshape=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_66_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_67_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_68_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_70_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=False}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_71_{angle=1000, axes=(1, 0), cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, reshape=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_72_{angle=-15, axes=(1, 0), cval=1.0, mode='constant', order=0, output=None, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_73_{angle=-15, axes=(1, 0), cval=1.0, mode='constant', order=1, output=None, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_74_{angle=-15, axes=(1, 0), cval=1.0, mode='constant', order=3, output=None, prefilter=True, reshape=False}] | 6.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_75_{angle=-15, axes=(1, 0), cval=1.0, mode='nearest', order=0, output=None, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_76_{angle=-15, axes=(1, 0), cval=1.0, mode='nearest', order=1, output=None, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_78_{angle=-15, axes=(1, 0), cval=1.0, mode='mirror', order=0, output=None, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_79_{angle=-15, axes=(1, 0), cval=1.0, mode='mirror', order=1, output=None, prefilter=True, reshape=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_80_{angle=-15, axes=(1, 0), cval=1.0, mode='mirror', order=3, output=None, prefilter=True, reshape=False}] | 6.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_81_{angle=-15, axes=(1, 0), cval=1.0, mode='wrap', order=0, output=None, prefilter=True, reshape=False}] | 5.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_82_{angle=-15, axes=(1, 0), cval=1.0, mode='wrap', order=1, output=None, prefilter=True, reshape=False}] | 5.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_83_{angle=-15, axes=(1, 0), cval=1.0, mode='wrap', order=3, output=None, prefilter=True, reshape=False}] | 6.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_84_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, reshape=False}] | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_85_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, reshape=False}] | 5.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_87_{angle=-15, axes=(1, 0), cval=1.0, mode='reflect', order=0, output=None, prefilter=True, reshape=False}] | 5.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_88_{angle=-15, axes=(1, 0), cval=1.0, mode='reflect', order=1, output=None, prefilter=True, reshape=False}] | 5.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_90_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, reshape=False}] | 5.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_91_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, reshape=False}] | 5.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_93_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, reshape=False}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_94_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, reshape=False}] | 5.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotate::test_rotate_int[_param_95_{angle=-15, axes=(1, 0), cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, reshape=False}] | 6.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotateExceptions::test_rotate_invalid_plane | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotateAxes::test_rotate_axes[_param_0_{axes=(-1, -2)}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotateAxes::test_rotate_axes[_param_1_{axes=(0, 1)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotateAxes::test_rotate_axes[_param_2_{axes=(2, 0)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestRotateAxes::test_rotate_axes[_param_3_{axes=(-2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_1_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_2_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_3_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_4_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_5_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_6_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_7_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_8_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_9_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_10_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_11_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_12_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_13_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_14_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_15_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_16_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_17_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_18_{cval=1.0, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 1.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_19_{cval=1.0, mode='constant', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_20_{cval=1.0, mode='constant', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_21_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_22_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_23_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_24_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_25_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_26_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_27_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, shift=0.1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_28_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_29_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_30_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, shift=0.1}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_31_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_32_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_33_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_34_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_35_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_36_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_37_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_38_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_39_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, shift=0.1}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_40_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_41_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_42_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_43_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_44_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_45_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True, shift=0.1}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_46_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_47_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_48_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True, shift=0.1}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_49_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_50_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_51_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_52_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_53_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_54_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, shift=0.1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_55_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_56_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_57_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, shift=0.1}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_58_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_59_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_60_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_61_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_62_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_63_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, shift=0.1}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_64_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_65_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_66_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, shift=0.1}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_67_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_68_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_69_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_70_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_71_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_72_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True, shift=0.1}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_73_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_74_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_75_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True, shift=0.1}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_76_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_77_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_78_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_79_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_80_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_81_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True, shift=0.1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_82_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_83_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_84_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True, shift=0.1}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_85_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_86_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_87_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_88_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_89_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_90_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_91_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_92_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_93_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_94_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_95_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_96_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_97_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_98_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_99_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True, shift=0.1}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_100_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_101_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_102_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True, shift=0.1}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_103_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_104_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_105_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_106_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_107_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_108_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, shift=0.1}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_109_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_110_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_111_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True, shift=0.1}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_112_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_113_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_114_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_115_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_116_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_117_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_118_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_119_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_120_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_121_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_122_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_123_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_124_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_125_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_126_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, shift=0.1}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_127_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_128_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_129_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True, shift=0.1}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_130_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_131_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_132_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_133_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_134_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_135_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True, shift=0.1}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_136_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_137_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_138_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True, shift=0.1}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_139_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_140_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_141_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_142_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_143_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_144_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_145_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_146_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_147_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_148_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_149_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_150_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_151_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_152_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_153_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True, shift=0.1}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_154_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_155_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_156_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True, shift=0.1}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_157_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_158_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_159_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_160_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_161_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_162_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, shift=0.1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_163_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_164_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_165_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True, shift=0.1}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_166_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_167_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_168_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_169_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_170_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_171_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, shift=0.1}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_172_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_173_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_174_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_175_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_176_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_177_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_178_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_179_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_180_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, shift=0.1}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_181_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_182_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_183_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True, shift=0.1}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_184_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_185_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_186_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_187_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_188_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_189_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, shift=0.1}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_190_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_191_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_192_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_193_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_194_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_195_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_196_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_197_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_198_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_199_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_200_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_201_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_202_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_203_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_204_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_205_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_206_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_207_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, shift=0.1}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_208_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_209_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_210_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_211_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_212_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_213_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_214_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_215_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_216_{cval=nan, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_217_{cval=nan, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_218_{cval=nan, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_219_{cval=nan, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_220_{cval=nan, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_221_{cval=nan, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_222_{cval=nan, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_223_{cval=nan, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_224_{cval=nan, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_225_{cval=inf, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_226_{cval=inf, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_227_{cval=inf, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_228_{cval=inf, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_229_{cval=inf, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_230_{cval=inf, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_231_{cval=inf, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 1.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_232_{cval=inf, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_233_{cval=inf, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_234_{cval=-inf, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 1.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_235_{cval=-inf, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_236_{cval=-inf, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_237_{cval=-inf, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_238_{cval=-inf, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_239_{cval=-inf, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_240_{cval=-inf, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 1.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_241_{cval=-inf, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_float[_param_242_{cval=-inf, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_1_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_2_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_3_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_4_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_5_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_6_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_7_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_8_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_9_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_10_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_11_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_12_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_13_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_14_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_15_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_16_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_17_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_18_{cval=1.0, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 1.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_19_{cval=1.0, mode='constant', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_20_{cval=1.0, mode='constant', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_21_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_22_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_23_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_24_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_25_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_26_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_27_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_28_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_29_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_30_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_31_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_32_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_33_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_34_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_35_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_36_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, shift=0.1}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_37_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_38_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_39_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, shift=0.1}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_40_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_41_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_42_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_43_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_44_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_45_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True, shift=0.1}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_46_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_47_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_48_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True, shift=0.1}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_49_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_50_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_51_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_52_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_53_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_54_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_55_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_56_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_57_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, shift=0.1}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_58_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_59_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_60_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_61_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_62_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_63_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, shift=0.1}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_64_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_65_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_66_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, shift=0.1}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_67_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_68_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_69_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_70_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_71_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_72_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True, shift=0.1}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_73_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_74_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_75_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True, shift=0.1}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_76_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_77_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_78_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_79_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_80_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_81_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True, shift=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_82_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_83_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_84_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True, shift=0.1}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_85_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_86_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_87_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_88_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_89_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_90_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True, shift=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_91_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_92_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_93_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True, shift=0.1}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_94_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_95_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_96_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_97_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_98_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_99_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True, shift=0.1}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_100_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_101_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_102_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True, shift=0.1}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_103_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_104_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_105_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_106_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_107_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_108_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_109_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_110_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_111_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_112_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_113_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_114_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_115_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_116_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_117_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, shift=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_118_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_119_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_120_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True, shift=0.1}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_121_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_122_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_123_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_124_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_125_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_126_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, shift=0.1}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_127_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_128_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_129_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True, shift=0.1}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_130_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_131_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_132_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_133_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_134_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_135_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True, shift=0.1}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_136_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_137_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_138_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_139_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_140_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_141_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_142_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_143_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_144_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True, shift=0.1}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_145_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_146_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_147_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True, shift=0.1}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_148_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_149_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_150_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_151_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_152_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_153_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True, shift=0.1}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_154_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_155_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_156_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True, shift=0.1}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_157_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_158_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_159_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_160_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_161_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_162_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, shift=0.1}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_163_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_164_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_165_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_166_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_167_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_168_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_169_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_170_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_171_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, shift=0.1}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_172_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_173_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_174_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True, shift=0.1}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_175_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_176_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_177_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_178_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_179_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_180_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, shift=0.1}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_181_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_182_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_183_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True, shift=0.1}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_184_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_185_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_186_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_187_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_188_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_189_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_190_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_191_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_192_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_193_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_194_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_195_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_196_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_197_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_198_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, shift=0.1}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_199_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_200_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_201_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_202_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_203_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_204_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_205_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_206_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_207_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, shift=0.1}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_208_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_209_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_210_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_211_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_212_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_213_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_214_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_215_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_216_{cval=nan, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_217_{cval=nan, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_218_{cval=nan, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_219_{cval=nan, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_220_{cval=nan, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_221_{cval=nan, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_222_{cval=nan, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 1.64 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_223_{cval=nan, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_224_{cval=nan, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_225_{cval=inf, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_226_{cval=inf, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_227_{cval=inf, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_228_{cval=inf, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_229_{cval=inf, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_230_{cval=inf, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_231_{cval=inf, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 1.66 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_232_{cval=inf, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_233_{cval=inf, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_234_{cval=-inf, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_235_{cval=-inf, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_236_{cval=-inf, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_237_{cval=-inf, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_238_{cval=-inf, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_239_{cval=-inf, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_240_{cval=-inf, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 1.67 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_241_{cval=-inf, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_complex_float[_param_242_{cval=-inf, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_1_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_2_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_3_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_4_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_5_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_6_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_7_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_8_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_9_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_10_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_11_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_12_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_13_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_14_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_15_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_16_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_17_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_18_{cval=1.0, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_19_{cval=1.0, mode='constant', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_20_{cval=1.0, mode='constant', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_21_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_22_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_23_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_24_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 1.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_25_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_26_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_27_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_28_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_29_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_30_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_31_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_32_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_33_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, shift=0.1}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_34_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_35_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_36_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_37_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_38_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_39_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_40_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_41_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_42_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, shift=0.1}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_43_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_44_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_45_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_46_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_47_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_48_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_49_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_50_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_51_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True, shift=0.1}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_52_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_53_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_54_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_55_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_56_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_57_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_58_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_59_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_60_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, shift=0.1}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_61_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_62_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_63_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_64_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_65_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_66_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_67_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_68_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_69_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, shift=0.1}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_70_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_71_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_72_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_73_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_74_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_75_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_76_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_77_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_78_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True, shift=0.1}] | 1.64 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_79_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_80_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_81_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_82_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_83_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_84_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_85_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_86_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_87_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True, shift=0.1}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_88_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_89_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_90_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_91_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_92_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_93_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_94_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_95_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_96_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True, shift=0.1}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_97_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_98_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_99_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_100_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_101_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_102_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_103_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_104_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_105_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True, shift=0.1}] | 1.64 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_106_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_107_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_108_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_109_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_110_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_111_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_112_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_113_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_114_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True, shift=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_115_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_116_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_117_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_118_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_119_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_120_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_121_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_122_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_123_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True, shift=0.1}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_124_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_125_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_126_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_127_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_128_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_129_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_130_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_131_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_132_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True, shift=0.1}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_133_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_134_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_135_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_136_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_137_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_138_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_139_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_140_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_141_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True, shift=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_142_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_143_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_144_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_145_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_146_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_147_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_148_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_149_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_150_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True, shift=0.1}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_151_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_152_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_153_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_154_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_155_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_156_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_157_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_158_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_159_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True, shift=0.1}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_160_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_161_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_162_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_163_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_164_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_165_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_166_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_167_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_168_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True, shift=0.1}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_169_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_170_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_171_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_172_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_173_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_174_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_175_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_176_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_177_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True, shift=0.1}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_178_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_179_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_180_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_181_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_182_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_183_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_184_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_185_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_186_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True, shift=0.1}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_187_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_188_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_189_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_190_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_191_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_192_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_193_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_194_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_195_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True, shift=0.1}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_196_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_197_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_198_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_199_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_200_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_201_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_202_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_203_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_204_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True, shift=0.1}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_205_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_206_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_207_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_208_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_209_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_210_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_211_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_212_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_213_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True, shift=0.1}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_214_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True, shift=-10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_215_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_216_{cval=nan, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_217_{cval=nan, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_218_{cval=nan, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_219_{cval=nan, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_220_{cval=nan, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_221_{cval=nan, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_222_{cval=nan, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_223_{cval=nan, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_224_{cval=nan, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 1.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_225_{cval=inf, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_226_{cval=inf, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_227_{cval=inf, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_228_{cval=inf, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_229_{cval=inf, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_230_{cval=inf, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_231_{cval=inf, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_232_{cval=inf, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_233_{cval=inf, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 1.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_234_{cval=-inf, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_235_{cval=-inf, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_236_{cval=-inf, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_237_{cval=-inf, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_238_{cval=-inf, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_239_{cval=-inf, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_240_{cval=-inf, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_241_{cval=-inf, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_fortran_order[_param_242_{cval=-inf, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 1.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_1_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_2_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_3_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_4_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_5_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_6_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_7_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_8_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_9_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 5.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_10_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_11_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_12_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_13_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_14_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_15_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_16_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_17_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_19_{cval=1.0, mode='constant', order=3, output=None, prefilter=True, shift=-10}] | 6.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_20_{cval=1.0, mode='constant', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_21_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_22_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_23_{cval=1.0, mode='constant', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_25_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_26_{cval=1.0, mode='constant', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_27_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, shift=0.1}] | 5.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_28_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_29_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_30_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_31_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_32_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_33_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_34_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_35_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_36_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, shift=0.1}] | 5.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_37_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_38_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_39_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_40_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_41_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_42_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_43_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_44_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_46_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True, shift=-10}] | 5.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_47_{cval=1.0, mode='nearest', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_48_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True, shift=0.1}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_49_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_50_{cval=1.0, mode='nearest', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_52_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_53_{cval=1.0, mode='nearest', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_54_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, shift=0.1}] | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_55_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_56_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_57_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_58_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_59_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_60_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_61_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_62_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_63_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, shift=0.1}] | 5.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_64_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_65_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_66_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_67_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_68_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_69_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_70_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_71_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_73_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True, shift=-10}] | 6.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_74_{cval=1.0, mode='mirror', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_75_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True, shift=0.1}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_76_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_77_{cval=1.0, mode='mirror', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_79_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_80_{cval=1.0, mode='mirror', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_81_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True, shift=0.1}] | 5.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_82_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_83_{cval=1.0, mode='wrap', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_84_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_85_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_86_{cval=1.0, mode='wrap', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_87_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_88_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_89_{cval=1.0, mode='wrap', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_90_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True, shift=0.1}] | 5.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_91_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_92_{cval=1.0, mode='wrap', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_93_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_94_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_95_{cval=1.0, mode='wrap', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_96_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_97_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_98_{cval=1.0, mode='wrap', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_100_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True, shift=-10}] | 6.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_101_{cval=1.0, mode='wrap', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_102_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True, shift=0.1}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_103_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_104_{cval=1.0, mode='wrap', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_106_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_107_{cval=1.0, mode='wrap', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_108_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, shift=0.1}] | 5.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_109_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_110_{cval=1.0, mode='grid-wrap', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_111_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_112_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_113_{cval=1.0, mode='grid-wrap', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_114_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_115_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_116_{cval=1.0, mode='grid-wrap', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_117_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, shift=0.1}] | 5.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_118_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_119_{cval=1.0, mode='grid-wrap', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_120_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_121_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_122_{cval=1.0, mode='grid-wrap', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_123_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_124_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_125_{cval=1.0, mode='grid-wrap', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_127_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, shift=-10}] | 6.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_128_{cval=1.0, mode='grid-wrap', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_129_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True, shift=0.1}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_130_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_131_{cval=1.0, mode='grid-wrap', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_133_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_134_{cval=1.0, mode='grid-wrap', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_135_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True, shift=0.1}] | 5.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_136_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_137_{cval=1.0, mode='reflect', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_138_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_139_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_140_{cval=1.0, mode='reflect', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_141_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_142_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_143_{cval=1.0, mode='reflect', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_144_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True, shift=0.1}] | 5.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_145_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_146_{cval=1.0, mode='reflect', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_147_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_148_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_149_{cval=1.0, mode='reflect', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_150_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_151_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_152_{cval=1.0, mode='reflect', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_154_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True, shift=-10}] | 6.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_155_{cval=1.0, mode='reflect', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_156_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True, shift=0.1}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_157_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_158_{cval=1.0, mode='reflect', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_160_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_161_{cval=1.0, mode='reflect', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_162_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, shift=0.1}] | 5.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_163_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_164_{cval=1.0, mode='grid-mirror', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_165_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_166_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_167_{cval=1.0, mode='grid-mirror', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_168_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_169_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_170_{cval=1.0, mode='grid-mirror', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_171_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, shift=0.1}] | 5.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_172_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_173_{cval=1.0, mode='grid-mirror', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_174_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_175_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_176_{cval=1.0, mode='grid-mirror', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_177_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_178_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_179_{cval=1.0, mode='grid-mirror', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_181_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, shift=-10}] | 6.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_182_{cval=1.0, mode='grid-mirror', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_183_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True, shift=0.1}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_184_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_185_{cval=1.0, mode='grid-mirror', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_187_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True, shift=-10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_188_{cval=1.0, mode='grid-mirror', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_189_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, shift=0.1}] | 5.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_190_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_191_{cval=1.0, mode='grid-constant', order=0, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_192_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_193_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_194_{cval=1.0, mode='grid-constant', order=0, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_195_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_196_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_197_{cval=1.0, mode='grid-constant', order=0, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_198_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, shift=0.1}] | 5.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_199_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_200_{cval=1.0, mode='grid-constant', order=1, output=None, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_201_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_202_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_203_{cval=1.0, mode='grid-constant', order=1, output=float64, prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_204_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_205_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True, shift=-10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_206_{cval=1.0, mode='grid-constant', order=1, output='empty', prefilter=True, shift=(5, -5)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_208_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, shift=-10}] | 6.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_209_{cval=1.0, mode='grid-constant', order=3, output=None, prefilter=True, shift=(5, -5)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_210_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_211_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True, shift=-10}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_212_{cval=1.0, mode='grid-constant', order=3, output=float64, prefilter=True, shift=(5, -5)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_214_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True, shift=-10}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_215_{cval=1.0, mode='grid-constant', order=3, output='empty', prefilter=True, shift=(5, -5)}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_216_{cval=nan, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_217_{cval=nan, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_218_{cval=nan, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_219_{cval=nan, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_220_{cval=nan, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_221_{cval=nan, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_222_{cval=nan, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_223_{cval=nan, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_224_{cval=nan, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_225_{cval=inf, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_226_{cval=inf, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_227_{cval=inf, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_228_{cval=inf, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_229_{cval=inf, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_230_{cval=inf, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_231_{cval=inf, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_232_{cval=inf, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_233_{cval=inf, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_234_{cval=-inf, mode='constant', order=0, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_235_{cval=-inf, mode='constant', order=0, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_236_{cval=-inf, mode='constant', order=0, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_237_{cval=-inf, mode='constant', order=1, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_238_{cval=-inf, mode='constant', order=1, output=float64, prefilter=True, shift=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_239_{cval=-inf, mode='constant', order=1, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_240_{cval=-inf, mode='constant', order=3, output=None, prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_241_{cval=-inf, mode='constant', order=3, output=float64, prefilter=True, shift=0.1}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestShift::test_shift_int[_param_242_{cval=-inf, mode='constant', order=3, output='empty', prefilter=True, shift=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_0_{cval=nan, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_1_{cval=nan, mode='constant', order=0, output=float64}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_2_{cval=nan, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_3_{cval=nan, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_4_{cval=nan, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_5_{cval=nan, mode='constant', order=1, output=float64}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_6_{cval=nan, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_7_{cval=nan, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_8_{cval=nan, mode='nearest', order=0, output=None}] | 5.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_9_{cval=nan, mode='nearest', order=0, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_10_{cval=nan, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_11_{cval=nan, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_12_{cval=nan, mode='nearest', order=1, output=None}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_13_{cval=nan, mode='nearest', order=1, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_14_{cval=nan, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_15_{cval=nan, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_16_{cval=inf, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_17_{cval=inf, mode='constant', order=0, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_18_{cval=inf, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_19_{cval=inf, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_20_{cval=inf, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_21_{cval=inf, mode='constant', order=1, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_22_{cval=inf, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_23_{cval=inf, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_24_{cval=inf, mode='nearest', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_25_{cval=inf, mode='nearest', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_26_{cval=inf, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_27_{cval=inf, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_28_{cval=inf, mode='nearest', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_29_{cval=inf, mode='nearest', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_30_{cval=inf, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_31_{cval=inf, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_32_{cval=-inf, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_33_{cval=-inf, mode='constant', order=0, output=float64}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_34_{cval=-inf, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_35_{cval=-inf, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_36_{cval=-inf, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_37_{cval=-inf, mode='constant', order=1, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_38_{cval=-inf, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_39_{cval=-inf, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_40_{cval=-inf, mode='nearest', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_41_{cval=-inf, mode='nearest', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_42_{cval=-inf, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_43_{cval=-inf, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_44_{cval=-inf, mode='nearest', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_45_{cval=-inf, mode='nearest', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_46_{cval=-inf, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_shift[_param_47_{cval=-inf, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_0_{cval=nan, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_1_{cval=nan, mode='constant', order=0, output=float64}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_2_{cval=nan, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_3_{cval=nan, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_4_{cval=nan, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_5_{cval=nan, mode='constant', order=1, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_6_{cval=nan, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_7_{cval=nan, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_8_{cval=nan, mode='nearest', order=0, output=None}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_9_{cval=nan, mode='nearest', order=0, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_10_{cval=nan, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_11_{cval=nan, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_12_{cval=nan, mode='nearest', order=1, output=None}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_13_{cval=nan, mode='nearest', order=1, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_14_{cval=nan, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_15_{cval=nan, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_16_{cval=inf, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_17_{cval=inf, mode='constant', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_18_{cval=inf, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_19_{cval=inf, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_20_{cval=inf, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_21_{cval=inf, mode='constant', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_22_{cval=inf, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_23_{cval=inf, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_24_{cval=inf, mode='nearest', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_25_{cval=inf, mode='nearest', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_26_{cval=inf, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_27_{cval=inf, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_28_{cval=inf, mode='nearest', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_29_{cval=inf, mode='nearest', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_30_{cval=inf, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_31_{cval=inf, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_32_{cval=-inf, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_33_{cval=-inf, mode='constant', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_34_{cval=-inf, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_35_{cval=-inf, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_36_{cval=-inf, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_37_{cval=-inf, mode='constant', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_38_{cval=-inf, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_39_{cval=-inf, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_40_{cval=-inf, mode='nearest', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_41_{cval=-inf, mode='nearest', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_42_{cval=-inf, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_43_{cval=-inf, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_44_{cval=-inf, mode='nearest', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_45_{cval=-inf, mode='nearest', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_46_{cval=-inf, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_zoom[_param_47_{cval=-inf, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_0_{cval=nan, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_1_{cval=nan, mode='constant', order=0, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_2_{cval=nan, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_3_{cval=nan, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_4_{cval=nan, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_5_{cval=nan, mode='constant', order=1, output=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_6_{cval=nan, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_7_{cval=nan, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_8_{cval=nan, mode='nearest', order=0, output=None}] | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_9_{cval=nan, mode='nearest', order=0, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_10_{cval=nan, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_11_{cval=nan, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_12_{cval=nan, mode='nearest', order=1, output=None}] | 5.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_13_{cval=nan, mode='nearest', order=1, output=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_14_{cval=nan, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_15_{cval=nan, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_16_{cval=inf, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_17_{cval=inf, mode='constant', order=0, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_18_{cval=inf, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_19_{cval=inf, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_20_{cval=inf, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_21_{cval=inf, mode='constant', order=1, output=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_22_{cval=inf, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_23_{cval=inf, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_24_{cval=inf, mode='nearest', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_25_{cval=inf, mode='nearest', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_26_{cval=inf, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_27_{cval=inf, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_28_{cval=inf, mode='nearest', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_29_{cval=inf, mode='nearest', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_30_{cval=inf, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_31_{cval=inf, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_32_{cval=-inf, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_33_{cval=-inf, mode='constant', order=0, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_34_{cval=-inf, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_35_{cval=-inf, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_36_{cval=-inf, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_37_{cval=-inf, mode='constant', order=1, output=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_38_{cval=-inf, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_39_{cval=-inf, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_40_{cval=-inf, mode='nearest', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_41_{cval=-inf, mode='nearest', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_42_{cval=-inf, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_43_{cval=-inf, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_44_{cval=-inf, mode='nearest', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_45_{cval=-inf, mode='nearest', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_46_{cval=-inf, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_rotate[_param_47_{cval=-inf, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_0_{cval=nan, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_1_{cval=nan, mode='constant', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_2_{cval=nan, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_3_{cval=nan, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_4_{cval=nan, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_5_{cval=nan, mode='constant', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_6_{cval=nan, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_7_{cval=nan, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_8_{cval=nan, mode='nearest', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_9_{cval=nan, mode='nearest', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_10_{cval=nan, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_11_{cval=nan, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_12_{cval=nan, mode='nearest', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_13_{cval=nan, mode='nearest', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_14_{cval=nan, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_15_{cval=nan, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_16_{cval=inf, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_17_{cval=inf, mode='constant', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_18_{cval=inf, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_19_{cval=inf, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_20_{cval=inf, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_21_{cval=inf, mode='constant', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_22_{cval=inf, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_23_{cval=inf, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_24_{cval=inf, mode='nearest', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_25_{cval=inf, mode='nearest', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_26_{cval=inf, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_27_{cval=inf, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_28_{cval=inf, mode='nearest', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_29_{cval=inf, mode='nearest', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_30_{cval=inf, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_31_{cval=inf, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_32_{cval=-inf, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_33_{cval=-inf, mode='constant', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_34_{cval=-inf, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_35_{cval=-inf, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_36_{cval=-inf, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_37_{cval=-inf, mode='constant', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_38_{cval=-inf, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_39_{cval=-inf, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_40_{cval=-inf, mode='nearest', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_41_{cval=-inf, mode='nearest', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_42_{cval=-inf, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_43_{cval=-inf, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_44_{cval=-inf, mode='nearest', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_45_{cval=-inf, mode='nearest', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_46_{cval=-inf, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_affine[_param_47_{cval=-inf, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_0_{cval=nan, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_1_{cval=nan, mode='constant', order=0, output=float64}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_2_{cval=nan, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_3_{cval=nan, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_4_{cval=nan, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_5_{cval=nan, mode='constant', order=1, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_6_{cval=nan, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_7_{cval=nan, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_8_{cval=nan, mode='nearest', order=0, output=None}] | 5.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_9_{cval=nan, mode='nearest', order=0, output=float64}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_10_{cval=nan, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_11_{cval=nan, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_12_{cval=nan, mode='nearest', order=1, output=None}] | 5.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_13_{cval=nan, mode='nearest', order=1, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_14_{cval=nan, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_15_{cval=nan, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_16_{cval=inf, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_17_{cval=inf, mode='constant', order=0, output=float64}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_18_{cval=inf, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_19_{cval=inf, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_20_{cval=inf, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_21_{cval=inf, mode='constant', order=1, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_22_{cval=inf, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_23_{cval=inf, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_24_{cval=inf, mode='nearest', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_25_{cval=inf, mode='nearest', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_26_{cval=inf, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_27_{cval=inf, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_28_{cval=inf, mode='nearest', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_29_{cval=inf, mode='nearest', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_30_{cval=inf, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_31_{cval=inf, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_32_{cval=-inf, mode='constant', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_33_{cval=-inf, mode='constant', order=0, output=float64}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_34_{cval=-inf, mode='constant', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_35_{cval=-inf, mode='constant', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_36_{cval=-inf, mode='constant', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_37_{cval=-inf, mode='constant', order=1, output=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_38_{cval=-inf, mode='constant', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_39_{cval=-inf, mode='constant', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_40_{cval=-inf, mode='nearest', order=0, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_41_{cval=-inf, mode='nearest', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_42_{cval=-inf, mode='nearest', order=0, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_43_{cval=-inf, mode='nearest', order=0, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_44_{cval=-inf, mode='nearest', order=1, output=None}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_45_{cval=-inf, mode='nearest', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_46_{cval=-inf, mode='nearest', order=1, output=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestInterpolationInvalidCval::test_map_coordinates[_param_47_{cval=-inf, mode='nearest', order=1, output='empty'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, zoom=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_1_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, zoom=10}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_2_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, zoom=(0.1, 10)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_3_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, zoom=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_4_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, zoom=10}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_5_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_6_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_7_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, zoom=10}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_8_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_9_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, zoom=0.1}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_10_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, zoom=10}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_11_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, zoom=(0.1, 10)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_12_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, zoom=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_13_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, zoom=10}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_14_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_15_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_16_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, zoom=10}] | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_17_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_18_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, zoom=0.1}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_19_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, zoom=10}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_20_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, zoom=(0.1, 10)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_21_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, zoom=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_22_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, zoom=10}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_23_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_24_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_25_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, zoom=10}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_26_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_27_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, zoom=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_28_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, zoom=10}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_29_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, zoom=(0.1, 10)}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_30_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, zoom=0.1}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_31_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, zoom=10}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_32_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_33_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_34_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, zoom=10}] | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_35_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_36_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, zoom=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_37_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, zoom=10}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_38_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, zoom=(0.1, 10)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_39_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, zoom=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_40_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, zoom=10}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_41_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_42_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_43_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, zoom=10}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_44_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_45_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, zoom=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_46_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, zoom=10}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_47_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, zoom=(0.1, 10)}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_48_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, zoom=0.1}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_49_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, zoom=10}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_50_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_51_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_52_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, zoom=10}] | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_float[_param_53_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, zoom=0.1}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_1_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, zoom=10}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_2_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, zoom=(0.1, 10)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_3_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, zoom=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_4_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, zoom=10}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_5_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_6_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_7_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, zoom=10}] | 0.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_8_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_9_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, zoom=0.1}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_10_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, zoom=10}] | 1.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_11_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, zoom=(0.1, 10)}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_12_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, zoom=0.1}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_13_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, zoom=10}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_14_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_15_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_16_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, zoom=10}] | 0.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_17_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_18_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, zoom=0.1}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_19_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, zoom=10}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_20_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, zoom=(0.1, 10)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_21_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, zoom=0.1}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_22_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, zoom=10}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_23_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_24_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_25_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, zoom=10}] | 0.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_26_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_27_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, zoom=0.1}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_28_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, zoom=10}] | 1.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_29_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, zoom=(0.1, 10)}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_30_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, zoom=0.1}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_31_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, zoom=10}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_32_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_33_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_34_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, zoom=10}] | 0.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_35_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_36_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, zoom=0.1}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_37_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, zoom=10}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_38_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, zoom=(0.1, 10)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_39_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, zoom=0.1}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_40_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, zoom=10}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_41_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_42_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_43_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, zoom=10}] | 0.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_44_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_45_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, zoom=0.1}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_46_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, zoom=10}] | 1.64 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_47_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, zoom=(0.1, 10)}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_48_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, zoom=0.1}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_49_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, zoom=10}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_50_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_51_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_52_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, zoom=10}] | 0.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_complex_float[_param_53_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_1_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, zoom=10}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_2_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_3_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_4_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, zoom=10}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_5_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_6_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_7_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, zoom=10}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_8_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_9_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_10_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, zoom=10}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_11_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_12_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_13_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, zoom=10}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_14_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_15_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_16_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, zoom=10}] | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_17_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_18_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_19_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, zoom=10}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_20_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_21_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_22_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, zoom=10}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_23_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_24_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_25_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, zoom=10}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_26_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_27_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_28_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, zoom=10}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_29_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_30_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_31_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, zoom=10}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_32_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_33_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_34_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, zoom=10}] | 0.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_35_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_36_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_37_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, zoom=10}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_38_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_39_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_40_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, zoom=10}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_41_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_42_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_43_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, zoom=10}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_44_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_45_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_46_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, zoom=10}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_47_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_48_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_49_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, zoom=10}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_50_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_51_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, zoom=0.1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_52_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, zoom=10}] | 0.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_fortran_order[_param_53_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_0_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, zoom=0.1}] | 5.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_1_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, zoom=10}] | 6.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_2_{cval=1.0, mode='constant', order=0, output=None, prefilter=True, zoom=(0.1, 10)}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_3_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, zoom=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_4_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, zoom=10}] | 0.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_5_{cval=1.0, mode='constant', order=0, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_6_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, zoom=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_7_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, zoom=10}] | 0.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_8_{cval=1.0, mode='constant', order=0, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_9_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, zoom=0.1}] | 5.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_10_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, zoom=10}] | 6.66 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_11_{cval=1.0, mode='constant', order=1, output=None, prefilter=True, zoom=(0.1, 10)}] | 5.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_12_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, zoom=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_13_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, zoom=10}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_14_{cval=1.0, mode='constant', order=1, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_15_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, zoom=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_16_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, zoom=10}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_17_{cval=1.0, mode='constant', order=1, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_18_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, zoom=0.1}] | 5.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_19_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, zoom=10}] | 6.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_20_{cval=1.0, mode='nearest', order=0, output=None, prefilter=True, zoom=(0.1, 10)}] | 5.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_21_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, zoom=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_22_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, zoom=10}] | 0.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_23_{cval=1.0, mode='nearest', order=0, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_24_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, zoom=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_25_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, zoom=10}] | 0.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_26_{cval=1.0, mode='nearest', order=0, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_27_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, zoom=0.1}] | 5.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_28_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, zoom=10}] | 6.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_29_{cval=1.0, mode='nearest', order=1, output=None, prefilter=True, zoom=(0.1, 10)}] | 5.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_30_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, zoom=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_31_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, zoom=10}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_32_{cval=1.0, mode='nearest', order=1, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_33_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, zoom=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_34_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, zoom=10}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_35_{cval=1.0, mode='nearest', order=1, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_36_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, zoom=0.1}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_37_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, zoom=10}] | 6.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_38_{cval=1.0, mode='mirror', order=0, output=None, prefilter=True, zoom=(0.1, 10)}] | 5.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_39_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, zoom=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_40_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, zoom=10}] | 0.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_41_{cval=1.0, mode='mirror', order=0, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_42_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, zoom=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_43_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, zoom=10}] | 0.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_44_{cval=1.0, mode='mirror', order=0, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_45_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, zoom=0.1}] | 5.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_46_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, zoom=10}] | 6.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_47_{cval=1.0, mode='mirror', order=1, output=None, prefilter=True, zoom=(0.1, 10)}] | 5.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_48_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, zoom=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_49_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, zoom=10}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_50_{cval=1.0, mode='mirror', order=1, output=float64, prefilter=True, zoom=(0.1, 10)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_51_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, zoom=0.1}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_52_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, zoom=10}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoom::test_zoom_int[_param_53_{cval=1.0, mode='mirror', order=1, output='empty', prefilter=True, zoom=(0.1, 10)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_0_{mode='nearest', shape=(2, 3), zoom=(1, 1)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_1_{mode='nearest', shape=(2, 3), zoom=(3, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_2_{mode='nearest', shape=(2, 3), zoom=(8, 2)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_3_{mode='nearest', shape=(2, 3), zoom=(8, 8)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_4_{mode='nearest', shape=(4, 4), zoom=(1, 1)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_5_{mode='nearest', shape=(4, 4), zoom=(3, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_6_{mode='nearest', shape=(4, 4), zoom=(8, 2)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_7_{mode='nearest', shape=(4, 4), zoom=(8, 8)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_8_{mode='reflect', shape=(2, 3), zoom=(1, 1)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_9_{mode='reflect', shape=(2, 3), zoom=(3, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_10_{mode='reflect', shape=(2, 3), zoom=(8, 2)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_11_{mode='reflect', shape=(2, 3), zoom=(8, 8)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_12_{mode='reflect', shape=(4, 4), zoom=(1, 1)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_13_{mode='reflect', shape=(4, 4), zoom=(3, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_14_{mode='reflect', shape=(4, 4), zoom=(8, 2)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_15_{mode='reflect', shape=(4, 4), zoom=(8, 8)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_16_{mode='mirror', shape=(2, 3), zoom=(1, 1)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_17_{mode='mirror', shape=(2, 3), zoom=(3, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_18_{mode='mirror', shape=(2, 3), zoom=(8, 2)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_19_{mode='mirror', shape=(2, 3), zoom=(8, 8)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_20_{mode='mirror', shape=(4, 4), zoom=(1, 1)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_21_{mode='mirror', shape=(4, 4), zoom=(3, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_22_{mode='mirror', shape=(4, 4), zoom=(8, 2)}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_23_{mode='mirror', shape=(4, 4), zoom=(8, 8)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_24_{mode='grid-wrap', shape=(2, 3), zoom=(1, 1)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_25_{mode='grid-wrap', shape=(2, 3), zoom=(3, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_26_{mode='grid-wrap', shape=(2, 3), zoom=(8, 2)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_27_{mode='grid-wrap', shape=(2, 3), zoom=(8, 8)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_28_{mode='grid-wrap', shape=(4, 4), zoom=(1, 1)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_29_{mode='grid-wrap', shape=(4, 4), zoom=(3, 5)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_30_{mode='grid-wrap', shape=(4, 4), zoom=(8, 2)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_31_{mode='grid-wrap', shape=(4, 4), zoom=(8, 8)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_32_{mode='grid-constant', shape=(2, 3), zoom=(1, 1)}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_33_{mode='grid-constant', shape=(2, 3), zoom=(3, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_34_{mode='grid-constant', shape=(2, 3), zoom=(8, 2)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_35_{mode='grid-constant', shape=(2, 3), zoom=(8, 8)}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_36_{mode='grid-constant', shape=(4, 4), zoom=(1, 1)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_37_{mode='grid-constant', shape=(4, 4), zoom=(3, 5)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_38_{mode='grid-constant', shape=(4, 4), zoom=(8, 2)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOrder0IntegerGrid::test_zoom_grid_by_int_order0[_param_39_{mode='grid-constant', shape=(4, 4), zoom=(8, 8)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_0_{grid_mode=False, mode='constant', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_1_{grid_mode=False, mode='constant', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_2_{grid_mode=False, mode='constant', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_3_{grid_mode=False, mode='constant', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.65 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_6_{grid_mode=False, mode='nearest', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_7_{grid_mode=False, mode='nearest', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_8_{grid_mode=False, mode='nearest', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 5.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_9_{grid_mode=False, mode='nearest', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 5.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_10_{grid_mode=False, mode='nearest', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_11_{grid_mode=False, mode='nearest', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_12_{grid_mode=False, mode='mirror', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_13_{grid_mode=False, mode='mirror', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_14_{grid_mode=False, mode='mirror', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 5.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_15_{grid_mode=False, mode='mirror', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_18_{grid_mode=False, mode='wrap', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_19_{grid_mode=False, mode='wrap', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_20_{grid_mode=False, mode='wrap', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_21_{grid_mode=False, mode='wrap', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_24_{grid_mode=False, mode='grid-wrap', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_25_{grid_mode=False, mode='grid-wrap', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_26_{grid_mode=False, mode='grid-wrap', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 5.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_27_{grid_mode=False, mode='grid-wrap', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 5.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_28_{grid_mode=False, mode='grid-wrap', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_29_{grid_mode=False, mode='grid-wrap', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_30_{grid_mode=False, mode='reflect', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_31_{grid_mode=False, mode='reflect', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_32_{grid_mode=False, mode='reflect', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 5.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_33_{grid_mode=False, mode='reflect', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 5.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_34_{grid_mode=False, mode='reflect', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_35_{grid_mode=False, mode='reflect', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_36_{grid_mode=False, mode='grid-mirror', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_37_{grid_mode=False, mode='grid-mirror', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_38_{grid_mode=False, mode='grid-mirror', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 5.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_39_{grid_mode=False, mode='grid-mirror', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 5.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_40_{grid_mode=False, mode='grid-mirror', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_41_{grid_mode=False, mode='grid-mirror', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_42_{grid_mode=False, mode='grid-constant', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_43_{grid_mode=False, mode='grid-constant', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_44_{grid_mode=False, mode='grid-constant', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 5.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_45_{grid_mode=False, mode='grid-constant', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 6.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_48_{grid_mode=True, mode='constant', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_49_{grid_mode=True, mode='constant', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_50_{grid_mode=True, mode='constant', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_51_{grid_mode=True, mode='constant', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 2.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_54_{grid_mode=True, mode='nearest', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_55_{grid_mode=True, mode='nearest', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_56_{grid_mode=True, mode='nearest', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_57_{grid_mode=True, mode='nearest', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_58_{grid_mode=True, mode='nearest', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_59_{grid_mode=True, mode='nearest', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_60_{grid_mode=True, mode='mirror', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_61_{grid_mode=True, mode='mirror', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_62_{grid_mode=True, mode='mirror', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_63_{grid_mode=True, mode='mirror', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.65 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_66_{grid_mode=True, mode='wrap', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_67_{grid_mode=True, mode='wrap', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_68_{grid_mode=True, mode='wrap', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_69_{grid_mode=True, mode='wrap', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.67 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_72_{grid_mode=True, mode='grid-wrap', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_73_{grid_mode=True, mode='grid-wrap', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_74_{grid_mode=True, mode='grid-wrap', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_75_{grid_mode=True, mode='grid-wrap', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_76_{grid_mode=True, mode='grid-wrap', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_77_{grid_mode=True, mode='grid-wrap', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_78_{grid_mode=True, mode='reflect', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_79_{grid_mode=True, mode='reflect', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_80_{grid_mode=True, mode='reflect', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_81_{grid_mode=True, mode='reflect', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_82_{grid_mode=True, mode='reflect', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_83_{grid_mode=True, mode='reflect', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_84_{grid_mode=True, mode='grid-mirror', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_85_{grid_mode=True, mode='grid-mirror', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_86_{grid_mode=True, mode='grid-mirror', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_87_{grid_mode=True, mode='grid-mirror', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_88_{grid_mode=True, mode='grid-mirror', order=4, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_89_{grid_mode=True, mode='grid-mirror', order=5, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_90_{grid_mode=True, mode='grid-constant', order=0, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_91_{grid_mode=True, mode='grid-constant', order=1, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_92_{grid_mode=True, mode='grid-constant', order=2, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestZoomOutputSize1::test_zoom_output_size1[_param_93_{grid_mode=True, mode='grid-constant', order=3, shape=(5, 5, 2), zoom=(2, 2, 0.5)}] | 1.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_0_{axis=0, dtype=uint8, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_1_{axis=0, dtype=uint8, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_2_{axis=0, dtype=uint8, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_3_{axis=0, dtype=uint8, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_4_{axis=0, dtype=uint8, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_5_{axis=0, dtype=uint8, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_6_{axis=0, dtype=uint8, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_7_{axis=0, dtype=uint8, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_8_{axis=0, dtype=uint8, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_9_{axis=0, dtype=uint8, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_10_{axis=0, dtype=uint8, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_11_{axis=0, dtype=uint8, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_12_{axis=0, dtype=uint8, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_13_{axis=0, dtype=uint8, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_14_{axis=0, dtype=uint8, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_15_{axis=0, dtype=uint8, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_16_{axis=0, dtype=uint8, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_17_{axis=0, dtype=uint8, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_18_{axis=0, dtype=uint8, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_19_{axis=0, dtype=uint8, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_20_{axis=0, dtype=uint8, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_21_{axis=0, dtype=uint8, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_22_{axis=0, dtype=uint8, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_23_{axis=0, dtype=uint8, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_24_{axis=0, dtype=uint8, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_25_{axis=0, dtype=uint8, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_26_{axis=0, dtype=uint8, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_27_{axis=0, dtype=uint8, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_28_{axis=0, dtype=uint8, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_29_{axis=0, dtype=uint8, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_30_{axis=0, dtype=uint8, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_31_{axis=0, dtype=uint8, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_32_{axis=0, dtype=uint8, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_33_{axis=0, dtype=uint8, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_34_{axis=0, dtype=uint8, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_35_{axis=0, dtype=uint8, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_36_{axis=0, dtype=float64, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_37_{axis=0, dtype=float64, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_38_{axis=0, dtype=float64, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_39_{axis=0, dtype=float64, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_40_{axis=0, dtype=float64, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_41_{axis=0, dtype=float64, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_42_{axis=0, dtype=float64, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_43_{axis=0, dtype=float64, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_44_{axis=0, dtype=float64, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_45_{axis=0, dtype=float64, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_46_{axis=0, dtype=float64, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_47_{axis=0, dtype=float64, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_48_{axis=0, dtype=float64, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_49_{axis=0, dtype=float64, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_50_{axis=0, dtype=float64, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_51_{axis=0, dtype=float64, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_52_{axis=0, dtype=float64, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_53_{axis=0, dtype=float64, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_54_{axis=0, dtype=float64, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_55_{axis=0, dtype=float64, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_56_{axis=0, dtype=float64, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_57_{axis=0, dtype=float64, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_58_{axis=0, dtype=float64, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_59_{axis=0, dtype=float64, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_60_{axis=0, dtype=float64, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_61_{axis=0, dtype=float64, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_62_{axis=0, dtype=float64, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_63_{axis=0, dtype=float64, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_64_{axis=0, dtype=float64, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_65_{axis=0, dtype=float64, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_66_{axis=0, dtype=float64, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_67_{axis=0, dtype=float64, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_68_{axis=0, dtype=float64, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_69_{axis=0, dtype=float64, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_70_{axis=0, dtype=float64, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_71_{axis=0, dtype=float64, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_72_{axis=1, dtype=uint8, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_73_{axis=1, dtype=uint8, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_74_{axis=1, dtype=uint8, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_75_{axis=1, dtype=uint8, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_76_{axis=1, dtype=uint8, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_77_{axis=1, dtype=uint8, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_78_{axis=1, dtype=uint8, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_79_{axis=1, dtype=uint8, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_80_{axis=1, dtype=uint8, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_81_{axis=1, dtype=uint8, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_82_{axis=1, dtype=uint8, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_83_{axis=1, dtype=uint8, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_84_{axis=1, dtype=uint8, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_85_{axis=1, dtype=uint8, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_86_{axis=1, dtype=uint8, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_87_{axis=1, dtype=uint8, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_88_{axis=1, dtype=uint8, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_89_{axis=1, dtype=uint8, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_90_{axis=1, dtype=uint8, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_91_{axis=1, dtype=uint8, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_92_{axis=1, dtype=uint8, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_93_{axis=1, dtype=uint8, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_94_{axis=1, dtype=uint8, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_95_{axis=1, dtype=uint8, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_96_{axis=1, dtype=uint8, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_97_{axis=1, dtype=uint8, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_98_{axis=1, dtype=uint8, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_99_{axis=1, dtype=uint8, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_100_{axis=1, dtype=uint8, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_101_{axis=1, dtype=uint8, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_102_{axis=1, dtype=uint8, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_103_{axis=1, dtype=uint8, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_104_{axis=1, dtype=uint8, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_105_{axis=1, dtype=uint8, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_106_{axis=1, dtype=uint8, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_107_{axis=1, dtype=uint8, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_108_{axis=1, dtype=float64, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_109_{axis=1, dtype=float64, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_110_{axis=1, dtype=float64, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_111_{axis=1, dtype=float64, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_112_{axis=1, dtype=float64, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_113_{axis=1, dtype=float64, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_114_{axis=1, dtype=float64, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_115_{axis=1, dtype=float64, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_116_{axis=1, dtype=float64, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_117_{axis=1, dtype=float64, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_118_{axis=1, dtype=float64, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_119_{axis=1, dtype=float64, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_120_{axis=1, dtype=float64, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_121_{axis=1, dtype=float64, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_122_{axis=1, dtype=float64, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_123_{axis=1, dtype=float64, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_124_{axis=1, dtype=float64, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_125_{axis=1, dtype=float64, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_126_{axis=1, dtype=float64, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_127_{axis=1, dtype=float64, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_128_{axis=1, dtype=float64, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_129_{axis=1, dtype=float64, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_130_{axis=1, dtype=float64, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_131_{axis=1, dtype=float64, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_132_{axis=1, dtype=float64, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_133_{axis=1, dtype=float64, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_134_{axis=1, dtype=float64, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_135_{axis=1, dtype=float64, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_136_{axis=1, dtype=float64, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_137_{axis=1, dtype=float64, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_138_{axis=1, dtype=float64, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_139_{axis=1, dtype=float64, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_140_{axis=1, dtype=float64, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_141_{axis=1, dtype=float64, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_142_{axis=1, dtype=float64, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_143_{axis=1, dtype=float64, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_144_{axis=2, dtype=uint8, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_145_{axis=2, dtype=uint8, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_146_{axis=2, dtype=uint8, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_147_{axis=2, dtype=uint8, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_148_{axis=2, dtype=uint8, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_149_{axis=2, dtype=uint8, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_150_{axis=2, dtype=uint8, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_151_{axis=2, dtype=uint8, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_152_{axis=2, dtype=uint8, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_153_{axis=2, dtype=uint8, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_154_{axis=2, dtype=uint8, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_155_{axis=2, dtype=uint8, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_156_{axis=2, dtype=uint8, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_157_{axis=2, dtype=uint8, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_158_{axis=2, dtype=uint8, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_159_{axis=2, dtype=uint8, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_160_{axis=2, dtype=uint8, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_161_{axis=2, dtype=uint8, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_162_{axis=2, dtype=uint8, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_163_{axis=2, dtype=uint8, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_164_{axis=2, dtype=uint8, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_165_{axis=2, dtype=uint8, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_166_{axis=2, dtype=uint8, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_167_{axis=2, dtype=uint8, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_168_{axis=2, dtype=uint8, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_169_{axis=2, dtype=uint8, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_170_{axis=2, dtype=uint8, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_171_{axis=2, dtype=uint8, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_172_{axis=2, dtype=uint8, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_173_{axis=2, dtype=uint8, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_174_{axis=2, dtype=uint8, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_175_{axis=2, dtype=uint8, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_176_{axis=2, dtype=uint8, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_177_{axis=2, dtype=uint8, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_178_{axis=2, dtype=uint8, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_179_{axis=2, dtype=uint8, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_180_{axis=2, dtype=float64, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_181_{axis=2, dtype=float64, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_182_{axis=2, dtype=float64, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_183_{axis=2, dtype=float64, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_184_{axis=2, dtype=float64, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_185_{axis=2, dtype=float64, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_186_{axis=2, dtype=float64, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_187_{axis=2, dtype=float64, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_188_{axis=2, dtype=float64, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_189_{axis=2, dtype=float64, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_190_{axis=2, dtype=float64, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_191_{axis=2, dtype=float64, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_192_{axis=2, dtype=float64, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_193_{axis=2, dtype=float64, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_194_{axis=2, dtype=float64, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_195_{axis=2, dtype=float64, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_196_{axis=2, dtype=float64, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_197_{axis=2, dtype=float64, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_198_{axis=2, dtype=float64, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_199_{axis=2, dtype=float64, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_200_{axis=2, dtype=float64, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_201_{axis=2, dtype=float64, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_202_{axis=2, dtype=float64, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_203_{axis=2, dtype=float64, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_204_{axis=2, dtype=float64, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_205_{axis=2, dtype=float64, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_206_{axis=2, dtype=float64, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_207_{axis=2, dtype=float64, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_208_{axis=2, dtype=float64, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_209_{axis=2, dtype=float64, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_210_{axis=2, dtype=float64, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_211_{axis=2, dtype=float64, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_212_{axis=2, dtype=float64, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_213_{axis=2, dtype=float64, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_214_{axis=2, dtype=float64, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_215_{axis=2, dtype=float64, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_216_{axis=-1, dtype=uint8, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_217_{axis=-1, dtype=uint8, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_218_{axis=-1, dtype=uint8, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_219_{axis=-1, dtype=uint8, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_220_{axis=-1, dtype=uint8, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_221_{axis=-1, dtype=uint8, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_222_{axis=-1, dtype=uint8, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_223_{axis=-1, dtype=uint8, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_224_{axis=-1, dtype=uint8, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_225_{axis=-1, dtype=uint8, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_226_{axis=-1, dtype=uint8, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_227_{axis=-1, dtype=uint8, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_228_{axis=-1, dtype=uint8, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_229_{axis=-1, dtype=uint8, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_230_{axis=-1, dtype=uint8, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_231_{axis=-1, dtype=uint8, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_232_{axis=-1, dtype=uint8, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_233_{axis=-1, dtype=uint8, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_234_{axis=-1, dtype=uint8, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_235_{axis=-1, dtype=uint8, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_236_{axis=-1, dtype=uint8, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_237_{axis=-1, dtype=uint8, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_238_{axis=-1, dtype=uint8, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_239_{axis=-1, dtype=uint8, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_240_{axis=-1, dtype=uint8, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_241_{axis=-1, dtype=uint8, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_242_{axis=-1, dtype=uint8, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_243_{axis=-1, dtype=uint8, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_244_{axis=-1, dtype=uint8, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_245_{axis=-1, dtype=uint8, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_246_{axis=-1, dtype=uint8, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_247_{axis=-1, dtype=uint8, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_248_{axis=-1, dtype=uint8, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_249_{axis=-1, dtype=uint8, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_250_{axis=-1, dtype=uint8, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_251_{axis=-1, dtype=uint8, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_252_{axis=-1, dtype=float64, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_253_{axis=-1, dtype=float64, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_254_{axis=-1, dtype=float64, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_255_{axis=-1, dtype=float64, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_256_{axis=-1, dtype=float64, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_257_{axis=-1, dtype=float64, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_258_{axis=-1, dtype=float64, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_259_{axis=-1, dtype=float64, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_260_{axis=-1, dtype=float64, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_261_{axis=-1, dtype=float64, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_262_{axis=-1, dtype=float64, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_263_{axis=-1, dtype=float64, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_264_{axis=-1, dtype=float64, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_265_{axis=-1, dtype=float64, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_266_{axis=-1, dtype=float64, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_267_{axis=-1, dtype=float64, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_268_{axis=-1, dtype=float64, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_269_{axis=-1, dtype=float64, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_270_{axis=-1, dtype=float64, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_271_{axis=-1, dtype=float64, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_272_{axis=-1, dtype=float64, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_273_{axis=-1, dtype=float64, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_274_{axis=-1, dtype=float64, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_275_{axis=-1, dtype=float64, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_276_{axis=-1, dtype=float64, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_277_{axis=-1, dtype=float64, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_278_{axis=-1, dtype=float64, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_279_{axis=-1, dtype=float64, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_280_{axis=-1, dtype=float64, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_281_{axis=-1, dtype=float64, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_282_{axis=-1, dtype=float64, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_283_{axis=-1, dtype=float64, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_284_{axis=-1, dtype=float64, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_285_{axis=-1, dtype=float64, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_286_{axis=-1, dtype=float64, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d[_param_287_{axis=-1, dtype=float64, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_0_{axis=0, dtype=uint8, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_1_{axis=0, dtype=uint8, mode='mirror', order=0, output=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_2_{axis=0, dtype=uint8, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_3_{axis=0, dtype=uint8, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_4_{axis=0, dtype=uint8, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_5_{axis=0, dtype=uint8, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_6_{axis=0, dtype=uint8, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_7_{axis=0, dtype=uint8, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_8_{axis=0, dtype=uint8, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_9_{axis=0, dtype=uint8, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_10_{axis=0, dtype=uint8, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_11_{axis=0, dtype=uint8, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_12_{axis=0, dtype=uint8, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_13_{axis=0, dtype=uint8, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_14_{axis=0, dtype=uint8, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_15_{axis=0, dtype=uint8, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_16_{axis=0, dtype=uint8, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_17_{axis=0, dtype=uint8, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_18_{axis=0, dtype=uint8, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_19_{axis=0, dtype=uint8, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_20_{axis=0, dtype=uint8, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_21_{axis=0, dtype=uint8, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_22_{axis=0, dtype=uint8, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_23_{axis=0, dtype=uint8, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_24_{axis=0, dtype=uint8, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_25_{axis=0, dtype=uint8, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_26_{axis=0, dtype=uint8, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_27_{axis=0, dtype=uint8, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_28_{axis=0, dtype=uint8, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_29_{axis=0, dtype=uint8, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_30_{axis=0, dtype=uint8, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_31_{axis=0, dtype=uint8, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_32_{axis=0, dtype=uint8, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_33_{axis=0, dtype=uint8, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_34_{axis=0, dtype=uint8, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_35_{axis=0, dtype=uint8, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_36_{axis=0, dtype=float64, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_37_{axis=0, dtype=float64, mode='mirror', order=0, output=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_38_{axis=0, dtype=float64, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_39_{axis=0, dtype=float64, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_40_{axis=0, dtype=float64, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_41_{axis=0, dtype=float64, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_42_{axis=0, dtype=float64, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_43_{axis=0, dtype=float64, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_44_{axis=0, dtype=float64, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_45_{axis=0, dtype=float64, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_46_{axis=0, dtype=float64, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_47_{axis=0, dtype=float64, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_48_{axis=0, dtype=float64, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_49_{axis=0, dtype=float64, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_50_{axis=0, dtype=float64, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_51_{axis=0, dtype=float64, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_52_{axis=0, dtype=float64, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_53_{axis=0, dtype=float64, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_54_{axis=0, dtype=float64, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_55_{axis=0, dtype=float64, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_56_{axis=0, dtype=float64, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_57_{axis=0, dtype=float64, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_58_{axis=0, dtype=float64, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_59_{axis=0, dtype=float64, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_60_{axis=0, dtype=float64, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_61_{axis=0, dtype=float64, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_62_{axis=0, dtype=float64, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_63_{axis=0, dtype=float64, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_64_{axis=0, dtype=float64, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_65_{axis=0, dtype=float64, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_66_{axis=0, dtype=float64, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_67_{axis=0, dtype=float64, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_68_{axis=0, dtype=float64, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_69_{axis=0, dtype=float64, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_70_{axis=0, dtype=float64, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_71_{axis=0, dtype=float64, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_72_{axis=1, dtype=uint8, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_73_{axis=1, dtype=uint8, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_74_{axis=1, dtype=uint8, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_75_{axis=1, dtype=uint8, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_76_{axis=1, dtype=uint8, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_77_{axis=1, dtype=uint8, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_78_{axis=1, dtype=uint8, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_79_{axis=1, dtype=uint8, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_80_{axis=1, dtype=uint8, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_81_{axis=1, dtype=uint8, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_82_{axis=1, dtype=uint8, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_83_{axis=1, dtype=uint8, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_84_{axis=1, dtype=uint8, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_85_{axis=1, dtype=uint8, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_86_{axis=1, dtype=uint8, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_87_{axis=1, dtype=uint8, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_88_{axis=1, dtype=uint8, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_89_{axis=1, dtype=uint8, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_90_{axis=1, dtype=uint8, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_91_{axis=1, dtype=uint8, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_92_{axis=1, dtype=uint8, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_93_{axis=1, dtype=uint8, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_94_{axis=1, dtype=uint8, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_95_{axis=1, dtype=uint8, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_96_{axis=1, dtype=uint8, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_97_{axis=1, dtype=uint8, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_98_{axis=1, dtype=uint8, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_99_{axis=1, dtype=uint8, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_100_{axis=1, dtype=uint8, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_101_{axis=1, dtype=uint8, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_102_{axis=1, dtype=uint8, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_103_{axis=1, dtype=uint8, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_104_{axis=1, dtype=uint8, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_105_{axis=1, dtype=uint8, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_106_{axis=1, dtype=uint8, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_107_{axis=1, dtype=uint8, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_108_{axis=1, dtype=float64, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_109_{axis=1, dtype=float64, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_110_{axis=1, dtype=float64, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_111_{axis=1, dtype=float64, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_112_{axis=1, dtype=float64, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_113_{axis=1, dtype=float64, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_114_{axis=1, dtype=float64, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_115_{axis=1, dtype=float64, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_116_{axis=1, dtype=float64, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_117_{axis=1, dtype=float64, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_118_{axis=1, dtype=float64, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_119_{axis=1, dtype=float64, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_120_{axis=1, dtype=float64, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_121_{axis=1, dtype=float64, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_122_{axis=1, dtype=float64, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_123_{axis=1, dtype=float64, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_124_{axis=1, dtype=float64, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_125_{axis=1, dtype=float64, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_126_{axis=1, dtype=float64, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_127_{axis=1, dtype=float64, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_128_{axis=1, dtype=float64, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_129_{axis=1, dtype=float64, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_130_{axis=1, dtype=float64, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_131_{axis=1, dtype=float64, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_132_{axis=1, dtype=float64, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_133_{axis=1, dtype=float64, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_134_{axis=1, dtype=float64, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_135_{axis=1, dtype=float64, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_136_{axis=1, dtype=float64, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_137_{axis=1, dtype=float64, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_138_{axis=1, dtype=float64, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_139_{axis=1, dtype=float64, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_140_{axis=1, dtype=float64, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_141_{axis=1, dtype=float64, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_142_{axis=1, dtype=float64, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_143_{axis=1, dtype=float64, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_144_{axis=2, dtype=uint8, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_145_{axis=2, dtype=uint8, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_146_{axis=2, dtype=uint8, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_147_{axis=2, dtype=uint8, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_148_{axis=2, dtype=uint8, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_149_{axis=2, dtype=uint8, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_150_{axis=2, dtype=uint8, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_151_{axis=2, dtype=uint8, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_152_{axis=2, dtype=uint8, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_153_{axis=2, dtype=uint8, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_154_{axis=2, dtype=uint8, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_155_{axis=2, dtype=uint8, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_156_{axis=2, dtype=uint8, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_157_{axis=2, dtype=uint8, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_158_{axis=2, dtype=uint8, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_159_{axis=2, dtype=uint8, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_160_{axis=2, dtype=uint8, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_161_{axis=2, dtype=uint8, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_162_{axis=2, dtype=uint8, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_163_{axis=2, dtype=uint8, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_164_{axis=2, dtype=uint8, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_165_{axis=2, dtype=uint8, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_166_{axis=2, dtype=uint8, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_167_{axis=2, dtype=uint8, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_168_{axis=2, dtype=uint8, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_169_{axis=2, dtype=uint8, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_170_{axis=2, dtype=uint8, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_171_{axis=2, dtype=uint8, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_172_{axis=2, dtype=uint8, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_173_{axis=2, dtype=uint8, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_174_{axis=2, dtype=uint8, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_175_{axis=2, dtype=uint8, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_176_{axis=2, dtype=uint8, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_177_{axis=2, dtype=uint8, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_178_{axis=2, dtype=uint8, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_179_{axis=2, dtype=uint8, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_180_{axis=2, dtype=float64, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_181_{axis=2, dtype=float64, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_182_{axis=2, dtype=float64, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_183_{axis=2, dtype=float64, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_184_{axis=2, dtype=float64, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_185_{axis=2, dtype=float64, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_186_{axis=2, dtype=float64, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_187_{axis=2, dtype=float64, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_188_{axis=2, dtype=float64, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_189_{axis=2, dtype=float64, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_190_{axis=2, dtype=float64, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_191_{axis=2, dtype=float64, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_192_{axis=2, dtype=float64, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_193_{axis=2, dtype=float64, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_194_{axis=2, dtype=float64, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_195_{axis=2, dtype=float64, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_196_{axis=2, dtype=float64, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_197_{axis=2, dtype=float64, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_198_{axis=2, dtype=float64, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_199_{axis=2, dtype=float64, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_200_{axis=2, dtype=float64, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_201_{axis=2, dtype=float64, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_202_{axis=2, dtype=float64, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_203_{axis=2, dtype=float64, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_204_{axis=2, dtype=float64, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_205_{axis=2, dtype=float64, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_206_{axis=2, dtype=float64, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_207_{axis=2, dtype=float64, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_208_{axis=2, dtype=float64, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_209_{axis=2, dtype=float64, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_210_{axis=2, dtype=float64, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_211_{axis=2, dtype=float64, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_212_{axis=2, dtype=float64, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_213_{axis=2, dtype=float64, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_214_{axis=2, dtype=float64, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_215_{axis=2, dtype=float64, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_216_{axis=-1, dtype=uint8, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_217_{axis=-1, dtype=uint8, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_218_{axis=-1, dtype=uint8, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_219_{axis=-1, dtype=uint8, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_220_{axis=-1, dtype=uint8, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_221_{axis=-1, dtype=uint8, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_222_{axis=-1, dtype=uint8, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_223_{axis=-1, dtype=uint8, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_224_{axis=-1, dtype=uint8, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_225_{axis=-1, dtype=uint8, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_226_{axis=-1, dtype=uint8, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_227_{axis=-1, dtype=uint8, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_228_{axis=-1, dtype=uint8, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_229_{axis=-1, dtype=uint8, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_230_{axis=-1, dtype=uint8, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_231_{axis=-1, dtype=uint8, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_232_{axis=-1, dtype=uint8, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_233_{axis=-1, dtype=uint8, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_234_{axis=-1, dtype=uint8, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_235_{axis=-1, dtype=uint8, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_236_{axis=-1, dtype=uint8, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_237_{axis=-1, dtype=uint8, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_238_{axis=-1, dtype=uint8, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_239_{axis=-1, dtype=uint8, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_240_{axis=-1, dtype=uint8, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_241_{axis=-1, dtype=uint8, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_242_{axis=-1, dtype=uint8, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_243_{axis=-1, dtype=uint8, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_244_{axis=-1, dtype=uint8, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_245_{axis=-1, dtype=uint8, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_246_{axis=-1, dtype=uint8, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_247_{axis=-1, dtype=uint8, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_248_{axis=-1, dtype=uint8, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_249_{axis=-1, dtype=uint8, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_250_{axis=-1, dtype=uint8, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_251_{axis=-1, dtype=uint8, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_252_{axis=-1, dtype=float64, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_253_{axis=-1, dtype=float64, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_254_{axis=-1, dtype=float64, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_255_{axis=-1, dtype=float64, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_256_{axis=-1, dtype=float64, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_257_{axis=-1, dtype=float64, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_258_{axis=-1, dtype=float64, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_259_{axis=-1, dtype=float64, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_260_{axis=-1, dtype=float64, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_261_{axis=-1, dtype=float64, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_262_{axis=-1, dtype=float64, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_263_{axis=-1, dtype=float64, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_264_{axis=-1, dtype=float64, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_265_{axis=-1, dtype=float64, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_266_{axis=-1, dtype=float64, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_267_{axis=-1, dtype=float64, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_268_{axis=-1, dtype=float64, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_269_{axis=-1, dtype=float64, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_270_{axis=-1, dtype=float64, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_271_{axis=-1, dtype=float64, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_272_{axis=-1, dtype=float64, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_273_{axis=-1, dtype=float64, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_274_{axis=-1, dtype=float64, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_275_{axis=-1, dtype=float64, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_276_{axis=-1, dtype=float64, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_277_{axis=-1, dtype=float64, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_278_{axis=-1, dtype=float64, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_279_{axis=-1, dtype=float64, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_280_{axis=-1, dtype=float64, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_281_{axis=-1, dtype=float64, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_282_{axis=-1, dtype=float64, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_283_{axis=-1, dtype=float64, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_284_{axis=-1, dtype=float64, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_285_{axis=-1, dtype=float64, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_286_{axis=-1, dtype=float64, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter1d::test_spline_filter1d_output[_param_287_{axis=-1, dtype=float64, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_0_{dtype=uint8, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_1_{dtype=uint8, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_2_{dtype=uint8, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_3_{dtype=uint8, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_4_{dtype=uint8, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_5_{dtype=uint8, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_6_{dtype=uint8, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_7_{dtype=uint8, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_8_{dtype=uint8, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_9_{dtype=uint8, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_10_{dtype=uint8, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_11_{dtype=uint8, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_12_{dtype=uint8, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_13_{dtype=uint8, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_14_{dtype=uint8, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_15_{dtype=uint8, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_16_{dtype=uint8, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_17_{dtype=uint8, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_18_{dtype=uint8, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_19_{dtype=uint8, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_20_{dtype=uint8, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_21_{dtype=uint8, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_22_{dtype=uint8, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_23_{dtype=uint8, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_24_{dtype=uint8, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_25_{dtype=uint8, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_26_{dtype=uint8, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_27_{dtype=uint8, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_28_{dtype=uint8, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_29_{dtype=uint8, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_30_{dtype=uint8, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_31_{dtype=uint8, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_32_{dtype=uint8, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_33_{dtype=uint8, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_34_{dtype=uint8, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_35_{dtype=uint8, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_36_{dtype=float64, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_37_{dtype=float64, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_38_{dtype=float64, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_39_{dtype=float64, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_40_{dtype=float64, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_41_{dtype=float64, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_42_{dtype=float64, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_43_{dtype=float64, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_44_{dtype=float64, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_45_{dtype=float64, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_46_{dtype=float64, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_47_{dtype=float64, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_48_{dtype=float64, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_49_{dtype=float64, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_50_{dtype=float64, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_51_{dtype=float64, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_52_{dtype=float64, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_53_{dtype=float64, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_54_{dtype=float64, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_55_{dtype=float64, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_56_{dtype=float64, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_57_{dtype=float64, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_58_{dtype=float64, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_59_{dtype=float64, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_60_{dtype=float64, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_61_{dtype=float64, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_62_{dtype=float64, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_63_{dtype=float64, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_64_{dtype=float64, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_65_{dtype=float64, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_66_{dtype=float64, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_67_{dtype=float64, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_68_{dtype=float64, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_69_{dtype=float64, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_70_{dtype=float64, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter[_param_71_{dtype=float64, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_0_{dtype=uint8, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_1_{dtype=uint8, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_2_{dtype=uint8, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_3_{dtype=uint8, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_4_{dtype=uint8, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_5_{dtype=uint8, mode='mirror', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_6_{dtype=uint8, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_7_{dtype=uint8, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_8_{dtype=uint8, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_9_{dtype=uint8, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_10_{dtype=uint8, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_11_{dtype=uint8, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_12_{dtype=uint8, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_13_{dtype=uint8, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_14_{dtype=uint8, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_15_{dtype=uint8, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_16_{dtype=uint8, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_17_{dtype=uint8, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_18_{dtype=uint8, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_19_{dtype=uint8, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_20_{dtype=uint8, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_21_{dtype=uint8, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_22_{dtype=uint8, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_23_{dtype=uint8, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_24_{dtype=uint8, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_25_{dtype=uint8, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_26_{dtype=uint8, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_27_{dtype=uint8, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_28_{dtype=uint8, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_29_{dtype=uint8, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_30_{dtype=uint8, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_31_{dtype=uint8, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_32_{dtype=uint8, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_33_{dtype=uint8, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_34_{dtype=uint8, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_35_{dtype=uint8, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_36_{dtype=float64, mode='mirror', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_37_{dtype=float64, mode='mirror', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_38_{dtype=float64, mode='mirror', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_39_{dtype=float64, mode='mirror', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_40_{dtype=float64, mode='mirror', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_41_{dtype=float64, mode='mirror', order=2, output=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_42_{dtype=float64, mode='mirror', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_43_{dtype=float64, mode='mirror', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_44_{dtype=float64, mode='mirror', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_45_{dtype=float64, mode='mirror', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_46_{dtype=float64, mode='mirror', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_47_{dtype=float64, mode='mirror', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_48_{dtype=float64, mode='grid-wrap', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_49_{dtype=float64, mode='grid-wrap', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_50_{dtype=float64, mode='grid-wrap', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_51_{dtype=float64, mode='grid-wrap', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_52_{dtype=float64, mode='grid-wrap', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_53_{dtype=float64, mode='grid-wrap', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_54_{dtype=float64, mode='grid-wrap', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_55_{dtype=float64, mode='grid-wrap', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_56_{dtype=float64, mode='grid-wrap', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_57_{dtype=float64, mode='grid-wrap', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_58_{dtype=float64, mode='grid-wrap', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_59_{dtype=float64, mode='grid-wrap', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_60_{dtype=float64, mode='reflect', order=0, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_61_{dtype=float64, mode='reflect', order=0, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_62_{dtype=float64, mode='reflect', order=1, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_63_{dtype=float64, mode='reflect', order=1, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_64_{dtype=float64, mode='reflect', order=2, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_65_{dtype=float64, mode='reflect', order=2, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_66_{dtype=float64, mode='reflect', order=3, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_67_{dtype=float64, mode='reflect', order=3, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_68_{dtype=float64, mode='reflect', order=4, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_69_{dtype=float64, mode='reflect', order=4, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_70_{dtype=float64, mode='reflect', order=5, output=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilter::test_spline_filter_with_output[_param_71_{dtype=float64, mode='reflect', order=5, output=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_0_{dtype=complex64, mode='mirror', order=2, output=complex64}] | 2.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_1_{dtype=complex64, mode='mirror', order=2, output=complex128}] | 2.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_2_{dtype=complex64, mode='mirror', order=3, output=complex64}] | 2.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_3_{dtype=complex64, mode='mirror', order=3, output=complex128}] | 2.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_4_{dtype=complex64, mode='mirror', order=4, output=complex64}] | 2.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_5_{dtype=complex64, mode='mirror', order=4, output=complex128}] | 2.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_6_{dtype=complex64, mode='mirror', order=5, output=complex64}] | 2.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_7_{dtype=complex64, mode='mirror', order=5, output=complex128}] | 2.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_8_{dtype=complex64, mode='wrap', order=2, output=complex64}] | 2.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_9_{dtype=complex64, mode='wrap', order=2, output=complex128}] | 2.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_10_{dtype=complex64, mode='wrap', order=3, output=complex64}] | 2.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_11_{dtype=complex64, mode='wrap', order=3, output=complex128}] | 2.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_12_{dtype=complex64, mode='wrap', order=4, output=complex64}] | 2.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_13_{dtype=complex64, mode='wrap', order=4, output=complex128}] | 2.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_14_{dtype=complex64, mode='wrap', order=5, output=complex64}] | 2.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_15_{dtype=complex64, mode='wrap', order=5, output=complex128}] | 2.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_16_{dtype=complex64, mode='reflect', order=2, output=complex64}] | 2.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_17_{dtype=complex64, mode='reflect', order=2, output=complex128}] | 2.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_18_{dtype=complex64, mode='reflect', order=3, output=complex64}] | 2.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_19_{dtype=complex64, mode='reflect', order=3, output=complex128}] | 2.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_20_{dtype=complex64, mode='reflect', order=4, output=complex64}] | 2.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_21_{dtype=complex64, mode='reflect', order=4, output=complex128}] | 2.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_22_{dtype=complex64, mode='reflect', order=5, output=complex64}] | 2.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_23_{dtype=complex64, mode='reflect', order=5, output=complex128}] | 2.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_24_{dtype=complex128, mode='mirror', order=2, output=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_25_{dtype=complex128, mode='mirror', order=2, output=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_26_{dtype=complex128, mode='mirror', order=3, output=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_27_{dtype=complex128, mode='mirror', order=3, output=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_28_{dtype=complex128, mode='mirror', order=4, output=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_29_{dtype=complex128, mode='mirror', order=4, output=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_30_{dtype=complex128, mode='mirror', order=5, output=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_31_{dtype=complex128, mode='mirror', order=5, output=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_32_{dtype=complex128, mode='wrap', order=2, output=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_33_{dtype=complex128, mode='wrap', order=2, output=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_34_{dtype=complex128, mode='wrap', order=3, output=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_35_{dtype=complex128, mode='wrap', order=3, output=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_36_{dtype=complex128, mode='wrap', order=4, output=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_37_{dtype=complex128, mode='wrap', order=4, output=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_38_{dtype=complex128, mode='wrap', order=5, output=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_39_{dtype=complex128, mode='wrap', order=5, output=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_40_{dtype=complex128, mode='reflect', order=2, output=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_41_{dtype=complex128, mode='reflect', order=2, output=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_42_{dtype=complex128, mode='reflect', order=3, output=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_43_{dtype=complex128, mode='reflect', order=3, output=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_44_{dtype=complex128, mode='reflect', order=4, output=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_45_{dtype=complex128, mode='reflect', order=4, output=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_46_{dtype=complex128, mode='reflect', order=5, output=complex64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py::TestSplineFilterComplex::test_spline_filter_complex[_param_47_{dtype=complex128, mode='reflect', order=5, output=complex128}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_0_{connectivity=None, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=bool}] | 3.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1_{connectivity=None, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=int8}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2_{connectivity=None, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=int32}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_3_{connectivity=None, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=int64}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_4_{connectivity=None, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=float32}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_5_{connectivity=None, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_6_{connectivity=None, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_7_{connectivity=None, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_8_{connectivity=None, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_9_{connectivity=None, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_10_{connectivity=None, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_11_{connectivity=None, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_12_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_13_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_14_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_15_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_16_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_17_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_18_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_19_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_20_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_21_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_22_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_23_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_24_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_25_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_26_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_27_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_28_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_29_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_30_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_31_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_32_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_33_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_34_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_35_{connectivity=None, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_36_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_37_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_38_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_39_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_40_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_41_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_42_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_43_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_44_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_45_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_46_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_47_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_48_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_49_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_50_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_51_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_52_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_53_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_54_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_55_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_56_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_57_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_58_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_59_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_60_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_61_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_62_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_63_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_64_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_65_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_66_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_67_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_68_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_69_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_70_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_71_{connectivity=None, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_72_{connectivity=None, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=bool}] | 2.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_73_{connectivity=None, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_74_{connectivity=None, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_75_{connectivity=None, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_76_{connectivity=None, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_77_{connectivity=None, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_78_{connectivity=None, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_79_{connectivity=None, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_80_{connectivity=None, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_81_{connectivity=None, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_82_{connectivity=None, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_83_{connectivity=None, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_84_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_85_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_86_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_87_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_88_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_89_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_90_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_91_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_92_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_93_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_94_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_95_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_96_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_97_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_98_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_99_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_100_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_101_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_102_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_103_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_104_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_105_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_106_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_107_{connectivity=None, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_108_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_109_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_110_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_111_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_112_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_113_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_114_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_115_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_116_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_117_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_118_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_119_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_120_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_121_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_122_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_123_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_124_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_125_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_126_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_127_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_128_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_129_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_130_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_131_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_132_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_133_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_134_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_135_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_136_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_137_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_138_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_139_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_140_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_141_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_142_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_143_{connectivity=None, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_144_{connectivity=None, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=bool}] | 2.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_145_{connectivity=None, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_146_{connectivity=None, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_147_{connectivity=None, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_148_{connectivity=None, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_149_{connectivity=None, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_150_{connectivity=None, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_151_{connectivity=None, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_152_{connectivity=None, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_153_{connectivity=None, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_154_{connectivity=None, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_155_{connectivity=None, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_156_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_157_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_158_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_159_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_160_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_161_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_162_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_163_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_164_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_165_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_166_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_167_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_168_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_169_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_170_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_171_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_172_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_173_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_174_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_175_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_176_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_177_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_178_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_179_{connectivity=None, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_180_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_181_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_182_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_183_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_184_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_185_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_186_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_187_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_188_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_189_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_190_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_191_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_192_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_193_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_194_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_195_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_196_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_197_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_198_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_199_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_200_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_201_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_202_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_203_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_204_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_205_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_206_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_207_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_208_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_209_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_210_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_211_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_212_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_213_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_214_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_215_{connectivity=None, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_216_{connectivity=None, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=bool}] | 2.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_217_{connectivity=None, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_218_{connectivity=None, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_219_{connectivity=None, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_220_{connectivity=None, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_221_{connectivity=None, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_222_{connectivity=None, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_223_{connectivity=None, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_224_{connectivity=None, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_225_{connectivity=None, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_226_{connectivity=None, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_227_{connectivity=None, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_228_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_229_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_230_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_231_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_232_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_233_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_234_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_235_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_236_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_237_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_238_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_239_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_240_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_241_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_242_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_243_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_244_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_245_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_246_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_247_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_248_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_249_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_250_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_251_{connectivity=None, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_252_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_253_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_254_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_255_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_256_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_257_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_258_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_259_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_260_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_261_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_262_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_263_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_264_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_265_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_266_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_267_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_268_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_269_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_270_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_271_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_272_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_273_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_274_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_275_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_276_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_277_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_278_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_279_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_280_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_281_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_282_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_283_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_284_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_285_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_286_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_287_{connectivity=None, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_288_{connectivity=None, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_289_{connectivity=None, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_290_{connectivity=None, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_291_{connectivity=None, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_292_{connectivity=None, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_293_{connectivity=None, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_294_{connectivity=None, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_295_{connectivity=None, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_296_{connectivity=None, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_297_{connectivity=None, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_298_{connectivity=None, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_299_{connectivity=None, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_300_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_301_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_302_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_303_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_304_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_305_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_306_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_307_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_308_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_309_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_310_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_311_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_312_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_313_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_314_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_315_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_316_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_317_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_318_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_319_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_320_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_321_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_322_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_323_{connectivity=None, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_324_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_325_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_326_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_327_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_328_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_329_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_330_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_331_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_332_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_333_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_334_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_335_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_336_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_337_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_338_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_339_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_340_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_341_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_342_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_343_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_344_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_345_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_346_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_347_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_348_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_349_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_350_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_351_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_352_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_353_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_354_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_355_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_356_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_357_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_358_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_359_{connectivity=None, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_360_{connectivity=None, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_361_{connectivity=None, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_362_{connectivity=None, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_363_{connectivity=None, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_364_{connectivity=None, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_365_{connectivity=None, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_366_{connectivity=None, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_367_{connectivity=None, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_368_{connectivity=None, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_369_{connectivity=None, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_370_{connectivity=None, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_371_{connectivity=None, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_372_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_373_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_374_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_375_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_376_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_377_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_378_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_379_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_380_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_381_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_382_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_383_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_384_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_385_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_386_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_387_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_388_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_389_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_390_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_391_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_392_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_393_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_394_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_395_{connectivity=None, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_396_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_397_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_398_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_399_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_400_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_401_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_402_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_403_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_404_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_405_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_406_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_407_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_408_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_409_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_410_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_411_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_412_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_413_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_414_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_415_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_416_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_417_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_418_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_419_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_420_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_421_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_422_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_423_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_424_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_425_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_426_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_427_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_428_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_429_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_430_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_431_{connectivity=None, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_432_{connectivity=None, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_433_{connectivity=None, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_434_{connectivity=None, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_435_{connectivity=None, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_436_{connectivity=None, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_437_{connectivity=None, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_438_{connectivity=None, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_439_{connectivity=None, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_440_{connectivity=None, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_441_{connectivity=None, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_442_{connectivity=None, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_443_{connectivity=None, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=float64}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_444_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_445_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_446_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_447_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_448_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_449_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_450_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_451_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_452_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_453_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_454_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_455_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_456_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_457_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_458_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_459_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_460_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_461_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_462_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_463_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_464_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_465_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_466_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_467_{connectivity=None, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_468_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_469_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_470_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_471_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_472_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_473_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_474_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_475_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_476_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_477_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_478_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_479_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_480_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_481_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_482_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_483_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_484_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_485_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_486_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_487_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_488_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_489_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_490_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_491_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_492_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_493_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_494_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_495_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_496_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_497_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_498_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_499_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_500_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_501_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_502_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_503_{connectivity=None, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_504_{connectivity=None, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_505_{connectivity=None, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_506_{connectivity=None, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_507_{connectivity=None, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_508_{connectivity=None, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_509_{connectivity=None, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_510_{connectivity=None, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_511_{connectivity=None, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_512_{connectivity=None, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_513_{connectivity=None, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_514_{connectivity=None, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_515_{connectivity=None, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_516_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_517_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_518_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_519_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_520_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_521_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_522_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_523_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_524_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_525_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_526_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_527_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_528_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_529_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_530_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_531_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_532_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_533_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_534_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_535_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_536_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_537_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_538_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_539_{connectivity=None, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_540_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_541_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_542_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_543_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_544_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_545_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_546_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_547_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_548_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_549_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_550_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_551_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_552_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_553_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_554_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_555_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_556_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_557_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_558_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_559_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_560_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_561_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_562_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_563_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_564_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_565_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_566_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_567_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_568_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_569_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_570_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_571_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_572_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_573_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_574_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_575_{connectivity=None, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_576_{connectivity=None, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_577_{connectivity=None, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_578_{connectivity=None, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_579_{connectivity=None, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_580_{connectivity=None, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_581_{connectivity=None, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_582_{connectivity=None, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_583_{connectivity=None, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_584_{connectivity=None, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_585_{connectivity=None, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_586_{connectivity=None, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_587_{connectivity=None, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_588_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_589_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_590_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_591_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_592_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_593_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_594_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_595_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_596_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_597_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_598_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_599_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_600_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_601_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_602_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_603_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_604_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_605_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_606_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_607_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_608_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_609_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_610_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_611_{connectivity=None, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_612_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_613_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_614_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_615_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_616_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_617_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_618_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_619_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_620_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_621_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_622_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_623_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_624_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_625_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_626_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_627_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_628_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_629_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_630_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_631_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_632_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_633_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_634_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_635_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_636_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_637_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_638_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_639_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_640_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_641_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_642_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_643_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_644_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_645_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_646_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_647_{connectivity=None, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_648_{connectivity=None, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_649_{connectivity=None, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_650_{connectivity=None, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_651_{connectivity=None, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_652_{connectivity=None, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_653_{connectivity=None, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_654_{connectivity=None, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_655_{connectivity=None, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_656_{connectivity=None, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_657_{connectivity=None, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_658_{connectivity=None, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_659_{connectivity=None, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_660_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_661_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_662_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_663_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_664_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_665_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_666_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_667_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_668_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_669_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_670_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_671_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_672_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_673_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_674_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_675_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_676_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_677_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_678_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_679_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_680_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_681_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_682_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_683_{connectivity=None, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_684_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_685_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_686_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_687_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_688_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_689_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_690_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_691_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_692_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_693_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_694_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_695_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_696_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_697_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_698_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_699_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_700_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_701_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_702_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_703_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_704_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_705_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_706_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_707_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_708_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_709_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_710_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_711_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_712_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_713_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_714_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_715_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_716_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_717_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_718_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_719_{connectivity=None, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_720_{connectivity=None, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_721_{connectivity=None, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_722_{connectivity=None, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_723_{connectivity=None, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_724_{connectivity=None, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_725_{connectivity=None, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_726_{connectivity=None, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_727_{connectivity=None, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_728_{connectivity=None, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_729_{connectivity=None, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_730_{connectivity=None, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_731_{connectivity=None, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_732_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_733_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_734_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_735_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_736_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_737_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_738_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_739_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_740_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_741_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_742_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_743_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_744_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_745_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_746_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_747_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_748_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_749_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_750_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_751_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_752_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_753_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_754_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_755_{connectivity=None, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_756_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_757_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_758_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_759_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_760_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_761_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_762_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_763_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_764_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_765_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_766_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_767_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_768_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_769_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_770_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_771_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_772_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_773_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_774_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_775_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_776_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_777_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_778_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_779_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_780_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_781_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_782_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_783_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_784_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_785_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_786_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_787_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_788_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_789_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_790_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_791_{connectivity=None, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_792_{connectivity=None, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_793_{connectivity=None, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_794_{connectivity=None, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_795_{connectivity=None, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_796_{connectivity=None, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_797_{connectivity=None, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_798_{connectivity=None, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_799_{connectivity=None, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_800_{connectivity=None, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_801_{connectivity=None, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_802_{connectivity=None, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_803_{connectivity=None, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_804_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_805_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_806_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_807_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_808_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_809_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_810_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_811_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_812_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_813_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_814_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_815_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_816_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_817_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_818_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_819_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_820_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_821_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_822_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_823_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_824_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_825_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_826_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_827_{connectivity=None, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_828_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_829_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_830_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_831_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_832_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_833_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_834_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_835_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_836_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_837_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_838_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_839_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_840_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_841_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_842_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_843_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_844_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_845_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_846_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_847_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_848_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_849_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_850_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_851_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_852_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_853_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_854_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_855_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_856_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_857_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_858_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_859_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_860_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_861_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_862_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_863_{connectivity=None, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_864_{connectivity=2, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_865_{connectivity=2, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_866_{connectivity=2, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_867_{connectivity=2, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_868_{connectivity=2, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_869_{connectivity=2, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_870_{connectivity=2, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_871_{connectivity=2, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_872_{connectivity=2, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_873_{connectivity=2, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_874_{connectivity=2, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_875_{connectivity=2, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_876_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_877_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_878_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_879_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_880_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_881_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_882_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_883_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_884_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_885_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_886_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_887_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_888_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_889_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_890_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_891_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_892_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_893_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_894_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_895_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_896_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_897_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_898_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_899_{connectivity=2, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_900_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_901_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_902_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_903_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_904_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_905_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_906_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_907_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_908_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_909_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_910_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_911_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_912_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_913_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_914_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_915_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_916_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_917_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_918_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_919_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_920_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_921_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_922_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_923_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_924_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_925_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_926_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_927_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_928_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_929_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_930_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_931_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_932_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_933_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_934_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_935_{connectivity=2, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_936_{connectivity=2, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_937_{connectivity=2, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_938_{connectivity=2, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_939_{connectivity=2, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_940_{connectivity=2, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_941_{connectivity=2, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_942_{connectivity=2, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_943_{connectivity=2, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_944_{connectivity=2, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_945_{connectivity=2, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_946_{connectivity=2, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_947_{connectivity=2, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_948_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_949_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_950_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_951_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_952_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_953_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_954_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_955_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_956_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_957_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_958_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_959_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_960_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_961_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_962_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_963_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_964_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_965_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_966_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_967_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_968_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_969_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_970_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_971_{connectivity=2, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_972_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_973_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_974_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_975_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_976_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_977_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_978_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_979_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_980_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_981_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_982_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_983_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_984_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_985_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_986_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_987_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_988_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_989_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_990_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_991_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_992_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_993_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_994_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_995_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_996_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_997_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_998_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_999_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1000_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1001_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1002_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1003_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1004_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1005_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1006_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1007_{connectivity=2, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1008_{connectivity=2, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1009_{connectivity=2, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1010_{connectivity=2, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1011_{connectivity=2, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1012_{connectivity=2, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1013_{connectivity=2, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1014_{connectivity=2, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1015_{connectivity=2, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1016_{connectivity=2, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1017_{connectivity=2, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1018_{connectivity=2, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1019_{connectivity=2, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1020_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1021_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1022_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1023_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1024_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1025_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1026_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1027_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1028_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1029_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1030_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1031_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1032_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1033_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1034_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1035_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1036_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1037_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1038_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1039_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1040_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1041_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1042_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1043_{connectivity=2, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1044_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1045_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1046_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1047_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1048_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1049_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1050_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1051_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1052_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1053_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1054_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1055_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1056_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1057_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1058_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1059_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1060_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1061_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1062_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1063_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1064_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1065_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1066_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1067_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1068_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1069_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1070_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1071_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1072_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1073_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1074_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1075_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1076_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1077_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1078_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1079_{connectivity=2, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1080_{connectivity=2, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1081_{connectivity=2, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1082_{connectivity=2, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1083_{connectivity=2, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1084_{connectivity=2, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1085_{connectivity=2, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1086_{connectivity=2, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1087_{connectivity=2, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1088_{connectivity=2, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1089_{connectivity=2, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1090_{connectivity=2, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1091_{connectivity=2, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1092_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1093_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1094_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1095_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1096_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1097_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1098_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1099_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1100_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1101_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1102_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1103_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1104_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1105_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1106_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1107_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1108_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1109_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1110_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1111_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1112_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1113_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1114_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1115_{connectivity=2, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1116_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1117_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1118_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1119_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1120_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1121_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1122_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1123_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1124_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1125_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1126_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1127_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1128_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1129_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1130_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1131_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1132_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1133_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1134_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1135_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1136_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1137_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1138_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1139_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1140_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1141_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1142_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1143_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1144_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1145_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1146_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1147_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1148_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1149_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1150_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1151_{connectivity=2, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1152_{connectivity=2, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1153_{connectivity=2, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1154_{connectivity=2, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1155_{connectivity=2, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1156_{connectivity=2, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1157_{connectivity=2, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1158_{connectivity=2, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1159_{connectivity=2, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1160_{connectivity=2, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1161_{connectivity=2, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1162_{connectivity=2, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1163_{connectivity=2, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1164_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1165_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1166_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1167_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1168_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1169_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1170_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1171_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1172_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1173_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1174_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1175_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1176_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1177_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1178_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1179_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1180_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1181_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1182_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1183_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1184_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1185_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1186_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1187_{connectivity=2, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1188_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1189_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1190_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1191_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1192_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1193_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1194_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1195_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1196_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1197_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1198_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1199_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1200_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1201_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1202_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1203_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1204_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1205_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1206_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1207_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1208_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1209_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1210_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1211_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1212_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1213_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1214_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1215_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1216_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1217_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1218_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1219_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1220_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1221_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1222_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1223_{connectivity=2, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1224_{connectivity=2, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1225_{connectivity=2, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1226_{connectivity=2, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1227_{connectivity=2, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1228_{connectivity=2, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1229_{connectivity=2, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1230_{connectivity=2, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1231_{connectivity=2, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1232_{connectivity=2, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1233_{connectivity=2, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1234_{connectivity=2, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1235_{connectivity=2, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1236_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1237_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1238_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1239_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1240_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1241_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1242_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1243_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1244_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1245_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1246_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1247_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1248_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1249_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1250_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1251_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1252_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1253_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1254_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1255_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1256_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1257_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1258_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1259_{connectivity=2, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1260_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1261_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1262_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1263_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1264_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1265_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1266_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1267_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1268_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1269_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1270_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1271_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1272_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1273_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1274_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1275_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1276_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1277_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1278_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1279_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1280_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1281_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1282_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1283_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1284_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1285_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1286_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1287_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1288_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1289_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1290_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1291_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1292_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1293_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1294_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1295_{connectivity=2, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1296_{connectivity=2, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1297_{connectivity=2, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1298_{connectivity=2, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1299_{connectivity=2, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1300_{connectivity=2, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1301_{connectivity=2, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1302_{connectivity=2, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1303_{connectivity=2, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1304_{connectivity=2, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1305_{connectivity=2, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1306_{connectivity=2, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1307_{connectivity=2, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1308_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1309_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1310_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1311_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1312_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1313_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1314_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1315_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1316_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1317_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1318_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1319_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1320_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1321_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1322_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1323_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1324_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1325_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1326_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1327_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1328_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1329_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1330_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1331_{connectivity=2, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1332_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1333_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1334_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1335_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1336_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1337_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1338_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1339_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1340_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1341_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1342_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1343_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1344_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1345_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1346_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1347_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1348_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1349_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1350_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1351_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1352_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1353_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1354_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1355_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1356_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1357_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1358_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1359_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1360_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1361_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1362_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1363_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1364_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1365_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1366_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1367_{connectivity=2, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1368_{connectivity=2, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1369_{connectivity=2, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1370_{connectivity=2, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1371_{connectivity=2, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1372_{connectivity=2, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1373_{connectivity=2, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1374_{connectivity=2, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1375_{connectivity=2, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1376_{connectivity=2, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1377_{connectivity=2, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1378_{connectivity=2, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1379_{connectivity=2, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1380_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1381_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1382_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1383_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1384_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1385_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1386_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1387_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1388_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1389_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1390_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1391_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1392_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1393_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1394_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1395_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1396_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1397_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1398_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1399_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1400_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1401_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1402_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1403_{connectivity=2, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1404_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1405_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1406_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1407_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1408_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1409_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1410_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1411_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1412_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1413_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1414_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1415_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1416_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1417_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1418_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1419_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1420_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1421_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1422_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1423_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1424_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1425_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1426_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1427_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1428_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1429_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1430_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1431_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1432_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1433_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1434_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1435_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1436_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1437_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1438_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1439_{connectivity=2, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1440_{connectivity=2, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1441_{connectivity=2, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1442_{connectivity=2, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1443_{connectivity=2, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1444_{connectivity=2, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1445_{connectivity=2, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1446_{connectivity=2, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1447_{connectivity=2, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1448_{connectivity=2, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1449_{connectivity=2, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1450_{connectivity=2, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1451_{connectivity=2, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1452_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1453_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1454_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1455_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1456_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1457_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1458_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1459_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1460_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1461_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1462_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1463_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1464_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1465_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1466_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1467_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1468_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1469_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1470_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1471_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1472_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1473_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1474_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1475_{connectivity=2, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1476_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1477_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1478_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1479_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1480_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1481_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1482_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1483_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1484_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1485_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1486_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1487_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1488_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1489_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1490_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1491_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1492_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1493_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1494_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1495_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1496_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1497_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1498_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1499_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1500_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1501_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1502_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1503_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1504_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1505_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1506_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1507_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1508_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1509_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1510_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1511_{connectivity=2, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1512_{connectivity=2, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1513_{connectivity=2, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1514_{connectivity=2, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1515_{connectivity=2, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1516_{connectivity=2, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1517_{connectivity=2, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1518_{connectivity=2, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1519_{connectivity=2, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1520_{connectivity=2, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1521_{connectivity=2, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1522_{connectivity=2, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1523_{connectivity=2, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1524_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1525_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1526_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1527_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1528_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1529_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1530_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1531_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1532_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1533_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1534_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1535_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1536_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1537_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1538_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1539_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1540_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1541_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1542_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1543_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1544_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1545_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1546_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1547_{connectivity=2, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1548_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1549_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1550_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1551_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1552_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1553_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1554_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1555_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1556_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1557_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1558_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1559_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1560_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1561_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1562_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1563_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1564_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1565_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1566_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1567_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1568_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1569_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1570_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1571_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1572_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1573_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1574_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1575_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1576_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1577_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1578_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1579_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1580_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1581_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1582_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1583_{connectivity=2, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1584_{connectivity=2, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1585_{connectivity=2, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1586_{connectivity=2, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1587_{connectivity=2, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1588_{connectivity=2, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1589_{connectivity=2, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1590_{connectivity=2, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1591_{connectivity=2, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1592_{connectivity=2, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1593_{connectivity=2, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1594_{connectivity=2, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1595_{connectivity=2, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1596_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1597_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1598_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1599_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1600_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1601_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1602_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1603_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1604_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1605_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1606_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1607_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1608_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1609_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1610_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1611_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1612_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1613_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1614_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1615_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1616_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1617_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1618_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1619_{connectivity=2, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1620_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1621_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1622_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1623_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1624_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1625_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1626_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1627_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1628_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1629_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1630_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1631_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1632_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1633_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1634_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1635_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1636_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1637_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1638_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1639_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1640_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1641_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1642_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1643_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1644_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1645_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1646_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1647_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1648_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1649_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1650_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1651_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1652_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1653_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1654_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1655_{connectivity=2, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1656_{connectivity=2, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1657_{connectivity=2, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1658_{connectivity=2, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1659_{connectivity=2, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1660_{connectivity=2, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1661_{connectivity=2, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1662_{connectivity=2, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1663_{connectivity=2, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1664_{connectivity=2, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1665_{connectivity=2, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1666_{connectivity=2, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1667_{connectivity=2, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1668_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1669_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1670_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1671_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1672_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1673_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1674_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1675_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1676_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1677_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1678_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1679_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1680_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1681_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1682_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1683_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1684_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1685_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1686_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1687_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1688_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1689_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1690_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1691_{connectivity=2, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1692_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1693_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1694_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1695_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1696_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1697_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1698_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1699_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1700_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1701_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1702_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1703_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1704_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1705_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1706_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1707_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1708_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1709_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1710_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1711_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1712_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1713_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1714_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1715_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1716_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1717_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1718_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1719_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1720_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1721_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1722_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1723_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1724_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1725_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1726_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1727_{connectivity=2, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1728_{connectivity=3, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1729_{connectivity=3, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1730_{connectivity=3, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1731_{connectivity=3, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1732_{connectivity=3, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1733_{connectivity=3, density=0.2, ndim=1, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1734_{connectivity=3, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1735_{connectivity=3, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1736_{connectivity=3, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1737_{connectivity=3, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1738_{connectivity=3, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1739_{connectivity=3, density=0.2, ndim=1, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1740_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1741_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1742_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1743_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1744_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1745_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1746_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1747_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1748_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1749_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1750_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1751_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1752_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1753_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1754_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1755_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1756_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1757_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1758_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1759_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1760_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1761_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1762_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1763_{connectivity=3, density=0.2, ndim=1, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1764_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1765_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1766_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1767_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1768_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1769_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1770_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1771_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1772_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1773_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1774_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1775_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1776_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1777_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1778_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1779_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1780_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1781_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1782_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1783_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1784_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1785_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1786_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1787_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1788_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1789_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1790_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1791_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1792_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1793_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1794_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1795_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1796_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1797_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1798_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1799_{connectivity=3, density=0.2, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1800_{connectivity=3, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1801_{connectivity=3, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1802_{connectivity=3, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1803_{connectivity=3, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1804_{connectivity=3, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1805_{connectivity=3, density=0.2, ndim=2, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1806_{connectivity=3, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1807_{connectivity=3, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1808_{connectivity=3, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1809_{connectivity=3, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1810_{connectivity=3, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1811_{connectivity=3, density=0.2, ndim=2, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1812_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1813_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1814_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1815_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1816_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1817_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1818_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1819_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1820_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1821_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1822_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1823_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1824_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1825_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1826_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1827_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1828_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1829_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1830_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1831_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1832_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1833_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1834_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1835_{connectivity=3, density=0.2, ndim=2, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1836_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1837_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1838_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1839_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1840_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1841_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1842_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1843_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1844_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1845_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1846_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1847_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1848_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1849_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1850_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1851_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1852_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1853_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1854_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1855_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1856_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1857_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1858_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1859_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1860_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1861_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1862_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1863_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1864_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1865_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1866_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1867_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1868_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1869_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1870_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1871_{connectivity=3, density=0.2, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1872_{connectivity=3, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1873_{connectivity=3, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1874_{connectivity=3, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1875_{connectivity=3, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1876_{connectivity=3, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1877_{connectivity=3, density=0.2, ndim=3, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1878_{connectivity=3, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1879_{connectivity=3, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1880_{connectivity=3, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1881_{connectivity=3, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1882_{connectivity=3, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1883_{connectivity=3, density=0.2, ndim=3, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1884_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1885_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1886_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1887_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1888_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1889_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1890_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1891_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1892_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1893_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1894_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1895_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1896_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1897_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1898_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1899_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1900_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1901_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1902_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1903_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1904_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1905_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1906_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1907_{connectivity=3, density=0.2, ndim=3, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1908_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1909_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1910_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1911_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1912_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1913_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1914_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1915_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1916_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1917_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1918_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1919_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1920_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1921_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1922_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1923_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1924_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1925_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1926_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1927_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1928_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1929_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1930_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1931_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1932_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1933_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1934_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1935_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1936_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1937_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1938_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1939_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1940_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1941_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1942_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1943_{connectivity=3, density=0.2, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1944_{connectivity=3, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1945_{connectivity=3, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1946_{connectivity=3, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1947_{connectivity=3, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1948_{connectivity=3, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1949_{connectivity=3, density=0.2, ndim=4, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1950_{connectivity=3, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1951_{connectivity=3, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1952_{connectivity=3, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1953_{connectivity=3, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1954_{connectivity=3, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1955_{connectivity=3, density=0.2, ndim=4, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1956_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1957_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1958_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1959_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1960_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1961_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1962_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1963_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1964_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1965_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1966_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1967_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1968_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1969_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1970_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1971_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1972_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1973_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1974_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1975_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1976_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1977_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1978_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1979_{connectivity=3, density=0.2, ndim=4, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1980_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1981_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1982_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1983_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1984_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1985_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1986_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1987_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1988_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1989_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1990_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1991_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1992_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1993_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1994_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1995_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1996_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1997_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1998_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_1999_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2000_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2001_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2002_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2003_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2004_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2005_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2006_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2007_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2008_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2009_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2010_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2011_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2012_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2013_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2014_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2015_{connectivity=3, density=0.2, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2016_{connectivity=3, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2017_{connectivity=3, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2018_{connectivity=3, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2019_{connectivity=3, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2020_{connectivity=3, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2021_{connectivity=3, density=0.3, ndim=1, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2022_{connectivity=3, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2023_{connectivity=3, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2024_{connectivity=3, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2025_{connectivity=3, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2026_{connectivity=3, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2027_{connectivity=3, density=0.3, ndim=1, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2028_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2029_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2030_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2031_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2032_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2033_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2034_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2035_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2036_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2037_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2038_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2039_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2040_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2041_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2042_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2043_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2044_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2045_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2046_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2047_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2048_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2049_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2050_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2051_{connectivity=3, density=0.3, ndim=1, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2052_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2053_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2054_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2055_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2056_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2057_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2058_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2059_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2060_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2061_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2062_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2063_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2064_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2065_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2066_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2067_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2068_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2069_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2070_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2071_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2072_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2073_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2074_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2075_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2076_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2077_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2078_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2079_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2080_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2081_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2082_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2083_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2084_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2085_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2086_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2087_{connectivity=3, density=0.3, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2088_{connectivity=3, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2089_{connectivity=3, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2090_{connectivity=3, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2091_{connectivity=3, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2092_{connectivity=3, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2093_{connectivity=3, density=0.3, ndim=2, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2094_{connectivity=3, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2095_{connectivity=3, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2096_{connectivity=3, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2097_{connectivity=3, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2098_{connectivity=3, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2099_{connectivity=3, density=0.3, ndim=2, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2100_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2101_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2102_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2103_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2104_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2105_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2106_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2107_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2108_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2109_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2110_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2111_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2112_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2113_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2114_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2115_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2116_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2117_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2118_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2119_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2120_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2121_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2122_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2123_{connectivity=3, density=0.3, ndim=2, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2124_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2125_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2126_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2127_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2128_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2129_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2130_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2131_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2132_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2133_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2134_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2135_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2136_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2137_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2138_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2139_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2140_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2141_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2142_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2143_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2144_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2145_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2146_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2147_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2148_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2149_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2150_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2151_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2152_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2153_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2154_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2155_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2156_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2157_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2158_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2159_{connectivity=3, density=0.3, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2160_{connectivity=3, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2161_{connectivity=3, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2162_{connectivity=3, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2163_{connectivity=3, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2164_{connectivity=3, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2165_{connectivity=3, density=0.3, ndim=3, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2166_{connectivity=3, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2167_{connectivity=3, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2168_{connectivity=3, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2169_{connectivity=3, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2170_{connectivity=3, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2171_{connectivity=3, density=0.3, ndim=3, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2172_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2173_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2174_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2175_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2176_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2177_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2178_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2179_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2180_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2181_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2182_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2183_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2184_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2185_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2186_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2187_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2188_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2189_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2190_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2191_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2192_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2193_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2194_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2195_{connectivity=3, density=0.3, ndim=3, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2196_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2197_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2198_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2199_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2200_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2201_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2202_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2203_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2204_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2205_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2206_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2207_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2208_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2209_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2210_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2211_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2212_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2213_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2214_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2215_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2216_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2217_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2218_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2219_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2220_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2221_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2222_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2223_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2224_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2225_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2226_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2227_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2228_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2229_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2230_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2231_{connectivity=3, density=0.3, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2232_{connectivity=3, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2233_{connectivity=3, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2234_{connectivity=3, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2235_{connectivity=3, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2236_{connectivity=3, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2237_{connectivity=3, density=0.3, ndim=4, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2238_{connectivity=3, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2239_{connectivity=3, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2240_{connectivity=3, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2241_{connectivity=3, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2242_{connectivity=3, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2243_{connectivity=3, density=0.3, ndim=4, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2244_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2245_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2246_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2247_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2248_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2249_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2250_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2251_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2252_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2253_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2254_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2255_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2256_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2257_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2258_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2259_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2260_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2261_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2262_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2263_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2264_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2265_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2266_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2267_{connectivity=3, density=0.3, ndim=4, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2268_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2269_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2270_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2271_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2272_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2273_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2274_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2275_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2276_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2277_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2278_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2279_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2280_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2281_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2282_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2283_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2284_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2285_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2286_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2287_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2288_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2289_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2290_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2291_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2292_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2293_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2294_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2295_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2296_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2297_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2298_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2299_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2300_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2301_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2302_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2303_{connectivity=3, density=0.3, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2304_{connectivity=3, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2305_{connectivity=3, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2306_{connectivity=3, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2307_{connectivity=3, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2308_{connectivity=3, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2309_{connectivity=3, density=0.4, ndim=1, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2310_{connectivity=3, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2311_{connectivity=3, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2312_{connectivity=3, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2313_{connectivity=3, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2314_{connectivity=3, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2315_{connectivity=3, density=0.4, ndim=1, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2316_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2317_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2318_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2319_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2320_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2321_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2322_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2323_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2324_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2325_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2326_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2327_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2328_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2329_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2330_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2331_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2332_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2333_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2334_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2335_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2336_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2337_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2338_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2339_{connectivity=3, density=0.4, ndim=1, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2340_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2341_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2342_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2343_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2344_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2345_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2346_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2347_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2348_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2349_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2350_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2351_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2352_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2353_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2354_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2355_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2356_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2357_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2358_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2359_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2360_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2361_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2362_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2363_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2364_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2365_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2366_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2367_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2368_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2369_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2370_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2371_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2372_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2373_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2374_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2375_{connectivity=3, density=0.4, ndim=1, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2376_{connectivity=3, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2377_{connectivity=3, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2378_{connectivity=3, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2379_{connectivity=3, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2380_{connectivity=3, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2381_{connectivity=3, density=0.4, ndim=2, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2382_{connectivity=3, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2383_{connectivity=3, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2384_{connectivity=3, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2385_{connectivity=3, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2386_{connectivity=3, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2387_{connectivity=3, density=0.4, ndim=2, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2388_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2389_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2390_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2391_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2392_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2393_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2394_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2395_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2396_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2397_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2398_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2399_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2400_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2401_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2402_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2403_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2404_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2405_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2406_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2407_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2408_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2409_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2410_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2411_{connectivity=3, density=0.4, ndim=2, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2412_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2413_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2414_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2415_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2416_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2417_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2418_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2419_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2420_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2421_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2422_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2423_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2424_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2425_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2426_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2427_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2428_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2429_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2430_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2431_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2432_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2433_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2434_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2435_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2436_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2437_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2438_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2439_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2440_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2441_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2442_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2443_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2444_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2445_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2446_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2447_{connectivity=3, density=0.4, ndim=2, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2448_{connectivity=3, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2449_{connectivity=3, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2450_{connectivity=3, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2451_{connectivity=3, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2452_{connectivity=3, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2453_{connectivity=3, density=0.4, ndim=3, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2454_{connectivity=3, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2455_{connectivity=3, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2456_{connectivity=3, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2457_{connectivity=3, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2458_{connectivity=3, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2459_{connectivity=3, density=0.4, ndim=3, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2460_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2461_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2462_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2463_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2464_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2465_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2466_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2467_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2468_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2469_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2470_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2471_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2472_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2473_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2474_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2475_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2476_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2477_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2478_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2479_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2480_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2481_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2482_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2483_{connectivity=3, density=0.4, ndim=3, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2484_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2485_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2486_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2487_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2488_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2489_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2490_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2491_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2492_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2493_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2494_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2495_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2496_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2497_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2498_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2499_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2500_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2501_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2502_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2503_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2504_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2505_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2506_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2507_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2508_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2509_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2510_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2511_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2512_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2513_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2514_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2515_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2516_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2517_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2518_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2519_{connectivity=3, density=0.4, ndim=3, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2520_{connectivity=3, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2521_{connectivity=3, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2522_{connectivity=3, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2523_{connectivity=3, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2524_{connectivity=3, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2525_{connectivity=3, density=0.4, ndim=4, o_type=None, output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2526_{connectivity=3, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2527_{connectivity=3, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2528_{connectivity=3, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2529_{connectivity=3, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2530_{connectivity=3, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2531_{connectivity=3, density=0.4, ndim=4, o_type=None, output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2532_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2533_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2534_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2535_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2536_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2537_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2538_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2539_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2540_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2541_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2542_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2543_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2544_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2545_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2546_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2547_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2548_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2549_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2550_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2551_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2552_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2553_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2554_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2555_{connectivity=3, density=0.4, ndim=4, o_type=None, output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2556_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2557_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2558_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2559_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2560_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2561_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=None, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2562_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2563_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2564_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2565_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2566_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2567_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=None, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2568_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2569_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2570_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2571_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2572_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2573_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int32, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2574_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2575_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2576_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2577_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2578_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2579_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int32, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2580_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2581_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2582_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2583_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2584_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2585_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int64, size=50, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2586_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=bool}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2587_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2588_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2589_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=int64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2590_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabel::test_label[_param_2591_{connectivity=3, density=0.4, ndim=4, o_type='ndarray', output=int64, size=100, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabelSpecialCases::test_label_empty | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabelSpecialCases::test_label_0d_zero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabelSpecialCases::test_label_0d_one | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabelSpecialCases::test_label_swirl | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_single_dim[_param_0_{op='sum'}] | 5.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_single_dim[_param_1_{op='mean'}] | 4.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_single_dim[_param_2_{op='variance'}] | 8.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_single_dim[_param_3_{op='standard_deviation'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_single_dim[_param_4_{op='center_of_mass'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_single_dim[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_multi_dim[_param_0_{op='sum'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_multi_dim[_param_1_{op='mean'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_multi_dim[_param_2_{op='variance'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_multi_dim[_param_3_{op='standard_deviation'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_multi_dim[_param_4_{op='center_of_mass'}] | 16.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_multi_dim[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_broadcast_labels[_param_0_{op='sum'}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_broadcast_labels[_param_1_{op='mean'}] | 2.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_broadcast_labels[_param_2_{op='variance'}] | 5.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_broadcast_labels[_param_3_{op='standard_deviation'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_broadcast_labels[_param_4_{op='center_of_mass'}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_broadcast_labels[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_broadcast_labels2[_param_0_{op='sum'}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_broadcast_labels2[_param_1_{op='mean'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_broadcast_labels2[_param_2_{op='variance'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_broadcast_labels2[_param_3_{op='standard_deviation'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_broadcast_labels2[_param_4_{op='center_of_mass'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_broadcast_labels2[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_zero_dim[_param_0_{op='sum'}] | 9.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_zero_dim[_param_1_{op='mean'}] | 4.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_zero_dim[_param_2_{op='variance'}] | 8.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_zero_dim[_param_3_{op='standard_deviation'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_zero_dim[_param_4_{op='center_of_mass'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_zero_dim[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_only_input[_param_0_{op='sum'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_only_input[_param_1_{op='mean'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_only_input[_param_2_{op='variance'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_only_input[_param_3_{op='standard_deviation'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_only_input[_param_4_{op='center_of_mass'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_only_input[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_no_index[_param_0_{op='sum'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_no_index[_param_1_{op='mean'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_no_index[_param_2_{op='variance'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_no_index[_param_3_{op='standard_deviation'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_no_index[_param_4_{op='center_of_mass'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_no_index[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_scalar_index[_param_0_{op='sum'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_scalar_index[_param_1_{op='mean'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_scalar_index[_param_2_{op='variance'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_scalar_index[_param_3_{op='standard_deviation'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_scalar_index[_param_4_{op='center_of_mass'}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_scalar_index[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_image_dtype[_param_0_{op='sum'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_image_dtype[_param_1_{op='mean'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_image_dtype[_param_2_{op='variance'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_image_dtype[_param_3_{op='standard_deviation'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_image_dtype[_param_4_{op='center_of_mass'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_image_dtype[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_image_type[_param_0_{op='sum'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_image_type[_param_1_{op='mean'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_image_type[_param_2_{op='variance'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_image_type[_param_3_{op='standard_deviation'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_image_type[_param_4_{op='center_of_mass'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_image_type[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_labels_shape[_param_0_{op='sum'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_labels_shape[_param_1_{op='mean'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_labels_shape[_param_2_{op='variance'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_labels_shape[_param_3_{op='standard_deviation'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_labels_shape[_param_4_{op='center_of_mass'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_labels_shape[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_labels_type[_param_0_{op='sum'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_labels_type[_param_1_{op='mean'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_labels_type[_param_2_{op='variance'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_labels_type[_param_3_{op='standard_deviation'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_labels_type[_param_4_{op='center_of_mass'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_labels_type[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_index_type[_param_0_{op='sum'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_index_type[_param_1_{op='mean'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_index_type[_param_2_{op='variance'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_index_type[_param_3_{op='standard_deviation'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_index_type[_param_4_{op='center_of_mass'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_invalid_index_type[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_no_values[_param_0_{op='sum'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_no_values[_param_1_{op='mean'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_no_values[_param_2_{op='variance'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_no_values[_param_3_{op='standard_deviation'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_no_values[_param_4_{op='center_of_mass'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestStats::test_no_values[_param_5_{op='sum_labels'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_0_{enable_cub=True, index=None, labels=None, op='maximum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_1_{enable_cub=True, index=None, labels=None, op='maximum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_2_{enable_cub=True, index=None, labels=None, op='median', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_3_{enable_cub=True, index=None, labels=None, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_4_{enable_cub=True, index=None, labels=None, op='minimum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_5_{enable_cub=True, index=None, labels=None, op='minimum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_6_{enable_cub=True, index=None, labels=None, op='maximum_position', shape=(512,)}] | 7.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_7_{enable_cub=True, index=None, labels=None, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_8_{enable_cub=True, index=None, labels=None, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_9_{enable_cub=True, index=None, labels=None, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_12_{enable_cub=True, index=None, labels=5, op='maximum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_13_{enable_cub=True, index=None, labels=5, op='maximum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_14_{enable_cub=True, index=None, labels=5, op='median', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_15_{enable_cub=True, index=None, labels=5, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_16_{enable_cub=True, index=None, labels=5, op='minimum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_17_{enable_cub=True, index=None, labels=5, op='minimum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_18_{enable_cub=True, index=None, labels=5, op='maximum_position', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_19_{enable_cub=True, index=None, labels=5, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_20_{enable_cub=True, index=None, labels=5, op='minimum_position', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_21_{enable_cub=True, index=None, labels=5, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_24_{enable_cub=True, index=None, labels=50, op='maximum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_25_{enable_cub=True, index=None, labels=50, op='maximum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_26_{enable_cub=True, index=None, labels=50, op='median', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_27_{enable_cub=True, index=None, labels=50, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_28_{enable_cub=True, index=None, labels=50, op='minimum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_29_{enable_cub=True, index=None, labels=50, op='minimum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_30_{enable_cub=True, index=None, labels=50, op='maximum_position', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_31_{enable_cub=True, index=None, labels=50, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_32_{enable_cub=True, index=None, labels=50, op='minimum_position', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_33_{enable_cub=True, index=None, labels=50, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_36_{enable_cub=True, index=1, labels=None, op='maximum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_37_{enable_cub=True, index=1, labels=None, op='maximum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_38_{enable_cub=True, index=1, labels=None, op='median', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_39_{enable_cub=True, index=1, labels=None, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_40_{enable_cub=True, index=1, labels=None, op='minimum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_41_{enable_cub=True, index=1, labels=None, op='minimum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_42_{enable_cub=True, index=1, labels=None, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_43_{enable_cub=True, index=1, labels=None, op='maximum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_44_{enable_cub=True, index=1, labels=None, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_45_{enable_cub=True, index=1, labels=None, op='minimum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_48_{enable_cub=True, index=1, labels=5, op='maximum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_49_{enable_cub=True, index=1, labels=5, op='maximum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_50_{enable_cub=True, index=1, labels=5, op='median', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_51_{enable_cub=True, index=1, labels=5, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_52_{enable_cub=True, index=1, labels=5, op='minimum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_53_{enable_cub=True, index=1, labels=5, op='minimum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_54_{enable_cub=True, index=1, labels=5, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_55_{enable_cub=True, index=1, labels=5, op='maximum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_56_{enable_cub=True, index=1, labels=5, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_57_{enable_cub=True, index=1, labels=5, op='minimum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_60_{enable_cub=True, index=1, labels=50, op='maximum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_61_{enable_cub=True, index=1, labels=50, op='maximum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_62_{enable_cub=True, index=1, labels=50, op='median', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_63_{enable_cub=True, index=1, labels=50, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_64_{enable_cub=True, index=1, labels=50, op='minimum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_65_{enable_cub=True, index=1, labels=50, op='minimum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_66_{enable_cub=True, index=1, labels=50, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_67_{enable_cub=True, index=1, labels=50, op='maximum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_68_{enable_cub=True, index=1, labels=50, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_69_{enable_cub=True, index=1, labels=50, op='minimum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_70_{enable_cub=True, index=1, labels=50, op='extrema', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_71_{enable_cub=True, index=1, labels=50, op='extrema', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_72_{enable_cub=True, index='all', labels=None, op='maximum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_73_{enable_cub=True, index='all', labels=None, op='maximum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_74_{enable_cub=True, index='all', labels=None, op='median', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_75_{enable_cub=True, index='all', labels=None, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_76_{enable_cub=True, index='all', labels=None, op='minimum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_77_{enable_cub=True, index='all', labels=None, op='minimum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_78_{enable_cub=True, index='all', labels=None, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_79_{enable_cub=True, index='all', labels=None, op='maximum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_80_{enable_cub=True, index='all', labels=None, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_81_{enable_cub=True, index='all', labels=None, op='minimum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_84_{enable_cub=True, index='all', labels=5, op='maximum', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_85_{enable_cub=True, index='all', labels=5, op='maximum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_86_{enable_cub=True, index='all', labels=5, op='median', shape=(512,)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_87_{enable_cub=True, index='all', labels=5, op='median', shape=(32, 64)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_88_{enable_cub=True, index='all', labels=5, op='minimum', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_89_{enable_cub=True, index='all', labels=5, op='minimum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_90_{enable_cub=True, index='all', labels=5, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_91_{enable_cub=True, index='all', labels=5, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_92_{enable_cub=True, index='all', labels=5, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_93_{enable_cub=True, index='all', labels=5, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_94_{enable_cub=True, index='all', labels=5, op='extrema', shape=(512,)}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_95_{enable_cub=True, index='all', labels=5, op='extrema', shape=(32, 64)}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_96_{enable_cub=True, index='all', labels=50, op='maximum', shape=(512,)}] | 9.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_97_{enable_cub=True, index='all', labels=50, op='maximum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_98_{enable_cub=True, index='all', labels=50, op='median', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_99_{enable_cub=True, index='all', labels=50, op='median', shape=(32, 64)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_100_{enable_cub=True, index='all', labels=50, op='minimum', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_101_{enable_cub=True, index='all', labels=50, op='minimum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_102_{enable_cub=True, index='all', labels=50, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_103_{enable_cub=True, index='all', labels=50, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_104_{enable_cub=True, index='all', labels=50, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_105_{enable_cub=True, index='all', labels=50, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_106_{enable_cub=True, index='all', labels=50, op='extrema', shape=(512,)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_107_{enable_cub=True, index='all', labels=50, op='extrema', shape=(32, 64)}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_108_{enable_cub=True, index='subset', labels=None, op='maximum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_109_{enable_cub=True, index='subset', labels=None, op='maximum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_110_{enable_cub=True, index='subset', labels=None, op='median', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_111_{enable_cub=True, index='subset', labels=None, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_112_{enable_cub=True, index='subset', labels=None, op='minimum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_113_{enable_cub=True, index='subset', labels=None, op='minimum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_114_{enable_cub=True, index='subset', labels=None, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_115_{enable_cub=True, index='subset', labels=None, op='maximum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_116_{enable_cub=True, index='subset', labels=None, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_117_{enable_cub=True, index='subset', labels=None, op='minimum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_120_{enable_cub=True, index='subset', labels=5, op='maximum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_121_{enable_cub=True, index='subset', labels=5, op='maximum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_122_{enable_cub=True, index='subset', labels=5, op='median', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_123_{enable_cub=True, index='subset', labels=5, op='median', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_124_{enable_cub=True, index='subset', labels=5, op='minimum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_125_{enable_cub=True, index='subset', labels=5, op='minimum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_126_{enable_cub=True, index='subset', labels=5, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_127_{enable_cub=True, index='subset', labels=5, op='maximum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_128_{enable_cub=True, index='subset', labels=5, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_129_{enable_cub=True, index='subset', labels=5, op='minimum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_130_{enable_cub=True, index='subset', labels=5, op='extrema', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_131_{enable_cub=True, index='subset', labels=5, op='extrema', shape=(32, 64)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_132_{enable_cub=True, index='subset', labels=50, op='maximum', shape=(512,)}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_133_{enable_cub=True, index='subset', labels=50, op='maximum', shape=(32, 64)}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_134_{enable_cub=True, index='subset', labels=50, op='median', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_135_{enable_cub=True, index='subset', labels=50, op='median', shape=(32, 64)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_136_{enable_cub=True, index='subset', labels=50, op='minimum', shape=(512,)}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_137_{enable_cub=True, index='subset', labels=50, op='minimum', shape=(32, 64)}] | 0.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_138_{enable_cub=True, index='subset', labels=50, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_139_{enable_cub=True, index='subset', labels=50, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_140_{enable_cub=True, index='subset', labels=50, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_141_{enable_cub=True, index='subset', labels=50, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_142_{enable_cub=True, index='subset', labels=50, op='extrema', shape=(512,)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_143_{enable_cub=True, index='subset', labels=50, op='extrema', shape=(32, 64)}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_144_{enable_cub=False, index=None, labels=None, op='maximum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_145_{enable_cub=False, index=None, labels=None, op='maximum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_146_{enable_cub=False, index=None, labels=None, op='median', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_147_{enable_cub=False, index=None, labels=None, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_148_{enable_cub=False, index=None, labels=None, op='minimum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_149_{enable_cub=False, index=None, labels=None, op='minimum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_150_{enable_cub=False, index=None, labels=None, op='maximum_position', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_151_{enable_cub=False, index=None, labels=None, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_152_{enable_cub=False, index=None, labels=None, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_153_{enable_cub=False, index=None, labels=None, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_156_{enable_cub=False, index=None, labels=5, op='maximum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_157_{enable_cub=False, index=None, labels=5, op='maximum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_158_{enable_cub=False, index=None, labels=5, op='median', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_159_{enable_cub=False, index=None, labels=5, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_160_{enable_cub=False, index=None, labels=5, op='minimum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_161_{enable_cub=False, index=None, labels=5, op='minimum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_162_{enable_cub=False, index=None, labels=5, op='maximum_position', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_163_{enable_cub=False, index=None, labels=5, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_164_{enable_cub=False, index=None, labels=5, op='minimum_position', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_165_{enable_cub=False, index=None, labels=5, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_168_{enable_cub=False, index=None, labels=50, op='maximum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_169_{enable_cub=False, index=None, labels=50, op='maximum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_170_{enable_cub=False, index=None, labels=50, op='median', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_171_{enable_cub=False, index=None, labels=50, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_172_{enable_cub=False, index=None, labels=50, op='minimum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_173_{enable_cub=False, index=None, labels=50, op='minimum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_174_{enable_cub=False, index=None, labels=50, op='maximum_position', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_175_{enable_cub=False, index=None, labels=50, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_176_{enable_cub=False, index=None, labels=50, op='minimum_position', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_177_{enable_cub=False, index=None, labels=50, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_180_{enable_cub=False, index=1, labels=None, op='maximum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_181_{enable_cub=False, index=1, labels=None, op='maximum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_182_{enable_cub=False, index=1, labels=None, op='median', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_183_{enable_cub=False, index=1, labels=None, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_184_{enable_cub=False, index=1, labels=None, op='minimum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_185_{enable_cub=False, index=1, labels=None, op='minimum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_186_{enable_cub=False, index=1, labels=None, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_187_{enable_cub=False, index=1, labels=None, op='maximum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_188_{enable_cub=False, index=1, labels=None, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_189_{enable_cub=False, index=1, labels=None, op='minimum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_192_{enable_cub=False, index=1, labels=5, op='maximum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_193_{enable_cub=False, index=1, labels=5, op='maximum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_194_{enable_cub=False, index=1, labels=5, op='median', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_195_{enable_cub=False, index=1, labels=5, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_196_{enable_cub=False, index=1, labels=5, op='minimum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_197_{enable_cub=False, index=1, labels=5, op='minimum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_198_{enable_cub=False, index=1, labels=5, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_199_{enable_cub=False, index=1, labels=5, op='maximum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_200_{enable_cub=False, index=1, labels=5, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_201_{enable_cub=False, index=1, labels=5, op='minimum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_204_{enable_cub=False, index=1, labels=50, op='maximum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_205_{enable_cub=False, index=1, labels=50, op='maximum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_206_{enable_cub=False, index=1, labels=50, op='median', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_207_{enable_cub=False, index=1, labels=50, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_208_{enable_cub=False, index=1, labels=50, op='minimum', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_209_{enable_cub=False, index=1, labels=50, op='minimum', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_210_{enable_cub=False, index=1, labels=50, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_211_{enable_cub=False, index=1, labels=50, op='maximum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_212_{enable_cub=False, index=1, labels=50, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_213_{enable_cub=False, index=1, labels=50, op='minimum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_214_{enable_cub=False, index=1, labels=50, op='extrema', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_215_{enable_cub=False, index=1, labels=50, op='extrema', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_216_{enable_cub=False, index='all', labels=None, op='maximum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_217_{enable_cub=False, index='all', labels=None, op='maximum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_218_{enable_cub=False, index='all', labels=None, op='median', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_219_{enable_cub=False, index='all', labels=None, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_220_{enable_cub=False, index='all', labels=None, op='minimum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_221_{enable_cub=False, index='all', labels=None, op='minimum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_222_{enable_cub=False, index='all', labels=None, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_223_{enable_cub=False, index='all', labels=None, op='maximum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_224_{enable_cub=False, index='all', labels=None, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_225_{enable_cub=False, index='all', labels=None, op='minimum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_228_{enable_cub=False, index='all', labels=5, op='maximum', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_229_{enable_cub=False, index='all', labels=5, op='maximum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_230_{enable_cub=False, index='all', labels=5, op='median', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_231_{enable_cub=False, index='all', labels=5, op='median', shape=(32, 64)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_232_{enable_cub=False, index='all', labels=5, op='minimum', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_233_{enable_cub=False, index='all', labels=5, op='minimum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_234_{enable_cub=False, index='all', labels=5, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_235_{enable_cub=False, index='all', labels=5, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_236_{enable_cub=False, index='all', labels=5, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_237_{enable_cub=False, index='all', labels=5, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_238_{enable_cub=False, index='all', labels=5, op='extrema', shape=(512,)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_239_{enable_cub=False, index='all', labels=5, op='extrema', shape=(32, 64)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_240_{enable_cub=False, index='all', labels=50, op='maximum', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_241_{enable_cub=False, index='all', labels=50, op='maximum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_242_{enable_cub=False, index='all', labels=50, op='median', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_243_{enable_cub=False, index='all', labels=50, op='median', shape=(32, 64)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_244_{enable_cub=False, index='all', labels=50, op='minimum', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_245_{enable_cub=False, index='all', labels=50, op='minimum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_246_{enable_cub=False, index='all', labels=50, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_247_{enable_cub=False, index='all', labels=50, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_248_{enable_cub=False, index='all', labels=50, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_249_{enable_cub=False, index='all', labels=50, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_250_{enable_cub=False, index='all', labels=50, op='extrema', shape=(512,)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_251_{enable_cub=False, index='all', labels=50, op='extrema', shape=(32, 64)}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_252_{enable_cub=False, index='subset', labels=None, op='maximum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_253_{enable_cub=False, index='subset', labels=None, op='maximum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_254_{enable_cub=False, index='subset', labels=None, op='median', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_255_{enable_cub=False, index='subset', labels=None, op='median', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_256_{enable_cub=False, index='subset', labels=None, op='minimum', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_257_{enable_cub=False, index='subset', labels=None, op='minimum', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_258_{enable_cub=False, index='subset', labels=None, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_259_{enable_cub=False, index='subset', labels=None, op='maximum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_260_{enable_cub=False, index='subset', labels=None, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_261_{enable_cub=False, index='subset', labels=None, op='minimum_position', shape=(32, 64)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_264_{enable_cub=False, index='subset', labels=5, op='maximum', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_265_{enable_cub=False, index='subset', labels=5, op='maximum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_266_{enable_cub=False, index='subset', labels=5, op='median', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_267_{enable_cub=False, index='subset', labels=5, op='median', shape=(32, 64)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_268_{enable_cub=False, index='subset', labels=5, op='minimum', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_269_{enable_cub=False, index='subset', labels=5, op='minimum', shape=(32, 64)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_270_{enable_cub=False, index='subset', labels=5, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_271_{enable_cub=False, index='subset', labels=5, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_272_{enable_cub=False, index='subset', labels=5, op='minimum_position', shape=(512,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_273_{enable_cub=False, index='subset', labels=5, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_274_{enable_cub=False, index='subset', labels=5, op='extrema', shape=(512,)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_275_{enable_cub=False, index='subset', labels=5, op='extrema', shape=(32, 64)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_276_{enable_cub=False, index='subset', labels=50, op='maximum', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_277_{enable_cub=False, index='subset', labels=50, op='maximum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_278_{enable_cub=False, index='subset', labels=50, op='median', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_279_{enable_cub=False, index='subset', labels=50, op='median', shape=(32, 64)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_280_{enable_cub=False, index='subset', labels=50, op='minimum', shape=(512,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_281_{enable_cub=False, index='subset', labels=50, op='minimum', shape=(32, 64)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_282_{enable_cub=False, index='subset', labels=50, op='maximum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_283_{enable_cub=False, index='subset', labels=50, op='maximum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_284_{enable_cub=False, index='subset', labels=50, op='minimum_position', shape=(512,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_285_{enable_cub=False, index='subset', labels=50, op='minimum_position', shape=(32, 64)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_286_{enable_cub=False, index='subset', labels=50, op='extrema', shape=(512,)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestMeasurementsSelect::test_measurements_select[_param_287_{enable_cub=False, index='subset', labels=50, op='extrema', shape=(32, 64)}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_0_{index=None, labels=None, shape=(200,)}] | 1.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_1_{index=None, labels=None, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_2_{index=None, labels=4, shape=(200,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_3_{index=None, labels=4, shape=(16, 20)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_4_{index=None, labels=6, shape=(200,)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_5_{index=None, labels=6, shape=(16, 20)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_6_{index=[0, 2], labels=None, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_7_{index=[0, 2], labels=None, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_8_{index=[0, 2], labels=4, shape=(200,)}] | 1.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_9_{index=[0, 2], labels=4, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_10_{index=[0, 2], labels=6, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_11_{index=[0, 2], labels=6, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_12_{index=[3, 1, 0], labels=None, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_13_{index=[3, 1, 0], labels=None, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_14_{index=[3, 1, 0], labels=4, shape=(200,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_15_{index=[3, 1, 0], labels=4, shape=(16, 20)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_16_{index=[3, 1, 0], labels=6, shape=(200,)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_17_{index=[3, 1, 0], labels=6, shape=(16, 20)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_18_{index=[1], labels=None, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_19_{index=[1], labels=None, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_20_{index=[1], labels=4, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_21_{index=[1], labels=4, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_22_{index=[1], labels=6, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestHistogram::test_histogram[_param_23_{index=[1], labels=6, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_0_{default=0, dtype=float64, index=None, labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_1_{default=0, dtype=float64, index=None, labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_2_{default=0, dtype=float64, index=None, labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_3_{default=0, dtype=float64, index=None, labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_4_{default=0, dtype=float64, index=None, labels=4, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_5_{default=0, dtype=float64, index=None, labels=4, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_6_{default=0, dtype=float64, index=None, labels=4, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_7_{default=0, dtype=float64, index=None, labels=4, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_8_{default=0, dtype=float64, index=[0, 2], labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_9_{default=0, dtype=float64, index=[0, 2], labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_10_{default=0, dtype=float64, index=[0, 2], labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_11_{default=0, dtype=float64, index=[0, 2], labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_12_{default=0, dtype=float64, index=[0, 2], labels=4, pass_positions=True, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_13_{default=0, dtype=float64, index=[0, 2], labels=4, pass_positions=True, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_14_{default=0, dtype=float64, index=[0, 2], labels=4, pass_positions=False, shape=(200,)}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_15_{default=0, dtype=float64, index=[0, 2], labels=4, pass_positions=False, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_16_{default=0, dtype=float64, index=[3, 1, 0], labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_17_{default=0, dtype=float64, index=[3, 1, 0], labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_18_{default=0, dtype=float64, index=[3, 1, 0], labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_19_{default=0, dtype=float64, index=[3, 1, 0], labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_20_{default=0, dtype=float64, index=[3, 1, 0], labels=4, pass_positions=True, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_21_{default=0, dtype=float64, index=[3, 1, 0], labels=4, pass_positions=True, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_22_{default=0, dtype=float64, index=[3, 1, 0], labels=4, pass_positions=False, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_23_{default=0, dtype=float64, index=[3, 1, 0], labels=4, pass_positions=False, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_24_{default=0, dtype=float64, index=[1], labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_25_{default=0, dtype=float64, index=[1], labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_26_{default=0, dtype=float64, index=[1], labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_27_{default=0, dtype=float64, index=[1], labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_28_{default=0, dtype=float64, index=[1], labels=4, pass_positions=True, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_29_{default=0, dtype=float64, index=[1], labels=4, pass_positions=True, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_30_{default=0, dtype=float64, index=[1], labels=4, pass_positions=False, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_31_{default=0, dtype=float64, index=[1], labels=4, pass_positions=False, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_32_{default=0, dtype='same', index=None, labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_33_{default=0, dtype='same', index=None, labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_34_{default=0, dtype='same', index=None, labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_35_{default=0, dtype='same', index=None, labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_36_{default=0, dtype='same', index=None, labels=4, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_37_{default=0, dtype='same', index=None, labels=4, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_38_{default=0, dtype='same', index=None, labels=4, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_39_{default=0, dtype='same', index=None, labels=4, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_40_{default=0, dtype='same', index=[0, 2], labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_41_{default=0, dtype='same', index=[0, 2], labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_42_{default=0, dtype='same', index=[0, 2], labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_43_{default=0, dtype='same', index=[0, 2], labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_44_{default=0, dtype='same', index=[0, 2], labels=4, pass_positions=True, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_45_{default=0, dtype='same', index=[0, 2], labels=4, pass_positions=True, shape=(16, 20)}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_46_{default=0, dtype='same', index=[0, 2], labels=4, pass_positions=False, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_47_{default=0, dtype='same', index=[0, 2], labels=4, pass_positions=False, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_48_{default=0, dtype='same', index=[3, 1, 0], labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_49_{default=0, dtype='same', index=[3, 1, 0], labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_50_{default=0, dtype='same', index=[3, 1, 0], labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_51_{default=0, dtype='same', index=[3, 1, 0], labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_52_{default=0, dtype='same', index=[3, 1, 0], labels=4, pass_positions=True, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_53_{default=0, dtype='same', index=[3, 1, 0], labels=4, pass_positions=True, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_54_{default=0, dtype='same', index=[3, 1, 0], labels=4, pass_positions=False, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_55_{default=0, dtype='same', index=[3, 1, 0], labels=4, pass_positions=False, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_56_{default=0, dtype='same', index=[1], labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_57_{default=0, dtype='same', index=[1], labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_58_{default=0, dtype='same', index=[1], labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_59_{default=0, dtype='same', index=[1], labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_60_{default=0, dtype='same', index=[1], labels=4, pass_positions=True, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_61_{default=0, dtype='same', index=[1], labels=4, pass_positions=True, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_62_{default=0, dtype='same', index=[1], labels=4, pass_positions=False, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_63_{default=0, dtype='same', index=[1], labels=4, pass_positions=False, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_64_{default=3, dtype=float64, index=None, labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_65_{default=3, dtype=float64, index=None, labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_66_{default=3, dtype=float64, index=None, labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_67_{default=3, dtype=float64, index=None, labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_68_{default=3, dtype=float64, index=None, labels=4, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_69_{default=3, dtype=float64, index=None, labels=4, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_70_{default=3, dtype=float64, index=None, labels=4, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_71_{default=3, dtype=float64, index=None, labels=4, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_72_{default=3, dtype=float64, index=[0, 2], labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_73_{default=3, dtype=float64, index=[0, 2], labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_74_{default=3, dtype=float64, index=[0, 2], labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_75_{default=3, dtype=float64, index=[0, 2], labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_76_{default=3, dtype=float64, index=[0, 2], labels=4, pass_positions=True, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_77_{default=3, dtype=float64, index=[0, 2], labels=4, pass_positions=True, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_78_{default=3, dtype=float64, index=[0, 2], labels=4, pass_positions=False, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_79_{default=3, dtype=float64, index=[0, 2], labels=4, pass_positions=False, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_80_{default=3, dtype=float64, index=[3, 1, 0], labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_81_{default=3, dtype=float64, index=[3, 1, 0], labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_82_{default=3, dtype=float64, index=[3, 1, 0], labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_83_{default=3, dtype=float64, index=[3, 1, 0], labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_84_{default=3, dtype=float64, index=[3, 1, 0], labels=4, pass_positions=True, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_85_{default=3, dtype=float64, index=[3, 1, 0], labels=4, pass_positions=True, shape=(16, 20)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_86_{default=3, dtype=float64, index=[3, 1, 0], labels=4, pass_positions=False, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_87_{default=3, dtype=float64, index=[3, 1, 0], labels=4, pass_positions=False, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_88_{default=3, dtype=float64, index=[1], labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_89_{default=3, dtype=float64, index=[1], labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_90_{default=3, dtype=float64, index=[1], labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_91_{default=3, dtype=float64, index=[1], labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_92_{default=3, dtype=float64, index=[1], labels=4, pass_positions=True, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_93_{default=3, dtype=float64, index=[1], labels=4, pass_positions=True, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_94_{default=3, dtype=float64, index=[1], labels=4, pass_positions=False, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_95_{default=3, dtype=float64, index=[1], labels=4, pass_positions=False, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_96_{default=3, dtype='same', index=None, labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_97_{default=3, dtype='same', index=None, labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_98_{default=3, dtype='same', index=None, labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_99_{default=3, dtype='same', index=None, labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_100_{default=3, dtype='same', index=None, labels=4, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_101_{default=3, dtype='same', index=None, labels=4, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_102_{default=3, dtype='same', index=None, labels=4, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_103_{default=3, dtype='same', index=None, labels=4, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_104_{default=3, dtype='same', index=[0, 2], labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_105_{default=3, dtype='same', index=[0, 2], labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_106_{default=3, dtype='same', index=[0, 2], labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_107_{default=3, dtype='same', index=[0, 2], labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_108_{default=3, dtype='same', index=[0, 2], labels=4, pass_positions=True, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_109_{default=3, dtype='same', index=[0, 2], labels=4, pass_positions=True, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_110_{default=3, dtype='same', index=[0, 2], labels=4, pass_positions=False, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_111_{default=3, dtype='same', index=[0, 2], labels=4, pass_positions=False, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_112_{default=3, dtype='same', index=[3, 1, 0], labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_113_{default=3, dtype='same', index=[3, 1, 0], labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_114_{default=3, dtype='same', index=[3, 1, 0], labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_115_{default=3, dtype='same', index=[3, 1, 0], labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_116_{default=3, dtype='same', index=[3, 1, 0], labels=4, pass_positions=True, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_117_{default=3, dtype='same', index=[3, 1, 0], labels=4, pass_positions=True, shape=(16, 20)}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_118_{default=3, dtype='same', index=[3, 1, 0], labels=4, pass_positions=False, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_119_{default=3, dtype='same', index=[3, 1, 0], labels=4, pass_positions=False, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_120_{default=3, dtype='same', index=[1], labels=None, pass_positions=True, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_121_{default=3, dtype='same', index=[1], labels=None, pass_positions=True, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_122_{default=3, dtype='same', index=[1], labels=None, pass_positions=False, shape=(200,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_123_{default=3, dtype='same', index=[1], labels=None, pass_positions=False, shape=(16, 20)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_124_{default=3, dtype='same', index=[1], labels=4, pass_positions=True, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_125_{default=3, dtype='same', index=[1], labels=4, pass_positions=True, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_126_{default=3, dtype='same', index=[1], labels=4, pass_positions=False, shape=(200,)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py::TestLabeledComprehension::test_labeled_comprehension[_param_127_{default=3, dtype='same', index=[1], labels=4, pass_positions=False, shape=(16, 20)}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGenerateBinaryStructure::test_generate_binary_structure[_param_0_{connectivity=1, rank=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGenerateBinaryStructure::test_generate_binary_structure[_param_1_{connectivity=1, rank=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGenerateBinaryStructure::test_generate_binary_structure[_param_2_{connectivity=1, rank=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGenerateBinaryStructure::test_generate_binary_structure[_param_3_{connectivity=2, rank=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGenerateBinaryStructure::test_generate_binary_structure[_param_4_{connectivity=1, rank=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGenerateBinaryStructure::test_generate_binary_structure[_param_5_{connectivity=2, rank=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGenerateBinaryStructure::test_generate_binary_structure[_param_6_{connectivity=3, rank=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGenerateBinaryStructure::test_generate_binary_structure[_param_7_{connectivity=0, rank=-1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGenerateBinaryStructure::test_generate_binary_structure[_param_8_{connectivity=0, rank=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGenerateBinaryStructure::test_generate_binary_structure[_param_9_{connectivity=500, rank=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestIterateStructure::test_iterate_structure1 | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestIterateStructure::test_iterate_structure2 | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestIterateStructure::test_iterate_structure3 | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_0_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_2_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_3_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_4_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_5_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_6_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_7_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_8_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_9_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_10_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_11_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_12_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_13_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_14_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_15_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_16_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_17_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_19_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_20_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_21_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_22_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_24_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_25_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_26_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_27_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_29_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_30_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_32_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_33_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_34_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_35_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_37_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_38_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_39_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_40_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_42_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_43_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_44_{border_value=0, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_45_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_46_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_47_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_48_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_49_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_50_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_51_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_52_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_53_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_54_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_55_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_56_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_57_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_58_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_59_{border_value=0, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_60_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_61_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_62_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_63_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_64_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_65_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_66_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_67_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_68_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_69_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_70_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_71_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_72_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_73_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_74_{border_value=0, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_75_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_76_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_77_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_79_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_80_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_81_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_82_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_84_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_85_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_86_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_87_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_89_{border_value=0, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_90_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_92_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_93_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_94_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_95_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_97_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_98_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_99_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_100_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_102_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_103_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_104_{border_value=0, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_105_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_106_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_107_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_108_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_109_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_110_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_111_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_112_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_113_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_114_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_115_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_116_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_117_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_118_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_119_{border_value=0, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_120_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_121_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_122_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_123_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_124_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_125_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_126_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_127_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_128_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_129_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_130_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_131_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_132_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_133_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_134_{border_value=0, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_135_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_136_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_137_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_139_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_140_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_141_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_142_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_144_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_145_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_146_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_147_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_149_{border_value=0, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_150_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_152_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_153_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_154_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_155_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_157_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_158_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_159_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_160_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_162_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_163_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_164_{border_value=0, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_165_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_166_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_167_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_168_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_169_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_170_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_171_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_172_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_173_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_174_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_175_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_176_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_177_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_178_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_179_{border_value=0, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_180_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_181_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_182_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_183_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_184_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_185_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_186_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_187_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_188_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_189_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_190_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_191_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_192_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_193_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_194_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_195_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_196_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_197_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_199_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_200_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_201_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_202_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_204_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_205_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_206_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_207_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_209_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_210_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_212_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_213_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_214_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_215_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_217_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_218_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_219_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_220_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_222_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_223_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_224_{border_value=0, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_225_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_226_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_227_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_228_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_229_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_230_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_231_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_232_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_233_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_234_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_235_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_236_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_237_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_238_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_239_{border_value=0, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_240_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_241_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_242_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_243_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_244_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_245_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_246_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_247_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_248_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_249_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_250_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_251_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_252_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_253_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_254_{border_value=0, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_255_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_256_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_257_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_259_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_260_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_261_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_262_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_264_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_265_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_266_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_267_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_269_{border_value=0, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_270_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_272_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_273_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_274_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_275_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_277_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_278_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_279_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_280_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_282_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_283_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_284_{border_value=0, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_285_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_286_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_287_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_288_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_289_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_290_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_291_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_292_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_293_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_294_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_295_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_296_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_297_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_298_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_299_{border_value=0, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_300_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_301_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_302_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_303_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_304_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_305_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_306_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_307_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_308_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_309_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_310_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_311_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_312_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_313_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_314_{border_value=0, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_315_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_316_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_317_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_319_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_320_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_321_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_322_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_324_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_325_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_326_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_327_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_329_{border_value=0, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_330_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_332_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_333_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_334_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_335_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_337_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_338_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_339_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_340_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_342_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_343_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_344_{border_value=0, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_345_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_346_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_347_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_348_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_349_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_350_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_351_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_352_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_353_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_354_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_355_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_356_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_357_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_358_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_359_{border_value=0, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_360_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=bool_}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_361_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_362_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_363_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_364_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_365_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_366_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_367_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_368_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_369_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_370_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_371_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_372_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_373_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_374_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_375_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_376_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_377_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_379_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_380_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_381_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_382_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_384_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_385_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_386_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_387_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_389_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_390_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_392_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_393_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_394_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_395_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_397_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_398_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_399_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_400_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_402_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_403_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_404_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_405_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_406_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_407_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=uint8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_408_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_409_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_410_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_411_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_412_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_413_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_414_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_415_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_416_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_417_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_418_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_419_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_420_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_421_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_422_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_423_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_424_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_425_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_426_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_427_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_428_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_429_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_430_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_431_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_432_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_433_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_434_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_435_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_436_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_437_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_439_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_440_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_441_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_442_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_444_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_445_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_446_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_447_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_449_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_450_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_452_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_453_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_454_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_455_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_457_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_458_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_459_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_460_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_462_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_463_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_464_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_465_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_466_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_467_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_468_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_469_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_470_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_471_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_472_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_473_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_474_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_475_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_476_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_477_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_478_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_479_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_480_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_481_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_482_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_483_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_484_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_485_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_486_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_487_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_488_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_489_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_490_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_491_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_492_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_493_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_494_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_495_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_496_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_497_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_499_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_500_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_501_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_502_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_504_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_505_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_506_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_507_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_509_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_510_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_512_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_513_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_514_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_515_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_517_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_518_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_519_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_520_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_522_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_523_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_524_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_525_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_526_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_527_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_528_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_529_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_530_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_531_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_532_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_533_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_534_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_535_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_536_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_537_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_538_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_539_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_540_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_541_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_542_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_543_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_544_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_545_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_546_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_547_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_548_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_549_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_550_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_551_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_552_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_553_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_554_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_555_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_556_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_557_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_559_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_560_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_561_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_562_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_564_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_565_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_566_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_567_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_569_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_570_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_572_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_573_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_574_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_575_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_577_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_578_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_579_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_580_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_582_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_583_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_584_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_585_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_586_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_587_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_588_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_589_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_590_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_591_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_592_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_593_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_594_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_595_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_596_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_597_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_598_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_599_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_600_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_601_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_602_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_603_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_604_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_605_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_606_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_607_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_608_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_609_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_610_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_611_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_612_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_613_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_614_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_615_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_616_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_617_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_619_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_620_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_621_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_622_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_624_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_625_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_626_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_627_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_629_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_630_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_632_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_633_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_634_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_635_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_637_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_638_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_639_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_640_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_642_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_643_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_644_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_645_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_646_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=int8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_647_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_648_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_649_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_650_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_651_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_652_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_653_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_654_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_655_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_656_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_657_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_658_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_659_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_660_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_661_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_662_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_663_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_664_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_665_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_666_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_667_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_668_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_669_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_670_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_671_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_672_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_673_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_674_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_675_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_676_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_677_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_679_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_680_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_681_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_682_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_684_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_685_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_686_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_687_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_689_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_690_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_692_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_693_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_694_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_695_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_697_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_698_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_699_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_700_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_702_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_703_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_704_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_705_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_706_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_707_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_708_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_709_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_710_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_711_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_712_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_713_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_714_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_715_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_716_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_717_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_718_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_719_{border_value=0, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_720_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_721_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_722_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_723_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_724_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_725_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_726_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_727_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_728_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_729_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_730_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_731_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_732_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_733_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_734_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_735_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_736_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_737_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_739_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_740_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_741_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_742_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_744_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_745_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_746_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_747_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_749_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_750_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_752_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_753_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_754_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_755_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_757_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_758_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_759_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_760_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_762_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_763_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_764_{border_value=1, data=[], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_765_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_766_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_767_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_768_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_769_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_770_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_771_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_772_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_773_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_774_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_775_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_776_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_777_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_778_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_779_{border_value=1, data=[], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_780_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_781_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_782_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_783_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_784_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_785_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_786_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_787_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_788_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_789_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_790_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_791_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_792_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_793_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_794_{border_value=1, data=[], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_795_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_796_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_797_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_799_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_800_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_801_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_802_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_804_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_805_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_806_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_807_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_809_{border_value=1, data=[], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_810_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_812_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_813_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_814_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_815_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_817_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_818_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_819_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_820_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_822_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_823_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_824_{border_value=1, data=[], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_825_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_826_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_827_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_828_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_829_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_830_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_831_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_832_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_833_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_834_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_835_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_836_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_837_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_838_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_839_{border_value=1, data=[], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_840_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_841_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_842_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_843_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_844_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_845_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_846_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_847_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_848_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_849_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_850_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_851_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_852_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_853_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_854_{border_value=1, data=[], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_855_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_856_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_857_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_859_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_860_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_861_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_862_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_864_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_865_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_866_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_867_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_869_{border_value=1, data=[], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_870_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_872_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_873_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_874_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_875_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_877_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_878_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_879_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_880_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_882_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_883_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_884_{border_value=1, data=[], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_885_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_886_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_887_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_888_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_889_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_890_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_891_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_892_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_893_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_894_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_895_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_896_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_897_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_898_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_899_{border_value=1, data=[], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_900_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_901_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_902_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_903_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_904_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_905_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_906_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_907_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_908_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_909_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_910_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_911_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_912_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_913_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_914_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_915_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_916_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_917_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_919_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_920_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_921_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_922_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_924_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_925_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_926_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_927_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_929_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_930_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_932_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_933_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_934_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_935_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_937_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_938_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_939_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_940_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_942_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_943_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_944_{border_value=1, data=[], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_945_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_946_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_947_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_948_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_949_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_950_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_951_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_952_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_953_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_954_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_955_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_956_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_957_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_958_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_959_{border_value=1, data=[], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_960_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_961_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_962_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_963_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_964_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_965_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_966_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_967_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_968_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_969_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_970_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_971_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_972_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_973_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_974_{border_value=1, data=[], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_975_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_976_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_977_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_979_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_980_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_981_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_982_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_984_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_985_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_986_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_987_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_989_{border_value=1, data=[], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_990_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_992_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_993_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_994_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_995_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_997_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_998_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_999_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1000_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1002_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1003_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1004_{border_value=1, data=[], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1005_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1006_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1007_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1008_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1009_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1010_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1011_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1012_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1013_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1014_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1015_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1016_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1017_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1018_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1019_{border_value=1, data=[], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1020_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1021_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1022_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1023_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1024_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1025_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1026_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1027_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1028_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1029_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1030_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1031_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1032_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1033_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1034_{border_value=1, data=[], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1035_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1036_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1037_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1039_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1040_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1041_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1042_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1044_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1045_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1046_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1047_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1049_{border_value=1, data=[], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1050_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1052_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1053_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1054_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1055_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1057_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1058_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1059_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1060_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1062_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1063_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1064_{border_value=1, data=[], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1065_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1066_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1067_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1068_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1069_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1070_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1071_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1072_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1073_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1074_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1075_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1076_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1077_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1078_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1079_{border_value=1, data=[], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1080_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1081_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1082_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1083_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1084_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1085_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1086_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1087_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1088_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1089_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1090_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1091_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1092_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1093_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1094_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1095_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1096_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1097_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1099_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1100_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1101_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1102_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1104_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1105_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1106_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1107_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1109_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1110_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1112_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1113_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1114_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1115_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1117_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1118_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1119_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1120_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1122_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1123_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1124_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1125_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1126_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1127_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1128_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1129_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1130_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1131_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1132_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1133_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1134_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1135_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1136_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1137_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1138_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1139_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1140_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=bool_}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1141_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1142_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1143_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1144_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1145_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1146_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1147_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1148_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1149_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1150_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1151_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1152_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1153_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1154_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1155_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1156_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1157_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1159_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1160_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1161_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1162_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1164_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1165_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1166_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1167_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1169_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1170_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1172_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1173_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1174_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1175_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1177_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1178_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1179_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1180_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1182_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1183_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1184_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1185_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1186_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1187_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1188_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1189_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=None, x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1190_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1191_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1192_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1193_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1194_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1195_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1196_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1197_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1198_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1199_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=0, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1200_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1201_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1202_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1203_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1204_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=None, x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1205_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1206_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1207_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1208_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1209_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1210_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1211_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1212_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1213_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1214_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1215_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1216_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1217_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1219_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1220_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1221_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1222_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1224_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1225_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1226_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1227_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1229_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1230_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1232_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1233_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1234_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1235_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1237_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1238_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1239_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1240_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1242_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1243_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1244_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1245_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1246_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1247_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1248_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1249_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=None, x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1250_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1251_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1252_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1253_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1254_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1255_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1256_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1257_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1258_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1259_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_erosion', origin=1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1260_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=bool_}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1261_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1262_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1263_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1264_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=None, x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1265_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1266_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1267_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1268_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1269_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1270_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1271_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1272_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1273_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1274_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1275_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1276_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1277_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1279_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1280_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1281_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1282_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1284_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1285_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1286_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1287_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1289_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1290_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1292_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1293_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1294_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1295_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1297_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1298_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1299_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1300_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1302_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1303_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1304_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1305_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1306_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1307_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1308_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1309_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=None, x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1310_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1311_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1312_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1313_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1314_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1315_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1316_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1317_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1318_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1319_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=-1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1320_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=bool_}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1321_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=int8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1322_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1323_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1324_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=None, x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1325_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1326_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1327_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1328_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1329_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1330_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1331_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1332_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1333_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1334_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1335_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1336_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1337_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1339_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1340_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1341_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1342_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1344_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1345_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1346_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1347_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1349_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1350_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1352_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1353_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1354_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1355_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1357_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1358_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1359_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1360_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1362_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1363_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1364_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1365_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1366_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1367_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1368_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1369_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=None, x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1370_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1371_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1372_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1373_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1374_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1375_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1376_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1377_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1378_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1379_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=0, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1380_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=bool_}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1381_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1382_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1383_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1384_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=None, x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1385_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=bool_}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1386_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1387_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1388_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1389_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 0, 1], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1390_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=bool_}] | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1391_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1392_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1393_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1394_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=None, structure=[1, 1, 0], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1395_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1396_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1397_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1399_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1400_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1401_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1402_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1404_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1405_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1406_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1407_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1409_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=float32, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1410_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1412_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1413_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1414_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1415_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1417_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1418_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1419_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 0, 1], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1420_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1422_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=uint8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1423_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1424_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output=int8, structure=[1, 1, 0], x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1425_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1426_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1427_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1428_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1429_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=None, x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1430_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1431_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=int8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1432_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1433_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1434_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 0, 1], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1435_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1436_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1437_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=uint8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1438_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=float32}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation1d::test_binary_erosion_and_dilation_1d[_param_1439_{border_value=1, data=[1, 1, 0, 1, 1], filter='binary_dilation', origin=1, output='array', structure=[1, 1, 0], x_dtype=float64}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_0_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=bool_}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_1_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_2_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_3_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_4_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_5_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_6_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=bool_}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_7_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_8_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_9_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_10_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_11_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_12_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_13_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_14_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_15_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_16_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_17_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_18_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_19_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_20_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_21_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_22_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_23_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_24_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_25_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_26_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_27_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_28_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_29_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_30_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_31_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_32_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_33_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_34_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_35_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_36_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_37_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_38_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_39_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_40_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_41_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_42_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_43_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_44_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_45_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_46_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_47_{border_value=0, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_48_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=bool_}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_49_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_50_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_51_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_52_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_53_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_54_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=bool_}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_55_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_56_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_57_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_58_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_59_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_60_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_61_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_62_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_63_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_64_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_65_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_66_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_67_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_68_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_69_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_70_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_71_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_72_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_73_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_74_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_75_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_76_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_77_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_78_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_79_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_80_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_81_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_82_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_83_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_84_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_85_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_86_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_87_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_88_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_89_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_90_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_91_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_92_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_93_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_94_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_95_{border_value=0, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_96_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=bool_}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_97_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_98_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_99_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_100_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_101_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_102_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=bool_}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_103_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_104_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_105_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_106_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_107_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_108_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_109_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_110_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_111_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_112_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_113_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_114_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_115_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_116_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_117_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_118_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_119_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_120_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_121_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_122_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_123_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_124_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_125_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_126_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_127_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_128_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_129_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_130_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_131_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_132_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_133_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_134_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_135_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_136_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_137_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_138_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_139_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_140_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_141_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_142_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_143_{border_value=1, connectivity=1, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_144_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=bool_}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_145_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_146_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_147_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_148_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_149_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_150_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=bool_}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_151_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_152_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_153_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_154_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_155_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_156_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_157_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_158_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_159_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_160_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_161_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_162_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_163_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_164_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_165_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_166_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_167_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_168_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_169_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_170_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_171_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_172_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_173_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_174_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_175_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_176_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_177_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_178_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_179_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_opening', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_180_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_181_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_182_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_183_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_184_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_185_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_186_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_187_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_188_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_189_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_190_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryOpeningAndClosing::test_binary_opening_and_closing[_param_191_{border_value=1, connectivity=2, data=[[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], filter='binary_closing', origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_0_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=None, x_dtype=bool_}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_1_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_2_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_3_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_4_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_5_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_6_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_7_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_8_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_9_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_10_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_11_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_12_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_13_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_14_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_15_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_16_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_17_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_18_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_19_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_20_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_21_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_22_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_23_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_24_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_25_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_26_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_27_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_28_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_29_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_30_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_31_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_32_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_33_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_34_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_35_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_36_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_37_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_38_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_39_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_40_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_41_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_42_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_43_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_44_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_45_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_46_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_47_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_48_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_49_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_50_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_51_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_52_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_53_{connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_54_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=None, x_dtype=bool_}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_55_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_56_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_57_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_58_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_59_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_60_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_61_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_62_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_63_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_64_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_65_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_66_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_67_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_68_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_69_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_70_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_71_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0,..., 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_72_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_73_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_74_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_75_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_76_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_77_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_78_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_79_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_80_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_81_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_82_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_83_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_84_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_85_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_86_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_87_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_88_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_89_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0,..., 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_90_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_91_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_92_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_93_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_94_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_95_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=-1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_96_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_97_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_98_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_99_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_100_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_101_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_102_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_103_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_104_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_105_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_106_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryFillHoles::test_binary_fill_holes[_param_107_{connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0,..., 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_0_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=None, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_1_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=None, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_2_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=None, struct='separate', x_dtype=bool_}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_3_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=None, struct='separate', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_4_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=float32, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_5_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=float32, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_6_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=float32, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_7_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=float32, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_8_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=int8, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_9_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=int8, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_10_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=int8, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_11_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=int8, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_12_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=None, struct='same', x_dtype=bool_}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_13_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=None, struct='same', x_dtype=float64}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_14_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=None, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_15_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=None, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_16_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=float32, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_17_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=float32, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_18_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=float32, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_19_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=float32, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_20_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=int8, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_21_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=int8, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_22_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=int8, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_23_{data=[[0, 1, 0, 0, 0], [1, 1, 1, 0, 0], [0, 1, 0, 1, ...0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=int8, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_24_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=None, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_25_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=None, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_26_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=None, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_27_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=None, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_28_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=float32, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_29_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=float32, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_30_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=float32, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_31_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=float32, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_32_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=int8, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_33_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=int8, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_34_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=int8, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_35_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=int8, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_36_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=None, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_37_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=None, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_38_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=None, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_39_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=None, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_40_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=float32, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_41_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=float32, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_42_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=float32, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_43_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=float32, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_44_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=int8, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_45_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=int8, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_46_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=int8, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_47_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 0,..., 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=int8, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_48_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=None, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_49_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=None, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_50_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=None, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_51_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=None, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_52_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=float32, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_53_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=float32, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_54_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=float32, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_55_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=float32, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_56_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=int8, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_57_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=int8, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_58_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=int8, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_59_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 0), (0, 0)), output=int8, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_60_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=None, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_61_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=None, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_62_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=None, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_63_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=None, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_64_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=float32, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_65_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=float32, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_66_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=float32, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_67_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=float32, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_68_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=int8, struct='same', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_69_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=int8, struct='same', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_70_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=int8, struct='separate', x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryHitOrMiss::test_binary_hit_or_miss[_param_71_{data=[[0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 0,..., 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origins=((0, 1), (-1, 0)), output=int8, struct='separate', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_0_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_1_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_2_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_3_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_4_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_5_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_6_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_7_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_8_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_9_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_10_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_11_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_12_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_13_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_14_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_15_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_16_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_17_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_18_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_19_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_20_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_21_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_22_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_23_{border_value=0, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_24_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_25_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_26_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_27_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_28_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_29_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_30_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_31_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_32_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_33_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_34_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_35_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_36_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_37_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_38_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_39_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_40_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_41_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_42_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_43_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_44_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_45_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_46_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_47_{border_value=0, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_48_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_49_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_50_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_51_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_52_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_53_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_54_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_55_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_56_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_57_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_58_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_59_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_60_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_61_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_62_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_63_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_64_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_65_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_66_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_67_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_68_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_69_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_70_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_71_{border_value=0, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_72_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_73_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_74_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_75_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_76_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_77_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_78_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_79_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_80_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_81_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_82_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_83_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_84_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_85_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_86_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_87_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_88_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_89_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_90_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_91_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_92_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_93_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_94_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_95_{border_value=0, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_96_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_97_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_98_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_99_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_100_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_101_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_102_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_103_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_104_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_105_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_106_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_107_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_108_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_109_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_110_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_111_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_112_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_113_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_114_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_115_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_116_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_117_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_118_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_119_{border_value=1, connectivity=1, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_120_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_121_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_122_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_123_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_124_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_125_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_126_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_127_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_128_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_129_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_130_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_131_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_132_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_133_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_134_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_135_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_136_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_137_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_138_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_139_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_140_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_141_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_142_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_143_{border_value=1, connectivity=1, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_144_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_145_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_146_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_147_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_148_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_149_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_150_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_151_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_152_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_153_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_154_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_155_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_156_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_157_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_158_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_159_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_160_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_161_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_162_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_163_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_164_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_165_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_166_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_167_{border_value=1, connectivity=2, data=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_168_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_169_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_170_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_171_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_172_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_173_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_174_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_175_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_176_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_177_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_178_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_179_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_180_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_181_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_182_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_183_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_184_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_185_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=0, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_186_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_187_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_188_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_189_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=float32, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_190_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=bool_}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryPropagation::test_binary_propagation[_param_191_{border_value=1, connectivity=2, data=[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], mask=[[0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0,..., 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], origin=1, output=int8, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_0_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_3_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_4_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_5_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_6_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_8_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_10_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_12_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_13_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_14_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_15_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_16_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_17_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_18_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_19_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_20_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_21_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_22_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_23_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_24_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_26_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_28_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_30_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_31_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_32_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_33_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_34_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_35_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_36_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_37_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.71 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_38_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_39_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_40_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_41_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_42_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_44_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_46_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_48_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_49_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_50_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_51_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_52_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_53_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_54_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_55_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_56_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_57_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_58_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_59_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_60_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_62_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_64_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_66_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_67_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_68_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_69_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_70_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_71_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_72_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_73_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_74_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_75_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_76_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_77_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_78_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_80_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_82_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_84_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_85_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_86_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_87_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_88_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_89_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_90_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_91_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_92_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_93_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_94_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_95_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_96_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_98_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_100_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_102_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_103_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_104_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_105_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_106_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_107_{border_value=0, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_108_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_109_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_110_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_111_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_112_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_113_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_114_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_116_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_118_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_120_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_121_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_122_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_123_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_124_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_125_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_126_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_127_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_128_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_129_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_130_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_131_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_132_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_134_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_136_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_138_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_139_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_140_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_141_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_142_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_143_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_144_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_145_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_146_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_147_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_148_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_149_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_150_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_152_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_154_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_156_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_157_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_158_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_159_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_160_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_161_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_162_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_163_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_164_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_165_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_166_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_167_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_168_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_170_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_172_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_174_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_175_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_176_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_177_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_178_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_179_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_180_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_181_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_182_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_183_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_184_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_185_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_186_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_188_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_190_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_192_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_193_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_194_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_195_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_196_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_197_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_198_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_199_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_200_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_201_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_202_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_203_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_204_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_206_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_208_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_210_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_211_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_212_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_213_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_214_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_215_{border_value=0, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_216_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_217_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_218_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_219_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_220_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_221_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_222_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_224_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_226_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_228_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_229_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_230_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_231_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_232_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_233_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_234_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_235_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_236_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_237_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_238_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_239_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_240_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_242_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_244_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_246_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_247_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_248_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_249_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_250_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_251_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_252_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_253_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_254_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_255_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_256_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_257_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_258_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_260_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_262_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_264_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_265_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_266_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_267_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_268_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_269_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_270_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_271_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_272_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_273_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_274_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_275_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_276_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_278_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_280_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_282_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_283_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_284_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_285_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_286_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_287_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_288_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_289_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_290_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_291_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_292_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_293_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_294_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_296_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_298_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_300_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_301_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_302_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_303_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_304_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_305_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_306_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_307_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_308_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_309_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_310_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_311_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_312_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_314_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_316_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_318_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_319_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_320_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_321_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_322_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_323_{border_value=0, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_324_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_325_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_326_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_327_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_328_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_329_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_330_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_332_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_334_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_336_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_337_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_338_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_339_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_340_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_341_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_342_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_343_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_344_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_345_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_346_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_347_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_348_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_350_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_352_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_354_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_355_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_356_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_357_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_358_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_359_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_360_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_361_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_362_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_363_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_364_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_365_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_366_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_368_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_370_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_372_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_373_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_374_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_375_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_376_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_377_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_378_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_379_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_380_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_381_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_382_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_383_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_384_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_386_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_388_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_390_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_391_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_392_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_393_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_394_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_395_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_396_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_397_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_398_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_399_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_400_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_401_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_402_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_404_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_406_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_408_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_409_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_410_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_411_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_412_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_413_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_414_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_415_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_416_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_417_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_418_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_419_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_420_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_422_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_424_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_426_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_427_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_428_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_429_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_430_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_431_{border_value=0, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_432_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_433_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_434_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_435_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_436_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_437_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_438_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_440_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_442_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_444_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_445_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_446_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_447_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_448_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_449_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_450_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_451_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_452_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_453_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_454_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_455_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_456_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_458_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_460_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_462_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_463_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_464_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_465_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_466_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_467_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_468_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_469_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_470_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_471_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_472_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_473_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_474_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_476_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_478_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_480_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_481_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_482_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_483_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_484_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_485_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_486_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_487_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_488_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_489_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_490_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_491_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_492_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_494_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_496_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_498_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_499_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_500_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_501_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_502_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_503_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_504_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_505_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_506_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_507_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_508_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_509_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_510_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_512_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_514_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_516_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_517_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_518_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_519_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_520_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_521_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_522_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_523_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_524_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_525_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_526_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_527_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_528_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_530_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_532_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_534_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_535_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_536_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_537_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_538_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_539_{border_value=0, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_540_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_541_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_542_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_543_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_544_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_545_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_546_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_548_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_550_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_552_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_553_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_554_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_555_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_556_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_557_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_558_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_559_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_560_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_561_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_562_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_563_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_564_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_566_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_568_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_570_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_571_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_572_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_573_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_574_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_575_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_576_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_577_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_578_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_579_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_580_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_581_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_582_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_584_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_586_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_588_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_589_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_590_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_591_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_592_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_593_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_594_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_595_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_596_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_597_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_598_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_599_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_600_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_602_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_604_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_606_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_607_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_608_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_609_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_610_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_611_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_612_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_613_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_614_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_615_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_616_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_617_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_618_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_620_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_622_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_624_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_625_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_626_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_627_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_628_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_629_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_630_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_631_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_632_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_633_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_634_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_635_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_636_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_638_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_640_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_642_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_643_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_644_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_645_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_646_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_647_{border_value=0, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_648_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_649_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_650_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_651_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_652_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_653_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_654_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_656_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_658_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_660_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_661_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_662_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_663_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_664_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_665_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_666_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_667_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_668_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_669_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_670_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_671_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_672_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_674_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_676_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_678_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_679_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_680_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_681_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_682_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_683_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_684_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_685_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_686_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_687_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_688_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_689_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_690_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_692_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_694_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_696_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_697_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_698_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_699_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_700_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_701_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_702_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_703_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_704_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_705_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_706_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_707_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_708_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_710_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_712_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_714_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_715_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_716_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_717_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_718_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_719_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_720_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_721_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_722_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_723_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_724_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_725_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_726_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_728_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_730_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_732_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_733_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_734_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_735_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_736_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_737_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_738_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_739_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_740_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_741_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_742_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_743_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_744_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_746_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_748_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_750_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_751_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_752_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_753_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_754_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_755_{border_value=0, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_756_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_757_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_758_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_759_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_760_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_761_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_762_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_764_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_766_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_768_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_769_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_770_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_771_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_772_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_773_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_774_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_775_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_776_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_777_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_778_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_779_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_780_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_782_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_784_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_786_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_787_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_788_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_789_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_790_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_791_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_792_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_793_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_794_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_795_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_796_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_797_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_798_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_800_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_802_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_804_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_805_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_806_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_807_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_808_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_809_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_810_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_811_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_812_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_813_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_814_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_815_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_816_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_818_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_820_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_822_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_823_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_824_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_825_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_826_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_827_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_828_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_829_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_830_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_831_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_832_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_833_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_834_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_836_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_838_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_840_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_841_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_842_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_843_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_844_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_845_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_846_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_847_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_848_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_849_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_850_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_851_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_852_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_854_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_856_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_858_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_859_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_860_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_861_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_862_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_863_{border_value=0, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_864_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_865_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_866_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_867_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_868_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_869_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_870_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_872_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_874_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_876_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_877_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_878_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_879_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_880_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_881_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_882_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_883_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_884_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_885_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_886_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_887_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_888_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_890_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_892_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_894_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_895_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_896_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_897_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_898_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_899_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_900_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_901_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_902_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_903_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_904_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_905_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_906_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_908_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_910_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_912_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_913_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_914_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_915_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_916_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_917_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_918_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_919_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_920_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_921_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_922_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_923_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_924_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_926_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_928_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_930_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_931_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_932_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_933_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_934_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_935_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_936_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_937_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_938_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_939_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_940_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_941_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_942_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_944_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_946_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_948_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_949_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_950_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_951_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_952_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_953_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_954_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_955_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_956_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_957_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_958_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_959_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_960_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_962_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_964_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_966_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_967_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_968_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_969_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_970_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_971_{border_value=0, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_972_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_973_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_974_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_975_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_976_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_977_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_978_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_980_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_982_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_984_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_985_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_986_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_987_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_988_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_989_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_990_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_991_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_992_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_993_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_994_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_995_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_996_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_998_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1000_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1002_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1003_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1004_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1005_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1006_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1007_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1008_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1009_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1010_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1011_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1012_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1013_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1014_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1016_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1018_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1020_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1021_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1022_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1023_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1024_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1025_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1026_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1027_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1028_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1029_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1030_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1031_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1032_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1034_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1036_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1038_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1039_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1040_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1041_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1042_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1043_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1044_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1045_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1046_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1047_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1048_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1049_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1050_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1052_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1054_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1056_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1057_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1058_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1059_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1060_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1061_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1062_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1063_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1064_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1065_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1066_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1067_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1068_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1070_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1072_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1074_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1075_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1076_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1077_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1078_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1079_{border_value=0, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1080_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1081_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1082_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1083_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1084_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1085_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1086_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1088_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1090_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1092_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1093_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1094_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1095_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1096_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1097_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1098_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1099_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1100_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1101_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1102_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1103_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1104_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1106_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1108_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1110_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1111_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1112_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1113_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1114_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1115_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1116_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1117_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1118_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1119_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1120_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1121_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1122_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1124_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1126_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1128_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1129_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1130_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1131_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1132_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1133_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1134_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1135_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1136_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1137_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1138_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1139_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1140_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1142_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1144_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1146_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1147_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1148_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1149_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1150_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1151_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1152_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1153_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1154_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1155_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1156_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1157_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1158_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1160_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1162_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1164_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1165_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1166_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1167_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1168_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1169_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1170_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1171_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1172_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1173_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1174_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1175_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1176_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1178_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1180_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1182_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1183_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1184_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1185_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1186_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1187_{border_value=0, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1188_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1189_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1190_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1191_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1192_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1193_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1194_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1196_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1198_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1200_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1201_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1202_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1203_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1204_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1205_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1206_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1207_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1208_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1209_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1210_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1211_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1212_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1214_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1216_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1218_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1219_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1220_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1221_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1222_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1223_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1224_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1225_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1226_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1227_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1228_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1229_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1230_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1232_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1234_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1236_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1237_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1238_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1239_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1240_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1241_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1242_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1243_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1244_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1245_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1246_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1247_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1248_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1250_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1252_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1254_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1255_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1256_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1257_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1258_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1259_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1260_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1261_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1262_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1263_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1264_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1265_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1266_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1268_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1270_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1272_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1273_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1274_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1275_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1276_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1277_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1278_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1279_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1280_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1281_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1282_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1283_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1284_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1286_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1288_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1290_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1291_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1292_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1293_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1294_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1295_{border_value=0, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1296_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1297_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1298_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1299_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1300_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1301_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1302_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1304_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1306_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1308_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1309_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1310_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1311_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1312_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1313_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1314_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1315_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1316_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1317_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1318_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1319_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1320_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1322_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1324_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1326_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1327_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1328_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1329_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1330_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1331_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1332_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1333_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1334_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1335_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1336_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1337_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1338_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1340_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1342_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1344_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1345_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1346_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1347_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1348_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1349_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1350_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1351_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1352_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1353_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1354_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1355_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1356_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1358_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1360_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1362_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1363_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1364_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1365_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1366_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1367_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1368_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1369_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1370_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1371_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1372_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1373_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1374_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1376_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1378_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1380_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1381_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1382_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1383_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1384_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1385_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1386_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1387_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1388_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1389_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1390_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1391_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1392_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1394_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1396_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1398_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1399_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1400_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1401_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1402_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1403_{border_value=1, connectivity=1, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1404_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1405_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1406_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1407_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1408_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1409_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1410_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1412_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1414_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1416_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1417_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1418_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1419_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1420_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1421_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1422_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1423_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1424_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1425_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1426_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1427_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1428_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1430_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1432_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1434_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1435_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1436_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1437_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1438_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1439_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1440_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1441_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1442_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1443_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1444_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1445_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1446_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1448_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1450_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1452_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1453_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1454_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1455_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1456_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1457_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1458_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1459_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1460_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1461_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1462_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1463_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1464_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1466_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1468_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1470_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1471_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1472_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1473_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1474_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1475_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1476_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1477_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1478_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1479_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1480_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1481_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1482_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1484_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1486_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1488_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1489_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1490_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1491_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1492_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1493_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1494_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1495_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1496_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1497_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1498_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1499_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1500_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1502_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1504_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1506_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1507_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1508_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1509_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1510_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1511_{border_value=1, connectivity=1, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1512_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1513_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1514_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1515_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1516_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1517_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1518_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1520_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1522_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1524_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1525_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1526_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1527_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1528_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1529_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1530_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1531_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1532_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1533_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1534_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1535_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1536_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1538_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1540_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1542_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1543_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1544_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1545_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1546_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1547_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1548_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1549_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1550_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1551_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1552_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1553_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1554_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1556_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1558_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1560_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1561_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1562_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1563_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1564_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1565_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1566_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1567_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1568_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1569_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1570_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1571_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1572_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1574_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1576_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1578_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1579_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1580_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1581_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1582_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1583_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1584_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1585_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1586_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1587_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1588_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1589_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1590_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1592_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1594_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1596_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1597_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1598_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1599_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1600_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1601_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1602_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1603_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1604_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1605_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1606_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1607_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1608_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1610_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1612_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1614_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1615_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1616_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1617_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1618_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1619_{border_value=1, connectivity=1, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1620_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1621_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1622_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1623_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1624_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1625_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1626_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1628_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1630_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1632_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1633_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1634_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1635_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1636_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1637_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1638_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1639_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1640_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1641_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1642_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1643_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1644_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1646_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1648_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1650_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1651_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1652_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1653_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1654_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1655_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1656_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1657_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1658_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1659_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1660_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1661_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1662_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1664_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1666_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1668_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1669_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1670_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1671_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1672_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1673_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1674_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1675_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1676_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1677_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1678_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1679_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1680_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1682_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1684_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1686_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1687_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1688_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1689_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1690_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1691_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1692_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1693_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1694_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1695_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1696_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1697_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1698_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1700_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1702_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1704_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1705_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1706_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1707_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1708_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1709_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1710_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1711_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1712_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1713_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1714_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1715_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1716_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1718_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1720_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1722_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1723_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1724_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1725_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1726_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1727_{border_value=1, connectivity=1, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1728_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1729_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1730_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1731_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1732_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1733_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1734_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1736_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1738_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1740_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1741_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1742_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1743_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1744_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1745_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1746_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1747_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1748_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1749_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1750_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1751_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1752_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1754_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1756_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1758_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1759_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1760_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1761_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1762_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1763_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1764_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1765_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1766_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1767_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1768_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1769_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1770_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1772_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1774_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1776_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1777_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1778_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1779_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1780_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1781_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1782_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1783_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1784_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1785_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1786_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1787_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1788_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1790_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1792_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1794_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1795_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1796_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1797_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1798_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1799_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1800_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1801_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1802_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1803_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1804_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1805_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1806_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1808_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1810_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1812_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1813_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1814_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1815_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1816_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1817_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1818_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1819_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1820_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1821_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1822_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1823_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1824_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1826_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1828_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1830_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1831_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1832_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1833_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1834_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1835_{border_value=1, connectivity=1, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1836_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1837_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1838_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1839_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1840_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1841_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1842_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1844_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1846_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1848_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1849_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1850_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1851_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1852_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1853_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1854_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1855_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1856_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1857_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1858_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1859_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1860_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1862_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1864_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1866_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1867_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1868_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1869_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1870_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1871_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1872_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1873_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1874_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1875_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1876_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1877_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1878_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1880_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1882_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1884_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1885_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1886_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1887_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1888_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1889_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1890_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1891_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1892_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1893_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1894_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1895_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1896_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1898_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1900_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1902_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1903_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1904_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1905_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1906_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1907_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1908_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1909_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1910_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1911_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1912_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1913_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1914_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1916_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1918_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1920_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1921_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1922_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1923_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1924_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1925_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1926_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1927_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1928_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1929_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1930_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1931_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1932_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1934_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1936_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1938_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1939_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1940_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1941_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1942_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1943_{border_value=1, connectivity=1, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1944_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1945_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1946_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1947_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1948_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1949_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1950_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1952_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1954_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1956_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1957_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1958_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1959_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1960_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1961_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1962_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1963_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1964_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1965_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1966_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1967_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1968_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1970_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1972_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1974_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1975_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1976_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1977_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1978_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1979_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1980_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1981_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1982_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1983_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1984_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1985_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1986_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1988_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1990_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1992_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1993_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1994_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1995_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1996_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1997_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1998_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_1999_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2000_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2001_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2002_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2003_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2004_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2006_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2008_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2010_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2011_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2012_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2013_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2014_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2015_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2016_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2017_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2018_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2019_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2020_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2021_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2022_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2024_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2026_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2028_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2029_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2030_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2031_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2032_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2033_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2034_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2035_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2036_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2037_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2038_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2039_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2040_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2042_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2044_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2046_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2047_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2048_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2049_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2050_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2051_{border_value=1, connectivity=2, density=0.1, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2052_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2053_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2054_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2055_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2056_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2057_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2058_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2060_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2062_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2064_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2065_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2066_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2067_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2068_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2069_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2070_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2071_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2072_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2073_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2074_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2075_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2076_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2078_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2080_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2082_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2083_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2084_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2085_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2086_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2087_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2088_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2089_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2090_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2091_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2092_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2093_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2094_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2096_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2098_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2100_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2101_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2102_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2103_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2104_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2105_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2106_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2107_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2108_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2109_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2110_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2111_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2112_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2114_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2116_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2118_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2119_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2120_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2121_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2122_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2123_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2124_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2125_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2126_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2127_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2128_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2129_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2130_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2132_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2134_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2136_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2137_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2138_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2139_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2140_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2141_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2142_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2143_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2144_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2145_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2146_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2147_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2148_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2150_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2152_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2154_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2155_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2156_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2157_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2158_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2159_{border_value=1, connectivity=2, density=0.1, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2160_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2161_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2162_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2163_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2164_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2165_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2166_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2168_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2170_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2172_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2173_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2174_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2175_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2176_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2177_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2178_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2179_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2180_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2181_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2182_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2183_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2184_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2186_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2188_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2190_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2191_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2192_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2193_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2194_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2195_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2196_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2197_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2198_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2199_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2200_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2201_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2202_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2204_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2206_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2208_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2209_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2210_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2211_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2212_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2213_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2214_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2215_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2216_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2217_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2218_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2219_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2220_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2222_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2224_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2226_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2227_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2228_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2229_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2230_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2231_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2232_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2233_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2234_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2235_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2236_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2237_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2238_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2240_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2242_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2244_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2245_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2246_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2247_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2248_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2249_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2250_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2251_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2252_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2253_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2254_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2255_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2256_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2258_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2260_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2262_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2263_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2264_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2265_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2266_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2267_{border_value=1, connectivity=2, density=0.5, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2268_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2269_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2270_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2271_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2272_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2273_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2274_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2276_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2278_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2280_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2281_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2282_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2283_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2284_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2285_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2286_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2287_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2288_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2289_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2290_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2291_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2292_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2294_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2296_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2298_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2299_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2300_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2301_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2302_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2303_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2304_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2305_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2306_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2307_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2308_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2309_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2310_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2312_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2314_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2316_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2317_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2318_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2319_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2320_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2321_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2322_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2323_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2324_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2325_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2326_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2327_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2328_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2330_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2332_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2334_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2335_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2336_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2337_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2338_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2339_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2340_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2341_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2342_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2343_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2344_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2345_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2346_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2348_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2350_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2352_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2353_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2354_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2355_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2356_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2357_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2358_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2359_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2360_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2361_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2362_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2363_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2364_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2366_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2368_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2370_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2371_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2372_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2373_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2374_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2375_{border_value=1, connectivity=2, density=0.5, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2376_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2377_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2378_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2379_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2380_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2381_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2382_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2384_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2386_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2388_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2389_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2390_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2391_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2392_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2393_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2394_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2395_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2396_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2397_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2398_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2399_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2400_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2402_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2404_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2406_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2407_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2408_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2409_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2410_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2411_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2412_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2413_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2414_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2415_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2416_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2417_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2418_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2420_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2422_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2424_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2425_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2426_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2427_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2428_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2429_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2430_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2431_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2432_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2433_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2434_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2435_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2436_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2438_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2440_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2442_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2443_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2444_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2445_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2446_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2447_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2448_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2449_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2450_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2451_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2452_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2453_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2454_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2456_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2458_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2460_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2461_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2462_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2463_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2464_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2465_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2466_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2467_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2468_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2469_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2470_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2471_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2472_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2474_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2476_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2478_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2479_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2480_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2481_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2482_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2483_{border_value=1, connectivity=2, density=0.9, filter='binary_erosion', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2484_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2485_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2486_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2487_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2488_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2489_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2490_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2492_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2494_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2496_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2497_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2498_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2499_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2500_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2501_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2502_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2503_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2504_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2505_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2506_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2507_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2508_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2510_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2512_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2514_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2515_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2516_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2517_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2518_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2519_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=1, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2520_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2521_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2522_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2523_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2524_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2525_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2526_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2528_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2530_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2532_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2533_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2534_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2535_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2536_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2537_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2538_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2539_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2540_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2541_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2542_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2543_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2544_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2546_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2548_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2550_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2551_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2552_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2553_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2554_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2555_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=2, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2556_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2557_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2558_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2559_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2560_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2561_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2562_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2564_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2566_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2568_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2569_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2570_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2571_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2572_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2573_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=0, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2574_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2575_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2576_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2577_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2578_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2579_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=None, shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2580_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2582_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2584_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output=float32, shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2586_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2587_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(64,), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2588_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2589_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(16, 15), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2590_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilation::test_binary_erosion_and_dilation[_param_2591_{border_value=1, connectivity=2, density=0.9, filter='binary_dilation', iterations=0, origin=-1, output='array', shape=(5, 7, 9), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_0_{contiguity='C', filter='binary_erosion', iterations=1, shape=(16, 24), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_1_{contiguity='C', filter='binary_erosion', iterations=1, shape=(16, 24), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_2_{contiguity='C', filter='binary_erosion', iterations=2, shape=(16, 24), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_3_{contiguity='C', filter='binary_erosion', iterations=2, shape=(16, 24), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_4_{contiguity='C', filter='binary_dilation', iterations=1, shape=(16, 24), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_5_{contiguity='C', filter='binary_dilation', iterations=1, shape=(16, 24), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_6_{contiguity='C', filter='binary_dilation', iterations=2, shape=(16, 24), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_7_{contiguity='C', filter='binary_dilation', iterations=2, shape=(16, 24), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_8_{contiguity='F', filter='binary_erosion', iterations=1, shape=(16, 24), x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_9_{contiguity='F', filter='binary_erosion', iterations=1, shape=(16, 24), x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_10_{contiguity='F', filter='binary_erosion', iterations=2, shape=(16, 24), x_dtype=int8}] | 3.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_11_{contiguity='F', filter='binary_erosion', iterations=2, shape=(16, 24), x_dtype=float32}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_12_{contiguity='F', filter='binary_dilation', iterations=1, shape=(16, 24), x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_13_{contiguity='F', filter='binary_dilation', iterations=1, shape=(16, 24), x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_14_{contiguity='F', filter='binary_dilation', iterations=2, shape=(16, 24), x_dtype=int8}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_15_{contiguity='F', filter='binary_dilation', iterations=2, shape=(16, 24), x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_16_{contiguity='none', filter='binary_erosion', iterations=1, shape=(16, 24), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_17_{contiguity='none', filter='binary_erosion', iterations=1, shape=(16, 24), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_18_{contiguity='none', filter='binary_erosion', iterations=2, shape=(16, 24), x_dtype=int8}] | 0.73 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_19_{contiguity='none', filter='binary_erosion', iterations=2, shape=(16, 24), x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_20_{contiguity='none', filter='binary_dilation', iterations=1, shape=(16, 24), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_21_{contiguity='none', filter='binary_dilation', iterations=1, shape=(16, 24), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_22_{contiguity='none', filter='binary_dilation', iterations=2, shape=(16, 24), x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestBinaryErosionAndDilationContiguity::test_binary_erosion_and_dilation_input_contiguity[_param_23_{contiguity='none', filter='binary_dilation', iterations=2, shape=(16, 24), x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_0_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_3_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_4_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_5_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_6_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_7_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_8_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_9_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_10_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_11_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_12_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_13_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_14_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_15_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_16_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_17_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_18_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_19_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_20_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_21_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_22_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_23_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_24_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_25_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_26_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_27_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_28_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_29_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_30_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 2.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_31_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_32_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_33_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_34_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_35_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_36_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_37_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_38_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_39_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_40_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_41_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_42_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_43_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_44_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_45_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_46_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_47_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_48_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_49_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_50_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_51_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_52_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_53_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_54_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_55_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_56_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_57_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_58_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_59_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_60_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_61_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_63_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_64_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_65_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_66_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_68_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_69_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_70_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_71_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_73_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_74_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_75_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_76_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_78_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_79_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_80_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_81_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_83_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_84_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_85_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_86_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_88_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_89_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_90_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_91_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_93_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_94_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_95_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_96_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_98_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_99_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_100_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_101_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_103_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_104_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_105_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_106_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_108_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_109_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_110_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_111_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_113_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_114_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_115_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_116_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_118_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_119_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_120_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_121_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_122_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_123_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_125_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_126_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_127_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_128_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_130_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_131_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_132_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_133_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_135_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_136_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_137_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_138_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_140_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_141_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_142_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_143_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_145_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_146_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_147_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_148_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_150_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_151_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_152_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_153_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_155_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_156_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_157_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_158_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_160_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_161_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_162_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_163_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_165_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_166_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_167_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_168_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_170_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_171_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_172_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_173_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_175_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_176_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_177_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_178_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_180_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_181_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_182_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_183_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_184_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_185_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_186_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_187_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_188_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_189_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_190_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_191_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_192_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_193_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_194_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_195_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_196_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_197_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_198_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_199_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_200_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_201_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_202_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_203_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_204_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_205_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_206_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_207_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_208_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_209_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_210_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 2.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_211_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_212_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_213_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 2.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_214_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_215_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_216_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_217_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_218_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_219_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_220_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_221_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_222_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_223_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_224_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_225_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_226_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_227_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_228_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_229_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_230_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_231_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_232_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_233_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_234_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_235_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_236_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_237_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_238_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_239_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_240_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_241_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_243_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_244_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_245_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_246_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_248_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_249_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_250_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_251_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_253_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_254_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_255_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_256_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_258_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_259_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_260_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_261_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_263_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_264_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_265_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_266_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_268_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_269_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_270_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_271_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_273_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_274_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_275_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_276_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_278_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_279_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_280_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_281_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_283_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_284_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_285_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_286_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_288_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_289_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_290_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_291_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_293_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_294_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_295_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_296_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_298_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_299_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_300_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_301_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_302_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_303_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_305_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_306_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_307_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_308_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_310_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_311_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_312_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_313_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_315_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_316_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_317_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_318_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_320_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_321_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_322_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_323_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_325_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_326_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_327_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_328_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_330_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_331_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_332_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_333_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_335_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_336_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_337_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_338_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_340_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_341_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_342_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_343_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_345_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_346_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_347_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_348_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_350_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_351_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_352_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_353_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_355_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_356_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_357_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_358_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_360_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_361_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_362_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_363_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_364_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_365_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_366_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_367_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_368_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_369_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_370_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_371_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_372_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_373_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_374_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_375_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_376_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_377_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_378_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_379_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_380_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_381_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_382_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_383_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_384_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_385_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_386_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_387_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_388_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_389_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_390_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_391_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_392_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_393_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_394_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_395_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_396_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_397_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_398_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_399_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_400_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_401_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_402_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_403_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_404_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_405_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_406_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_407_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_408_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_409_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_410_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_411_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_412_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_413_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_414_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_415_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_416_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_417_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_418_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_419_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_420_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_421_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_423_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_424_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_425_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_426_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_428_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_429_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_430_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_431_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_433_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_434_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_435_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_436_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_438_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_439_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_440_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_441_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_443_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_444_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_445_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_446_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_448_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_449_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_450_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_451_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_453_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_454_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_455_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_456_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_458_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_459_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_460_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_461_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_463_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_464_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_465_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_466_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_468_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_469_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_470_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_471_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_473_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_474_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_475_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_476_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_478_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_479_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_480_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_481_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_482_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_483_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_485_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_486_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_487_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_488_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_490_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_491_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_492_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_493_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_495_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_496_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_497_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_498_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_500_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_501_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_502_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_503_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_505_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_506_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_507_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_508_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_510_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_511_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_512_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_513_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_515_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_516_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_517_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_518_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_520_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_521_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_522_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_523_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_525_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_526_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_527_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_528_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_530_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_531_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_532_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_533_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_535_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_536_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_537_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_538_{cval=0.0, filter='grey_erosion', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_540_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_541_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_542_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_543_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_544_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_545_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_546_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_547_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_548_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_549_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_550_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_551_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_552_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_553_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_554_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_555_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_556_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_557_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_558_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_559_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_560_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_561_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_562_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_563_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_564_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_565_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_566_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_567_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_568_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_569_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_570_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_571_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_572_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_573_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_574_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_575_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_576_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_577_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_578_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_579_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_580_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_581_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_582_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_583_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_584_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_585_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_586_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_587_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_588_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_589_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_590_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_591_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_592_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_593_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_594_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_595_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_596_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_597_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_598_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_599_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_600_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_601_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_603_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_604_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_605_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_606_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_608_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_609_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_610_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_611_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_613_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_614_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_615_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_616_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_618_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_619_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_620_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_621_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_623_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_624_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_625_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_626_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_628_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_629_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_630_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_631_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_633_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_634_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_635_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_636_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_638_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_639_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_640_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_641_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_643_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_644_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_645_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_646_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_648_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_649_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_650_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_651_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_653_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_654_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_655_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_656_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_658_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_659_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_660_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_661_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_662_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_663_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_665_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_666_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_667_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_668_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_670_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_671_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_672_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_673_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_675_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_676_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_677_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_678_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_680_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_681_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_682_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_683_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_685_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_686_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_687_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_688_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_690_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_691_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_692_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_693_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_695_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_696_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_697_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_698_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_700_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_701_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_702_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_703_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_705_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_706_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_707_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_708_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_710_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_711_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_712_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_713_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_715_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_716_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_717_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_718_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_720_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_721_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_722_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_723_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_724_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_725_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_726_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_727_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_728_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_729_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_730_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_731_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_732_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_733_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_734_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_735_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_736_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_737_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_738_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_739_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_740_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_741_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_742_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_743_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_744_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_745_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_746_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_747_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_748_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_749_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_750_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_751_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_752_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_753_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_754_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_755_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_756_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_757_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_758_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_759_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_760_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_761_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_762_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_763_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_764_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_765_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_766_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_767_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_768_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_769_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_770_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_771_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_772_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_773_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_774_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_775_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_776_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_777_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_778_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_779_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_780_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_781_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_783_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_784_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_785_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_786_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_788_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_789_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_790_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_791_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_793_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_794_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_795_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_796_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_798_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_799_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_800_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_801_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_803_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_804_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_805_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_806_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_808_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_809_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_810_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_811_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_813_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_814_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_815_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_816_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_818_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_819_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_820_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_821_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_823_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_824_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_825_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_826_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_828_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_829_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_830_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_831_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_833_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_834_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_835_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_836_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_838_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_839_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_840_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_841_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_842_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_843_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_845_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_846_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_847_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_848_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_850_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_851_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_852_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_853_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_855_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_856_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_857_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_858_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_860_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_861_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_862_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_863_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_865_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_866_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_867_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_868_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_870_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_871_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_872_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_873_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_875_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_876_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_877_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_878_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_880_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_881_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_882_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_883_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_885_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_886_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_887_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_888_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_890_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_891_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_892_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_893_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_895_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_896_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_897_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_898_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_900_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_901_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_902_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_903_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_904_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_905_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_906_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_907_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_908_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_909_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_910_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_911_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_912_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_913_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_914_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_915_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_916_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_917_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_918_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_919_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_920_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_921_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_922_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_923_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_924_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_925_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_926_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_927_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_928_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_929_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_930_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_931_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_932_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_933_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_934_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_935_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_936_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_937_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_938_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_939_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_940_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_941_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_942_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_943_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_944_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_945_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_946_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_947_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_948_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_949_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_950_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_951_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_952_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_953_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_954_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_955_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_956_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_957_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_958_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_959_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_960_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_961_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_963_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_964_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_965_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_966_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_968_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_969_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_970_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_971_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_973_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_974_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_975_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_976_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_978_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_979_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_980_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_981_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_983_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_984_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_985_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_986_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_988_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_989_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_990_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_991_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_993_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_994_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_995_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_996_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_998_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_999_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1000_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1001_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1003_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1004_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1005_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1006_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1008_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1009_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1010_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1011_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1013_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1014_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1015_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1016_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1018_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1019_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1020_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1021_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1022_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1023_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1025_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1026_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1027_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1028_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1030_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1031_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1032_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1033_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1035_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1036_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1037_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1038_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1040_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1041_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1042_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1043_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1045_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1046_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1047_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1048_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1050_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1051_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1052_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1053_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1055_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1056_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1057_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1058_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1060_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1061_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1062_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1063_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1065_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1066_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1067_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1068_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1070_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1071_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1072_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1073_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1075_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1076_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1077_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1078_{cval=0.0, filter='grey_erosion', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1080_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1081_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1082_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1083_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1084_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1085_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1086_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1087_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1088_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1089_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1090_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1091_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1092_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1093_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1094_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1095_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1096_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1097_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1098_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1099_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1100_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1101_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 2.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1102_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1103_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1104_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1105_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1106_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1107_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1108_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1109_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1110_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1111_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1112_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1113_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 2.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1114_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1115_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1116_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1117_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1118_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1119_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1120_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1121_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1122_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1123_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1124_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 2.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1125_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1126_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1127_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1128_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1129_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1130_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1131_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1132_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1133_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1134_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1135_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1136_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1137_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1138_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1139_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1140_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1141_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1143_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1144_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1145_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1146_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1148_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1149_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1150_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1151_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1153_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1154_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1155_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1156_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1158_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1159_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1160_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1161_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1163_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1164_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1165_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1166_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1168_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1169_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1170_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1171_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1173_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1174_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1175_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1176_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1178_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1179_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1180_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1181_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1183_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1184_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1185_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1186_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1188_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1189_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1190_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1191_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1193_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1194_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1195_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1196_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1198_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1199_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1200_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1201_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1202_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1203_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1205_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1206_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1207_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1208_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1210_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1211_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1212_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1213_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1215_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1216_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1217_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1218_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1220_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1221_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1222_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1223_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1225_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1226_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1227_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1228_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1230_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1231_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1232_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1233_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1235_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1236_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1237_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1238_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1240_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1241_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1242_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1243_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1245_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1246_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1247_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1248_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1250_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1251_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1252_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1253_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1255_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1256_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1257_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1258_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1260_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1261_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1262_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1263_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1264_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1265_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1266_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1267_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1268_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1269_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1270_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1271_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1272_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1273_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1274_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1275_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1276_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1277_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1278_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1279_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1280_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1281_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 2.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1282_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1283_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 2.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1284_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 2.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1285_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1286_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1287_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1288_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1289_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1290_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1291_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1292_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1293_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1294_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1295_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1296_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1297_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1298_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1299_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1300_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1301_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1302_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1303_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1304_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1305_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1306_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1307_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1308_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1309_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1310_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 3.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1311_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1312_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1313_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1314_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1315_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1316_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1317_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1318_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1319_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1320_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1321_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1323_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1324_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1325_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1326_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1328_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1329_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1330_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1331_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1333_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1334_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1335_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1336_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1338_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1339_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1340_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1341_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1343_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1344_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1345_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1346_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1348_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1349_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1350_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1351_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1353_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1354_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1355_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1356_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1358_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1359_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1360_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1361_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1363_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1364_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1365_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1366_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1368_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1369_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1370_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1371_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1373_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1374_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1375_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1376_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1378_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1379_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1380_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1381_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1382_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1383_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1385_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1386_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1387_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1388_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1390_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1391_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1392_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1393_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1395_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1396_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1397_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1398_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1400_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1401_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1402_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1403_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1405_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1406_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1407_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1408_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1410_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1411_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1412_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1413_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1415_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1416_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1417_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1418_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1420_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1421_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1422_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1423_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1425_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1426_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1427_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1428_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1430_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1431_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1432_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1433_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1435_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1436_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1437_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1438_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1440_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1441_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1442_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1443_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1444_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1445_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1446_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1447_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1448_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1449_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1450_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1451_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1452_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1453_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1454_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1455_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1456_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1457_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1458_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1459_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1460_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1461_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1462_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1463_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1464_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1465_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1466_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1467_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1468_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1469_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1470_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1471_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1472_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1473_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1474_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1475_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1476_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1477_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1478_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1479_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1480_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1481_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1482_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1483_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1484_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1485_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1486_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1487_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1488_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1489_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1490_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1491_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1492_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1493_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1494_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1495_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1496_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1497_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1498_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1499_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1500_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1501_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1503_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1504_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1505_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1506_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1508_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1509_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1510_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1511_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1513_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1514_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1515_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1516_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1518_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1519_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1520_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1521_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1523_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1524_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1525_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1526_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1528_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1529_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1530_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1531_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1533_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1534_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1535_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1536_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1538_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1539_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1540_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1541_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1543_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1544_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1545_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1546_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1548_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1549_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1550_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1551_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1553_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1554_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1555_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1556_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1558_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1559_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1560_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1561_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1562_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1563_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1565_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1566_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1567_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1568_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1570_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1571_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1572_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1573_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1575_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1576_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1577_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1578_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1580_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1581_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1582_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1583_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1585_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1586_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1587_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1588_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1590_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1591_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1592_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1593_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1595_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1596_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1597_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1598_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1600_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1601_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1602_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1603_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1605_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1606_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1607_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1608_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1610_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1611_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1612_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1613_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1615_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1616_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1617_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1618_{cval=0.0, filter='grey_dilation', footprint=None, mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1620_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1621_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1622_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1623_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1624_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1625_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1626_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1627_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1628_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1629_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1630_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1631_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1632_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1633_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1634_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1635_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1636_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1637_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1638_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1639_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1640_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1641_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1642_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1643_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1644_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1645_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1646_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1647_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1648_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1649_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1650_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1651_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1652_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1653_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1654_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1655_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1656_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1657_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1658_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1659_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1660_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1661_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1662_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1663_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1664_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1665_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1666_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1667_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1668_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1669_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1670_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1671_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1672_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1673_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1674_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1675_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1676_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1677_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1678_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1679_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1680_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1681_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1683_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1684_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1685_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1686_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1688_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1689_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1690_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1691_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1693_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1694_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1695_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1696_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1698_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1699_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1700_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1701_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1703_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1704_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1705_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1706_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1708_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1709_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1710_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1711_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1713_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1714_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1715_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1716_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1718_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1719_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1720_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1721_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1723_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1724_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1725_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1726_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1728_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1729_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1730_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1731_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1733_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1734_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1735_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1736_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1738_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1739_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1740_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1741_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1742_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1743_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1745_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1746_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1747_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1748_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1750_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1751_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1752_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1753_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1755_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1756_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1757_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1758_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1760_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1761_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1762_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1763_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1765_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1766_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1767_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1768_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1770_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1771_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1772_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1773_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1775_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1776_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1777_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1778_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1780_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1781_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1782_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1783_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1785_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1786_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1787_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1788_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1790_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1791_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1792_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1793_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1795_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1796_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1797_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1798_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=0, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1800_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1801_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1802_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1803_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1804_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1805_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1806_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1807_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1808_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1809_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1810_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1811_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1812_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1813_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1814_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1815_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1816_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1817_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1818_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1819_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1820_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1821_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1822_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1823_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1824_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1825_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1826_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1827_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1828_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1829_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1830_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1831_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1832_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1833_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1834_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1835_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1836_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1837_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1838_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1839_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1840_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1841_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1842_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1843_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1844_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1845_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1846_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1847_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1848_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1849_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1850_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1851_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1852_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1853_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1854_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1855_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1856_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1857_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1858_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1859_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1860_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1861_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1863_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1864_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1865_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1866_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1868_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1869_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1870_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1871_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1873_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1874_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1875_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1876_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1878_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1879_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1880_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1881_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1883_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1884_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1885_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1886_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1888_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1889_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1890_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1891_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1893_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1894_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1895_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1896_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1898_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1899_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1900_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1901_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1903_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1904_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1905_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1906_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1908_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1909_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1910_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1911_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1913_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1914_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1915_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1916_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1918_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1919_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1920_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1921_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1922_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1923_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1925_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1926_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1927_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1928_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1930_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1931_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1932_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1933_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1935_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1936_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1937_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1938_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1940_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1941_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1942_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1943_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1945_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1946_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1947_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1948_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1950_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1951_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1952_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1953_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1955_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1956_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1957_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1958_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1960_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1961_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1962_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1963_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1965_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1966_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1967_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1968_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1970_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1971_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1972_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1973_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1975_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1976_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1977_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1978_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=1, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1980_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1981_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1982_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1983_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1984_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1985_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1986_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1987_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1988_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1989_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1990_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1991_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1992_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1993_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1994_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1995_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1996_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1997_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1998_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_1999_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2000_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2001_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2002_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2003_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2004_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2005_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2006_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2007_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2008_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2009_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2010_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2011_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2012_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2013_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2014_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2015_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2016_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2017_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2018_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2019_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2020_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2021_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2022_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2023_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2024_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2025_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2026_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2027_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2028_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2029_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2030_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2031_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2032_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2033_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2034_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2035_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2036_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2037_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2038_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2039_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2040_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2041_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2043_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2044_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2045_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2046_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2048_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2049_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2050_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2051_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2053_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2054_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2055_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2056_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2058_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2059_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2060_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2061_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2063_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2064_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2065_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2066_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2068_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2069_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2070_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2071_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2073_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2074_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2075_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2076_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2078_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2079_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2080_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2081_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2083_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2084_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2085_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2086_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2088_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2089_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2090_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2091_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2093_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2094_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2095_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2096_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2098_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2099_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=int32, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2100_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2101_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int16}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2102_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2103_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure=None, x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2105_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int8}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2106_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int16}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2107_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2108_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2110_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int8}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2111_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int16}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2112_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2113_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure=None, x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2115_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int8}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2116_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int16}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2117_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2118_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(3, 4), size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2120_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int8}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2121_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int16}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2122_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2123_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure=None, x_dtype=float32}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2125_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2126_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2127_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2128_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2130_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int8}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2131_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int16}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2132_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2133_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure=None, x_dtype=float32}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2135_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int8}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2136_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int16}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2137_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2138_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(2, 3, 4), size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2140_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int8}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2141_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int16}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2142_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2143_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float32}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2145_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int8}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2146_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int16}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2147_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2148_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float32}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2150_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int8}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2151_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int16}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2152_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2153_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2155_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int8}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2156_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int16}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2157_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2158_{cval=0.0, filter='grey_dilation', footprint='random', mode='reflect', origin=None, output=float64, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float32}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2160_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2161_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2162_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2163_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2164_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2165_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2166_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2167_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2168_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2169_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2170_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2171_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2172_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2173_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2174_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2175_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2176_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2177_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2178_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2179_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2180_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2181_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2182_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2183_{cval=-1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2184_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2185_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2186_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2187_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2188_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2189_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2190_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2191_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2192_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2193_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2194_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2195_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2196_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2197_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2198_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2199_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2200_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2201_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2202_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2203_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2204_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2205_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2206_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2207_{cval=-1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2208_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2209_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2210_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2211_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2212_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2213_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2214_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2215_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2216_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2217_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2218_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2219_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2220_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2221_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2222_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2223_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2224_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2225_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2226_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2227_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2228_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2229_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2230_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2231_{cval=-1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2232_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2233_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2234_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2235_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2236_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2237_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2238_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2239_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2240_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2241_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2242_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2243_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2244_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2245_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2246_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2247_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2248_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2249_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2250_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2251_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2252_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2253_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2254_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2255_{cval=-1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2256_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2257_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2258_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2259_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2260_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2261_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2262_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2263_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2264_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2265_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2266_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2267_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2268_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2269_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2270_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2271_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2272_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2273_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2274_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2275_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2276_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2277_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2278_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2279_{cval=0.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2280_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2281_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2282_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2283_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2284_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2285_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2286_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2287_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2288_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2289_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2290_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2291_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2292_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2293_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2294_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2295_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2296_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2297_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2298_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2299_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2300_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2301_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2302_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2303_{cval=0.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2304_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2305_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2306_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2307_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2308_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2309_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2310_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2311_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2312_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2313_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2314_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2315_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2316_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2317_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2318_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2319_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2320_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2321_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2322_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2323_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2324_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2325_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2326_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2327_{cval=0.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2328_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2329_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2330_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2331_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2332_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2333_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2334_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2335_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2336_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2337_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2338_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2339_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2340_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2341_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2342_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2343_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2344_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2345_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2346_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2347_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2348_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2349_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2350_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2351_{cval=0.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2352_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2353_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2354_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2355_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2356_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2357_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2358_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2359_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2360_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2361_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2362_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2363_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2364_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2365_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2366_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2367_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2368_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2369_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2370_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2371_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2372_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2373_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2374_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2375_{cval=1.0, filter='grey_erosion', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2376_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2377_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2378_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2379_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2380_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2381_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2382_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2383_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2384_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2385_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2386_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2387_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2388_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2389_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2390_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2391_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2392_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2393_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2394_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2395_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2396_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2397_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2398_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2399_{cval=1.0, filter='grey_erosion', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2400_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2401_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2402_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2403_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2404_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2405_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2406_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2407_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2408_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2409_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2410_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2411_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2412_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2413_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2414_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2415_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2416_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2417_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2418_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2419_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2420_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2421_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2422_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2423_{cval=1.0, filter='grey_dilation', footprint=None, mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2424_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2425_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2426_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2427_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2428_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2429_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2430_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2431_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2432_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2433_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2434_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2435_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2436_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2437_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2438_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2439_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.17 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2440_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2441_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2442_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2443_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2444_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2445_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2446_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2447_{cval=1.0, filter='grey_dilation', footprint='random', mode='constant', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2448_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2449_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2450_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2451_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2452_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2453_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2454_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2455_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2456_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2457_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2458_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2459_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2460_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2461_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2462_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2463_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2464_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2465_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2466_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2467_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2468_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2469_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2470_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2471_{cval=0.0, filter='grey_erosion', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2472_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2473_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2474_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2475_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2476_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2477_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2478_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2479_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2480_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2481_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2482_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2483_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2484_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2485_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2486_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2487_{cval=0.0, filter='grey_erosion', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2496_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2497_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2498_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2499_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2500_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2501_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2502_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2503_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2504_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2505_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2506_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2507_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2508_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2509_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2510_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2511_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2512_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2513_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2514_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2515_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2516_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2517_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2518_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2519_{cval=0.0, filter='grey_erosion', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2520_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2521_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2522_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2523_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2524_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2525_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2526_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2527_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2528_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2529_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2530_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2531_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2532_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2533_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2534_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2535_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2536_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2537_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2538_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2539_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2540_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2541_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2542_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2543_{cval=0.0, filter='grey_erosion', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2544_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2545_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2546_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2547_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2548_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2549_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2550_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2551_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2552_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2553_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2554_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2555_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2556_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2557_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2558_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2559_{cval=0.0, filter='grey_erosion', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2568_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2569_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2570_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2571_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2572_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2573_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2574_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2575_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2576_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2577_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2578_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2579_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2580_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2581_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2582_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2583_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2584_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2585_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2586_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2587_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2588_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2589_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2590_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2591_{cval=0.0, filter='grey_erosion', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2592_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2593_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2594_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2595_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2596_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2597_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2598_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2599_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2600_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2601_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2602_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2603_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2604_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2605_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2606_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2607_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2608_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2609_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2610_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2611_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2612_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2613_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 3.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2614_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2615_{cval=0.0, filter='grey_dilation', footprint=None, mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2616_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2617_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2618_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2619_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2620_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2621_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2622_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2623_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2624_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2625_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 2.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2626_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2627_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2628_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2629_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 2.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2630_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2631_{cval=0.0, filter='grey_dilation', footprint=None, mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2640_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2641_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2642_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2643_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2644_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2645_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2646_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2647_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2648_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 2.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2649_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 2.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2650_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2651_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2652_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 2.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2653_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2654_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2655_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2656_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2657_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 3.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2658_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2659_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2660_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2661_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 3.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2662_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2663_{cval=0.0, filter='grey_dilation', footprint=None, mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2664_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2665_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2666_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2667_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2668_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2669_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2670_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2671_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2672_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2673_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2674_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2675_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.86 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2676_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2677_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2678_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.13 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2679_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2680_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2681_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2682_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2683_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2684_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2685_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2686_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2687_{cval=0.0, filter='grey_dilation', footprint='random', mode='nearest', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2688_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2689_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2690_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2691_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2692_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2693_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2694_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2695_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2696_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2697_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2698_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 1.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2699_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2700_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2701_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2702_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2703_{cval=0.0, filter='grey_dilation', footprint='random', mode='mirror', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.18 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2712_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2713_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2714_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2715_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2716_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2717_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2718_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2719_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(3, 4), size=4, structure='random', x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2720_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=int32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2721_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure=None, x_dtype=float64}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2722_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2723_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2724_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=int32}] | 0.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2725_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure=None, x_dtype=float64}] | 0.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2726_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2727_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2728_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=int32}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2729_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure=None, x_dtype=float64}] | 1.12 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2730_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2731_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2732_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=int32}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2733_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure=None, x_dtype=float64}] | 1.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2734_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=int32}] | 1.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyErosionAndDilation::test_grey_erosion_and_dilation[_param_2735_{cval=0.0, filter='grey_dilation', footprint='random', mode='wrap', origin=0, output=None, shape=(1, 2, 3, 4), size=4, structure='random', x_dtype=float64}] | 1.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_0_{filter='grey_closing', mode='reflect', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_1_{filter='grey_closing', mode='reflect', origin=0, output=None, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_2_{filter='grey_closing', mode='reflect', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_3_{filter='grey_closing', mode='reflect', origin=0, output=None, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_4_{filter='grey_closing', mode='reflect', origin=0, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_5_{filter='grey_closing', mode='reflect', origin=0, output=None, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_6_{filter='grey_closing', mode='reflect', origin=0, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_7_{filter='grey_closing', mode='reflect', origin=0, output=None, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_8_{filter='grey_closing', mode='reflect', origin=0, output=float64, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_9_{filter='grey_closing', mode='reflect', origin=0, output=float64, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_10_{filter='grey_closing', mode='reflect', origin=0, output=float64, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_11_{filter='grey_closing', mode='reflect', origin=0, output=float64, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_12_{filter='grey_closing', mode='reflect', origin=0, output=float64, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_13_{filter='grey_closing', mode='reflect', origin=0, output=float64, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_14_{filter='grey_closing', mode='reflect', origin=0, output=float64, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_15_{filter='grey_closing', mode='reflect', origin=0, output=float64, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_16_{filter='grey_closing', mode='reflect', origin=None, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_17_{filter='grey_closing', mode='reflect', origin=None, output=None, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_18_{filter='grey_closing', mode='reflect', origin=None, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_19_{filter='grey_closing', mode='reflect', origin=None, output=None, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_20_{filter='grey_closing', mode='reflect', origin=None, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_21_{filter='grey_closing', mode='reflect', origin=None, output=None, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_22_{filter='grey_closing', mode='reflect', origin=None, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_23_{filter='grey_closing', mode='reflect', origin=None, output=None, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_24_{filter='grey_closing', mode='reflect', origin=None, output=float64, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_25_{filter='grey_closing', mode='reflect', origin=None, output=float64, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_26_{filter='grey_closing', mode='reflect', origin=None, output=float64, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_27_{filter='grey_closing', mode='reflect', origin=None, output=float64, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_28_{filter='grey_closing', mode='reflect', origin=None, output=float64, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_29_{filter='grey_closing', mode='reflect', origin=None, output=float64, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_30_{filter='grey_closing', mode='reflect', origin=None, output=float64, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_31_{filter='grey_closing', mode='reflect', origin=None, output=float64, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_32_{filter='grey_closing', mode='constant', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_33_{filter='grey_closing', mode='constant', origin=0, output=None, size=3, structure=None, x_dtype=float32}] | 3.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_34_{filter='grey_closing', mode='constant', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_35_{filter='grey_closing', mode='constant', origin=0, output=None, size=3, structure='random', x_dtype=float32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_36_{filter='grey_closing', mode='constant', origin=0, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_37_{filter='grey_closing', mode='constant', origin=0, output=None, size=4, structure=None, x_dtype=float32}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_38_{filter='grey_closing', mode='constant', origin=0, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_39_{filter='grey_closing', mode='constant', origin=0, output=None, size=4, structure='random', x_dtype=float32}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_40_{filter='grey_closing', mode='constant', origin=0, output=float64, size=3, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_41_{filter='grey_closing', mode='constant', origin=0, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_42_{filter='grey_closing', mode='constant', origin=0, output=float64, size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_43_{filter='grey_closing', mode='constant', origin=0, output=float64, size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_44_{filter='grey_closing', mode='constant', origin=0, output=float64, size=4, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_45_{filter='grey_closing', mode='constant', origin=0, output=float64, size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_46_{filter='grey_closing', mode='constant', origin=0, output=float64, size=4, structure='random', x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_47_{filter='grey_closing', mode='constant', origin=0, output=float64, size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_48_{filter='grey_closing', mode='constant', origin=None, output=None, size=3, structure=None, x_dtype=int32}] | 3.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_49_{filter='grey_closing', mode='constant', origin=None, output=None, size=3, structure=None, x_dtype=float32}] | 3.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_50_{filter='grey_closing', mode='constant', origin=None, output=None, size=3, structure='random', x_dtype=int32}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_51_{filter='grey_closing', mode='constant', origin=None, output=None, size=3, structure='random', x_dtype=float32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_52_{filter='grey_closing', mode='constant', origin=None, output=None, size=4, structure=None, x_dtype=int32}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_53_{filter='grey_closing', mode='constant', origin=None, output=None, size=4, structure=None, x_dtype=float32}] | 3.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_54_{filter='grey_closing', mode='constant', origin=None, output=None, size=4, structure='random', x_dtype=int32}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_55_{filter='grey_closing', mode='constant', origin=None, output=None, size=4, structure='random', x_dtype=float32}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_56_{filter='grey_closing', mode='constant', origin=None, output=float64, size=3, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_57_{filter='grey_closing', mode='constant', origin=None, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_58_{filter='grey_closing', mode='constant', origin=None, output=float64, size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_59_{filter='grey_closing', mode='constant', origin=None, output=float64, size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_60_{filter='grey_closing', mode='constant', origin=None, output=float64, size=4, structure=None, x_dtype=int32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_61_{filter='grey_closing', mode='constant', origin=None, output=float64, size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_62_{filter='grey_closing', mode='constant', origin=None, output=float64, size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_63_{filter='grey_closing', mode='constant', origin=None, output=float64, size=4, structure='random', x_dtype=float32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_64_{filter='grey_closing', mode='nearest', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_65_{filter='grey_closing', mode='nearest', origin=0, output=None, size=3, structure=None, x_dtype=float32}] | 3.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_66_{filter='grey_closing', mode='nearest', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_67_{filter='grey_closing', mode='nearest', origin=0, output=None, size=3, structure='random', x_dtype=float32}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_68_{filter='grey_closing', mode='nearest', origin=0, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_69_{filter='grey_closing', mode='nearest', origin=0, output=None, size=4, structure=None, x_dtype=float32}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_70_{filter='grey_closing', mode='nearest', origin=0, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_71_{filter='grey_closing', mode='nearest', origin=0, output=None, size=4, structure='random', x_dtype=float32}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_72_{filter='grey_closing', mode='nearest', origin=0, output=float64, size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_73_{filter='grey_closing', mode='nearest', origin=0, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_74_{filter='grey_closing', mode='nearest', origin=0, output=float64, size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_75_{filter='grey_closing', mode='nearest', origin=0, output=float64, size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_76_{filter='grey_closing', mode='nearest', origin=0, output=float64, size=4, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_77_{filter='grey_closing', mode='nearest', origin=0, output=float64, size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_78_{filter='grey_closing', mode='nearest', origin=0, output=float64, size=4, structure='random', x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_79_{filter='grey_closing', mode='nearest', origin=0, output=float64, size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_80_{filter='grey_closing', mode='nearest', origin=None, output=None, size=3, structure=None, x_dtype=int32}] | 3.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_81_{filter='grey_closing', mode='nearest', origin=None, output=None, size=3, structure=None, x_dtype=float32}] | 3.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_82_{filter='grey_closing', mode='nearest', origin=None, output=None, size=3, structure='random', x_dtype=int32}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_83_{filter='grey_closing', mode='nearest', origin=None, output=None, size=3, structure='random', x_dtype=float32}] | 1.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_84_{filter='grey_closing', mode='nearest', origin=None, output=None, size=4, structure=None, x_dtype=int32}] | 3.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_85_{filter='grey_closing', mode='nearest', origin=None, output=None, size=4, structure=None, x_dtype=float32}] | 3.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_86_{filter='grey_closing', mode='nearest', origin=None, output=None, size=4, structure='random', x_dtype=int32}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_87_{filter='grey_closing', mode='nearest', origin=None, output=None, size=4, structure='random', x_dtype=float32}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_88_{filter='grey_closing', mode='nearest', origin=None, output=float64, size=3, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_89_{filter='grey_closing', mode='nearest', origin=None, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_90_{filter='grey_closing', mode='nearest', origin=None, output=float64, size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_91_{filter='grey_closing', mode='nearest', origin=None, output=float64, size=3, structure='random', x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_92_{filter='grey_closing', mode='nearest', origin=None, output=float64, size=4, structure=None, x_dtype=int32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_93_{filter='grey_closing', mode='nearest', origin=None, output=float64, size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_94_{filter='grey_closing', mode='nearest', origin=None, output=float64, size=4, structure='random', x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_95_{filter='grey_closing', mode='nearest', origin=None, output=float64, size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_96_{filter='grey_closing', mode='mirror', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_97_{filter='grey_closing', mode='mirror', origin=0, output=None, size=3, structure=None, x_dtype=float32}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_98_{filter='grey_closing', mode='mirror', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_99_{filter='grey_closing', mode='mirror', origin=0, output=None, size=3, structure='random', x_dtype=float32}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_100_{filter='grey_closing', mode='mirror', origin=0, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_101_{filter='grey_closing', mode='mirror', origin=0, output=None, size=4, structure=None, x_dtype=float32}] | 3.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_102_{filter='grey_closing', mode='mirror', origin=0, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_103_{filter='grey_closing', mode='mirror', origin=0, output=None, size=4, structure='random', x_dtype=float32}] | 1.67 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_104_{filter='grey_closing', mode='mirror', origin=0, output=float64, size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_105_{filter='grey_closing', mode='mirror', origin=0, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_106_{filter='grey_closing', mode='mirror', origin=0, output=float64, size=3, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_107_{filter='grey_closing', mode='mirror', origin=0, output=float64, size=3, structure='random', x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_108_{filter='grey_closing', mode='mirror', origin=0, output=float64, size=4, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_109_{filter='grey_closing', mode='mirror', origin=0, output=float64, size=4, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_110_{filter='grey_closing', mode='mirror', origin=0, output=float64, size=4, structure='random', x_dtype=int32}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_111_{filter='grey_closing', mode='mirror', origin=0, output=float64, size=4, structure='random', x_dtype=float32}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_112_{filter='grey_closing', mode='mirror', origin=None, output=None, size=3, structure=None, x_dtype=int32}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_113_{filter='grey_closing', mode='mirror', origin=None, output=None, size=3, structure=None, x_dtype=float32}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_114_{filter='grey_closing', mode='mirror', origin=None, output=None, size=3, structure='random', x_dtype=int32}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_115_{filter='grey_closing', mode='mirror', origin=None, output=None, size=3, structure='random', x_dtype=float32}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_116_{filter='grey_closing', mode='mirror', origin=None, output=None, size=4, structure=None, x_dtype=int32}] | 3.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_117_{filter='grey_closing', mode='mirror', origin=None, output=None, size=4, structure=None, x_dtype=float32}] | 3.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_118_{filter='grey_closing', mode='mirror', origin=None, output=None, size=4, structure='random', x_dtype=int32}] | 1.67 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_119_{filter='grey_closing', mode='mirror', origin=None, output=None, size=4, structure='random', x_dtype=float32}] | 1.66 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_120_{filter='grey_closing', mode='mirror', origin=None, output=float64, size=3, structure=None, x_dtype=int32}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_121_{filter='grey_closing', mode='mirror', origin=None, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_122_{filter='grey_closing', mode='mirror', origin=None, output=float64, size=3, structure='random', x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_123_{filter='grey_closing', mode='mirror', origin=None, output=float64, size=3, structure='random', x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_124_{filter='grey_closing', mode='mirror', origin=None, output=float64, size=4, structure=None, x_dtype=int32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_125_{filter='grey_closing', mode='mirror', origin=None, output=float64, size=4, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_126_{filter='grey_closing', mode='mirror', origin=None, output=float64, size=4, structure='random', x_dtype=int32}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_127_{filter='grey_closing', mode='mirror', origin=None, output=float64, size=4, structure='random', x_dtype=float32}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_128_{filter='grey_closing', mode='wrap', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_129_{filter='grey_closing', mode='wrap', origin=0, output=None, size=3, structure=None, x_dtype=float32}] | 3.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_130_{filter='grey_closing', mode='wrap', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_131_{filter='grey_closing', mode='wrap', origin=0, output=None, size=3, structure='random', x_dtype=float32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_132_{filter='grey_closing', mode='wrap', origin=0, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_133_{filter='grey_closing', mode='wrap', origin=0, output=None, size=4, structure=None, x_dtype=float32}] | 3.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_134_{filter='grey_closing', mode='wrap', origin=0, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_135_{filter='grey_closing', mode='wrap', origin=0, output=None, size=4, structure='random', x_dtype=float32}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_136_{filter='grey_closing', mode='wrap', origin=0, output=float64, size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_137_{filter='grey_closing', mode='wrap', origin=0, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_138_{filter='grey_closing', mode='wrap', origin=0, output=float64, size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_139_{filter='grey_closing', mode='wrap', origin=0, output=float64, size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_140_{filter='grey_closing', mode='wrap', origin=0, output=float64, size=4, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_141_{filter='grey_closing', mode='wrap', origin=0, output=float64, size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_142_{filter='grey_closing', mode='wrap', origin=0, output=float64, size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_143_{filter='grey_closing', mode='wrap', origin=0, output=float64, size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_144_{filter='grey_closing', mode='wrap', origin=None, output=None, size=3, structure=None, x_dtype=int32}] | 3.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_145_{filter='grey_closing', mode='wrap', origin=None, output=None, size=3, structure=None, x_dtype=float32}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_146_{filter='grey_closing', mode='wrap', origin=None, output=None, size=3, structure='random', x_dtype=int32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_147_{filter='grey_closing', mode='wrap', origin=None, output=None, size=3, structure='random', x_dtype=float32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_148_{filter='grey_closing', mode='wrap', origin=None, output=None, size=4, structure=None, x_dtype=int32}] | 3.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_149_{filter='grey_closing', mode='wrap', origin=None, output=None, size=4, structure=None, x_dtype=float32}] | 3.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_150_{filter='grey_closing', mode='wrap', origin=None, output=None, size=4, structure='random', x_dtype=int32}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_151_{filter='grey_closing', mode='wrap', origin=None, output=None, size=4, structure='random', x_dtype=float32}] | 1.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_152_{filter='grey_closing', mode='wrap', origin=None, output=float64, size=3, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_153_{filter='grey_closing', mode='wrap', origin=None, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_154_{filter='grey_closing', mode='wrap', origin=None, output=float64, size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_155_{filter='grey_closing', mode='wrap', origin=None, output=float64, size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_156_{filter='grey_closing', mode='wrap', origin=None, output=float64, size=4, structure=None, x_dtype=int32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_157_{filter='grey_closing', mode='wrap', origin=None, output=float64, size=4, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_158_{filter='grey_closing', mode='wrap', origin=None, output=float64, size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_159_{filter='grey_closing', mode='wrap', origin=None, output=float64, size=4, structure='random', x_dtype=float32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_160_{filter='grey_opening', mode='reflect', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_161_{filter='grey_opening', mode='reflect', origin=0, output=None, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_162_{filter='grey_opening', mode='reflect', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_163_{filter='grey_opening', mode='reflect', origin=0, output=None, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_164_{filter='grey_opening', mode='reflect', origin=0, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_165_{filter='grey_opening', mode='reflect', origin=0, output=None, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_166_{filter='grey_opening', mode='reflect', origin=0, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_167_{filter='grey_opening', mode='reflect', origin=0, output=None, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_168_{filter='grey_opening', mode='reflect', origin=0, output=float64, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_169_{filter='grey_opening', mode='reflect', origin=0, output=float64, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_170_{filter='grey_opening', mode='reflect', origin=0, output=float64, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_171_{filter='grey_opening', mode='reflect', origin=0, output=float64, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_172_{filter='grey_opening', mode='reflect', origin=0, output=float64, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_173_{filter='grey_opening', mode='reflect', origin=0, output=float64, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_174_{filter='grey_opening', mode='reflect', origin=0, output=float64, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_175_{filter='grey_opening', mode='reflect', origin=0, output=float64, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_176_{filter='grey_opening', mode='reflect', origin=None, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_177_{filter='grey_opening', mode='reflect', origin=None, output=None, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_178_{filter='grey_opening', mode='reflect', origin=None, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_179_{filter='grey_opening', mode='reflect', origin=None, output=None, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_180_{filter='grey_opening', mode='reflect', origin=None, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_181_{filter='grey_opening', mode='reflect', origin=None, output=None, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_182_{filter='grey_opening', mode='reflect', origin=None, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_183_{filter='grey_opening', mode='reflect', origin=None, output=None, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_184_{filter='grey_opening', mode='reflect', origin=None, output=float64, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_185_{filter='grey_opening', mode='reflect', origin=None, output=float64, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_186_{filter='grey_opening', mode='reflect', origin=None, output=float64, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_187_{filter='grey_opening', mode='reflect', origin=None, output=float64, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_188_{filter='grey_opening', mode='reflect', origin=None, output=float64, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_189_{filter='grey_opening', mode='reflect', origin=None, output=float64, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_190_{filter='grey_opening', mode='reflect', origin=None, output=float64, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_191_{filter='grey_opening', mode='reflect', origin=None, output=float64, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_192_{filter='grey_opening', mode='constant', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_193_{filter='grey_opening', mode='constant', origin=0, output=None, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_194_{filter='grey_opening', mode='constant', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_195_{filter='grey_opening', mode='constant', origin=0, output=None, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_196_{filter='grey_opening', mode='constant', origin=0, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_197_{filter='grey_opening', mode='constant', origin=0, output=None, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_198_{filter='grey_opening', mode='constant', origin=0, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_199_{filter='grey_opening', mode='constant', origin=0, output=None, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_200_{filter='grey_opening', mode='constant', origin=0, output=float64, size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_201_{filter='grey_opening', mode='constant', origin=0, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_202_{filter='grey_opening', mode='constant', origin=0, output=float64, size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_203_{filter='grey_opening', mode='constant', origin=0, output=float64, size=3, structure='random', x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_204_{filter='grey_opening', mode='constant', origin=0, output=float64, size=4, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_205_{filter='grey_opening', mode='constant', origin=0, output=float64, size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_206_{filter='grey_opening', mode='constant', origin=0, output=float64, size=4, structure='random', x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_207_{filter='grey_opening', mode='constant', origin=0, output=float64, size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_208_{filter='grey_opening', mode='constant', origin=None, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_209_{filter='grey_opening', mode='constant', origin=None, output=None, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_210_{filter='grey_opening', mode='constant', origin=None, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_211_{filter='grey_opening', mode='constant', origin=None, output=None, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_212_{filter='grey_opening', mode='constant', origin=None, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_213_{filter='grey_opening', mode='constant', origin=None, output=None, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_214_{filter='grey_opening', mode='constant', origin=None, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_215_{filter='grey_opening', mode='constant', origin=None, output=None, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_216_{filter='grey_opening', mode='constant', origin=None, output=float64, size=3, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_217_{filter='grey_opening', mode='constant', origin=None, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_218_{filter='grey_opening', mode='constant', origin=None, output=float64, size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_219_{filter='grey_opening', mode='constant', origin=None, output=float64, size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_220_{filter='grey_opening', mode='constant', origin=None, output=float64, size=4, structure=None, x_dtype=int32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_221_{filter='grey_opening', mode='constant', origin=None, output=float64, size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_222_{filter='grey_opening', mode='constant', origin=None, output=float64, size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_223_{filter='grey_opening', mode='constant', origin=None, output=float64, size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_224_{filter='grey_opening', mode='nearest', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_225_{filter='grey_opening', mode='nearest', origin=0, output=None, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_226_{filter='grey_opening', mode='nearest', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_227_{filter='grey_opening', mode='nearest', origin=0, output=None, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_228_{filter='grey_opening', mode='nearest', origin=0, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_229_{filter='grey_opening', mode='nearest', origin=0, output=None, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_230_{filter='grey_opening', mode='nearest', origin=0, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_231_{filter='grey_opening', mode='nearest', origin=0, output=None, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_232_{filter='grey_opening', mode='nearest', origin=0, output=float64, size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_233_{filter='grey_opening', mode='nearest', origin=0, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_234_{filter='grey_opening', mode='nearest', origin=0, output=float64, size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_235_{filter='grey_opening', mode='nearest', origin=0, output=float64, size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_236_{filter='grey_opening', mode='nearest', origin=0, output=float64, size=4, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_237_{filter='grey_opening', mode='nearest', origin=0, output=float64, size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_238_{filter='grey_opening', mode='nearest', origin=0, output=float64, size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_239_{filter='grey_opening', mode='nearest', origin=0, output=float64, size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_240_{filter='grey_opening', mode='nearest', origin=None, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_241_{filter='grey_opening', mode='nearest', origin=None, output=None, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_242_{filter='grey_opening', mode='nearest', origin=None, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_243_{filter='grey_opening', mode='nearest', origin=None, output=None, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_244_{filter='grey_opening', mode='nearest', origin=None, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_245_{filter='grey_opening', mode='nearest', origin=None, output=None, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_246_{filter='grey_opening', mode='nearest', origin=None, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_247_{filter='grey_opening', mode='nearest', origin=None, output=None, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_248_{filter='grey_opening', mode='nearest', origin=None, output=float64, size=3, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_249_{filter='grey_opening', mode='nearest', origin=None, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_250_{filter='grey_opening', mode='nearest', origin=None, output=float64, size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_251_{filter='grey_opening', mode='nearest', origin=None, output=float64, size=3, structure='random', x_dtype=float32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_252_{filter='grey_opening', mode='nearest', origin=None, output=float64, size=4, structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_253_{filter='grey_opening', mode='nearest', origin=None, output=float64, size=4, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_254_{filter='grey_opening', mode='nearest', origin=None, output=float64, size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_255_{filter='grey_opening', mode='nearest', origin=None, output=float64, size=4, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_256_{filter='grey_opening', mode='mirror', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_257_{filter='grey_opening', mode='mirror', origin=0, output=None, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_258_{filter='grey_opening', mode='mirror', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_259_{filter='grey_opening', mode='mirror', origin=0, output=None, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_260_{filter='grey_opening', mode='mirror', origin=0, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_261_{filter='grey_opening', mode='mirror', origin=0, output=None, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_262_{filter='grey_opening', mode='mirror', origin=0, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_263_{filter='grey_opening', mode='mirror', origin=0, output=None, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_264_{filter='grey_opening', mode='mirror', origin=0, output=float64, size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_265_{filter='grey_opening', mode='mirror', origin=0, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_266_{filter='grey_opening', mode='mirror', origin=0, output=float64, size=3, structure='random', x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_267_{filter='grey_opening', mode='mirror', origin=0, output=float64, size=3, structure='random', x_dtype=float32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_268_{filter='grey_opening', mode='mirror', origin=0, output=float64, size=4, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_269_{filter='grey_opening', mode='mirror', origin=0, output=float64, size=4, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_270_{filter='grey_opening', mode='mirror', origin=0, output=float64, size=4, structure='random', x_dtype=int32}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_271_{filter='grey_opening', mode='mirror', origin=0, output=float64, size=4, structure='random', x_dtype=float32}] | 0.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_272_{filter='grey_opening', mode='mirror', origin=None, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_273_{filter='grey_opening', mode='mirror', origin=None, output=None, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_274_{filter='grey_opening', mode='mirror', origin=None, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_275_{filter='grey_opening', mode='mirror', origin=None, output=None, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_276_{filter='grey_opening', mode='mirror', origin=None, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_277_{filter='grey_opening', mode='mirror', origin=None, output=None, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_278_{filter='grey_opening', mode='mirror', origin=None, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_279_{filter='grey_opening', mode='mirror', origin=None, output=None, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_280_{filter='grey_opening', mode='mirror', origin=None, output=float64, size=3, structure=None, x_dtype=int32}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_281_{filter='grey_opening', mode='mirror', origin=None, output=float64, size=3, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_282_{filter='grey_opening', mode='mirror', origin=None, output=float64, size=3, structure='random', x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_283_{filter='grey_opening', mode='mirror', origin=None, output=float64, size=3, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_284_{filter='grey_opening', mode='mirror', origin=None, output=float64, size=4, structure=None, x_dtype=int32}] | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_285_{filter='grey_opening', mode='mirror', origin=None, output=float64, size=4, structure=None, x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_286_{filter='grey_opening', mode='mirror', origin=None, output=float64, size=4, structure='random', x_dtype=int32}] | 0.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_287_{filter='grey_opening', mode='mirror', origin=None, output=float64, size=4, structure='random', x_dtype=float32}] | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_288_{filter='grey_opening', mode='wrap', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_289_{filter='grey_opening', mode='wrap', origin=0, output=None, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_290_{filter='grey_opening', mode='wrap', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_291_{filter='grey_opening', mode='wrap', origin=0, output=None, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_292_{filter='grey_opening', mode='wrap', origin=0, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_293_{filter='grey_opening', mode='wrap', origin=0, output=None, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_294_{filter='grey_opening', mode='wrap', origin=0, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_295_{filter='grey_opening', mode='wrap', origin=0, output=None, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_296_{filter='grey_opening', mode='wrap', origin=0, output=float64, size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_297_{filter='grey_opening', mode='wrap', origin=0, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_298_{filter='grey_opening', mode='wrap', origin=0, output=float64, size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_299_{filter='grey_opening', mode='wrap', origin=0, output=float64, size=3, structure='random', x_dtype=float32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_300_{filter='grey_opening', mode='wrap', origin=0, output=float64, size=4, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_301_{filter='grey_opening', mode='wrap', origin=0, output=float64, size=4, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_302_{filter='grey_opening', mode='wrap', origin=0, output=float64, size=4, structure='random', x_dtype=int32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_303_{filter='grey_opening', mode='wrap', origin=0, output=float64, size=4, structure='random', x_dtype=float32}] | 0.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_304_{filter='grey_opening', mode='wrap', origin=None, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_305_{filter='grey_opening', mode='wrap', origin=None, output=None, size=3, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_306_{filter='grey_opening', mode='wrap', origin=None, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_307_{filter='grey_opening', mode='wrap', origin=None, output=None, size=3, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_308_{filter='grey_opening', mode='wrap', origin=None, output=None, size=4, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_309_{filter='grey_opening', mode='wrap', origin=None, output=None, size=4, structure=None, x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_310_{filter='grey_opening', mode='wrap', origin=None, output=None, size=4, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_311_{filter='grey_opening', mode='wrap', origin=None, output=None, size=4, structure='random', x_dtype=float32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_312_{filter='grey_opening', mode='wrap', origin=None, output=float64, size=3, structure=None, x_dtype=int32}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_313_{filter='grey_opening', mode='wrap', origin=None, output=float64, size=3, structure=None, x_dtype=float32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_314_{filter='grey_opening', mode='wrap', origin=None, output=float64, size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_315_{filter='grey_opening', mode='wrap', origin=None, output=float64, size=3, structure='random', x_dtype=float32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_316_{filter='grey_opening', mode='wrap', origin=None, output=float64, size=4, structure=None, x_dtype=int32}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_317_{filter='grey_opening', mode='wrap', origin=None, output=float64, size=4, structure=None, x_dtype=float32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_318_{filter='grey_opening', mode='wrap', origin=None, output=float64, size=4, structure='random', x_dtype=int32}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestGreyClosingAndOpening::test_grey_closing_and_opening[_param_319_{filter='grey_opening', mode='wrap', origin=None, output=float64, size=4, structure='random', x_dtype=float32}] | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_0_{filter='morphological_gradient', footprint=None, mode='reflect', origin=-1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 1.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_1_{filter='morphological_gradient', footprint=None, mode='reflect', origin=-1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_2_{filter='morphological_gradient', footprint=None, mode='reflect', origin=-1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_3_{filter='morphological_gradient', footprint=None, mode='reflect', origin=-1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_4_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_5_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_6_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_7_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_8_{filter='morphological_gradient', footprint=None, mode='reflect', origin=1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_9_{filter='morphological_gradient', footprint=None, mode='reflect', origin=1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_10_{filter='morphological_gradient', footprint=None, mode='reflect', origin=1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_11_{filter='morphological_gradient', footprint=None, mode='reflect', origin=1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_12_{filter='morphological_gradient', footprint=None, mode='constant', origin=-1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_13_{filter='morphological_gradient', footprint=None, mode='constant', origin=-1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_14_{filter='morphological_gradient', footprint=None, mode='constant', origin=-1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_15_{filter='morphological_gradient', footprint=None, mode='constant', origin=-1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_16_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_17_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_18_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_19_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_20_{filter='morphological_gradient', footprint=None, mode='constant', origin=1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 1.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_21_{filter='morphological_gradient', footprint=None, mode='constant', origin=1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_22_{filter='morphological_gradient', footprint=None, mode='constant', origin=1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 1.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_23_{filter='morphological_gradient', footprint=None, mode='constant', origin=1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_24_{filter='morphological_gradient', footprint='random', mode='reflect', origin=-1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_25_{filter='morphological_gradient', footprint='random', mode='reflect', origin=-1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_26_{filter='morphological_gradient', footprint='random', mode='reflect', origin=-1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_27_{filter='morphological_gradient', footprint='random', mode='reflect', origin=-1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_28_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_29_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_30_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_31_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_32_{filter='morphological_gradient', footprint='random', mode='reflect', origin=1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_33_{filter='morphological_gradient', footprint='random', mode='reflect', origin=1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_34_{filter='morphological_gradient', footprint='random', mode='reflect', origin=1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_35_{filter='morphological_gradient', footprint='random', mode='reflect', origin=1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_36_{filter='morphological_gradient', footprint='random', mode='constant', origin=-1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_37_{filter='morphological_gradient', footprint='random', mode='constant', origin=-1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_38_{filter='morphological_gradient', footprint='random', mode='constant', origin=-1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_39_{filter='morphological_gradient', footprint='random', mode='constant', origin=-1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 1.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_40_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_41_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_42_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 1.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_43_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 1.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_44_{filter='morphological_gradient', footprint='random', mode='constant', origin=1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 1.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_45_{filter='morphological_gradient', footprint='random', mode='constant', origin=1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_46_{filter='morphological_gradient', footprint='random', mode='constant', origin=1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 1.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_47_{filter='morphological_gradient', footprint='random', mode='constant', origin=1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 1.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_48_{filter='morphological_laplace', footprint=None, mode='reflect', origin=-1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_49_{filter='morphological_laplace', footprint=None, mode='reflect', origin=-1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_50_{filter='morphological_laplace', footprint=None, mode='reflect', origin=-1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_51_{filter='morphological_laplace', footprint=None, mode='reflect', origin=-1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_52_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_53_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_54_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_55_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_56_{filter='morphological_laplace', footprint=None, mode='reflect', origin=1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_57_{filter='morphological_laplace', footprint=None, mode='reflect', origin=1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_58_{filter='morphological_laplace', footprint=None, mode='reflect', origin=1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_59_{filter='morphological_laplace', footprint=None, mode='reflect', origin=1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_60_{filter='morphological_laplace', footprint=None, mode='constant', origin=-1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_61_{filter='morphological_laplace', footprint=None, mode='constant', origin=-1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_62_{filter='morphological_laplace', footprint=None, mode='constant', origin=-1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_63_{filter='morphological_laplace', footprint=None, mode='constant', origin=-1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_64_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_65_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_66_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_67_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_68_{filter='morphological_laplace', footprint=None, mode='constant', origin=1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_69_{filter='morphological_laplace', footprint=None, mode='constant', origin=1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_70_{filter='morphological_laplace', footprint=None, mode='constant', origin=1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_71_{filter='morphological_laplace', footprint=None, mode='constant', origin=1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_72_{filter='morphological_laplace', footprint='random', mode='reflect', origin=-1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_73_{filter='morphological_laplace', footprint='random', mode='reflect', origin=-1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_74_{filter='morphological_laplace', footprint='random', mode='reflect', origin=-1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_75_{filter='morphological_laplace', footprint='random', mode='reflect', origin=-1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_76_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_77_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_78_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_79_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_80_{filter='morphological_laplace', footprint='random', mode='reflect', origin=1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_81_{filter='morphological_laplace', footprint='random', mode='reflect', origin=1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_82_{filter='morphological_laplace', footprint='random', mode='reflect', origin=1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_83_{filter='morphological_laplace', footprint='random', mode='reflect', origin=1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_84_{filter='morphological_laplace', footprint='random', mode='constant', origin=-1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_85_{filter='morphological_laplace', footprint='random', mode='constant', origin=-1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_86_{filter='morphological_laplace', footprint='random', mode='constant', origin=-1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_87_{filter='morphological_laplace', footprint='random', mode='constant', origin=-1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_88_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_89_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_90_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_91_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_92_{filter='morphological_laplace', footprint='random', mode='constant', origin=1, output=None, size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_93_{filter='morphological_laplace', footprint='random', mode='constant', origin=1, output=None, size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_94_{filter='morphological_laplace', footprint='random', mode='constant', origin=1, output=None, size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_95_{filter='morphological_laplace', footprint='random', mode='constant', origin=1, output=None, size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_96_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_97_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_98_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_99_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_100_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_101_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_102_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_103_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_104_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_105_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_106_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_107_{filter='morphological_gradient', footprint=None, mode='reflect', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_108_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_109_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_110_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_111_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_112_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_113_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_114_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_115_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_116_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_117_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_118_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_119_{filter='morphological_gradient', footprint=None, mode='constant', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_120_{filter='morphological_gradient', footprint=None, mode='nearest', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_121_{filter='morphological_gradient', footprint=None, mode='nearest', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_122_{filter='morphological_gradient', footprint=None, mode='nearest', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_123_{filter='morphological_gradient', footprint=None, mode='nearest', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_124_{filter='morphological_gradient', footprint=None, mode='nearest', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_125_{filter='morphological_gradient', footprint=None, mode='nearest', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_126_{filter='morphological_gradient', footprint=None, mode='nearest', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_127_{filter='morphological_gradient', footprint=None, mode='nearest', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_128_{filter='morphological_gradient', footprint=None, mode='nearest', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_129_{filter='morphological_gradient', footprint=None, mode='nearest', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_130_{filter='morphological_gradient', footprint=None, mode='nearest', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_131_{filter='morphological_gradient', footprint=None, mode='nearest', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_132_{filter='morphological_gradient', footprint=None, mode='mirror', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_133_{filter='morphological_gradient', footprint=None, mode='mirror', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_134_{filter='morphological_gradient', footprint=None, mode='mirror', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_135_{filter='morphological_gradient', footprint=None, mode='mirror', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_136_{filter='morphological_gradient', footprint=None, mode='mirror', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_137_{filter='morphological_gradient', footprint=None, mode='mirror', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_138_{filter='morphological_gradient', footprint=None, mode='mirror', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_139_{filter='morphological_gradient', footprint=None, mode='mirror', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_140_{filter='morphological_gradient', footprint=None, mode='mirror', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_141_{filter='morphological_gradient', footprint=None, mode='mirror', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_142_{filter='morphological_gradient', footprint=None, mode='mirror', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_143_{filter='morphological_gradient', footprint=None, mode='mirror', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_144_{filter='morphological_gradient', footprint=None, mode='wrap', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_145_{filter='morphological_gradient', footprint=None, mode='wrap', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_146_{filter='morphological_gradient', footprint=None, mode='wrap', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_147_{filter='morphological_gradient', footprint=None, mode='wrap', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_148_{filter='morphological_gradient', footprint=None, mode='wrap', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_149_{filter='morphological_gradient', footprint=None, mode='wrap', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_150_{filter='morphological_gradient', footprint=None, mode='wrap', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_151_{filter='morphological_gradient', footprint=None, mode='wrap', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_152_{filter='morphological_gradient', footprint=None, mode='wrap', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_153_{filter='morphological_gradient', footprint=None, mode='wrap', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_154_{filter='morphological_gradient', footprint=None, mode='wrap', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_155_{filter='morphological_gradient', footprint=None, mode='wrap', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_156_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_157_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_158_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_159_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_160_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_161_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_162_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_163_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_164_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_165_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_166_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_167_{filter='morphological_gradient', footprint='random', mode='reflect', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_168_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_169_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_170_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_171_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_172_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_173_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_174_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_175_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_176_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_177_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_178_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_179_{filter='morphological_gradient', footprint='random', mode='constant', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_180_{filter='morphological_gradient', footprint='random', mode='nearest', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_181_{filter='morphological_gradient', footprint='random', mode='nearest', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_182_{filter='morphological_gradient', footprint='random', mode='nearest', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_183_{filter='morphological_gradient', footprint='random', mode='nearest', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_184_{filter='morphological_gradient', footprint='random', mode='nearest', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_185_{filter='morphological_gradient', footprint='random', mode='nearest', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_186_{filter='morphological_gradient', footprint='random', mode='nearest', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_187_{filter='morphological_gradient', footprint='random', mode='nearest', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_188_{filter='morphological_gradient', footprint='random', mode='nearest', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_189_{filter='morphological_gradient', footprint='random', mode='nearest', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_190_{filter='morphological_gradient', footprint='random', mode='nearest', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_191_{filter='morphological_gradient', footprint='random', mode='nearest', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_192_{filter='morphological_gradient', footprint='random', mode='mirror', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_193_{filter='morphological_gradient', footprint='random', mode='mirror', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_194_{filter='morphological_gradient', footprint='random', mode='mirror', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_195_{filter='morphological_gradient', footprint='random', mode='mirror', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_196_{filter='morphological_gradient', footprint='random', mode='mirror', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_197_{filter='morphological_gradient', footprint='random', mode='mirror', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_198_{filter='morphological_gradient', footprint='random', mode='mirror', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_199_{filter='morphological_gradient', footprint='random', mode='mirror', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_200_{filter='morphological_gradient', footprint='random', mode='mirror', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_201_{filter='morphological_gradient', footprint='random', mode='mirror', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_202_{filter='morphological_gradient', footprint='random', mode='mirror', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_203_{filter='morphological_gradient', footprint='random', mode='mirror', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_204_{filter='morphological_gradient', footprint='random', mode='wrap', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_205_{filter='morphological_gradient', footprint='random', mode='wrap', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_206_{filter='morphological_gradient', footprint='random', mode='wrap', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_207_{filter='morphological_gradient', footprint='random', mode='wrap', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_208_{filter='morphological_gradient', footprint='random', mode='wrap', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_209_{filter='morphological_gradient', footprint='random', mode='wrap', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_210_{filter='morphological_gradient', footprint='random', mode='wrap', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_211_{filter='morphological_gradient', footprint='random', mode='wrap', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_212_{filter='morphological_gradient', footprint='random', mode='wrap', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_213_{filter='morphological_gradient', footprint='random', mode='wrap', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_214_{filter='morphological_gradient', footprint='random', mode='wrap', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_215_{filter='morphological_gradient', footprint='random', mode='wrap', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_216_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_217_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_218_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_219_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_220_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_221_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_222_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_223_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_224_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_225_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_226_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_227_{filter='morphological_laplace', footprint=None, mode='reflect', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_228_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_229_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_230_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_231_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_232_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_233_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_234_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_235_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_236_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_237_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_238_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_239_{filter='morphological_laplace', footprint=None, mode='constant', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_240_{filter='morphological_laplace', footprint=None, mode='nearest', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_241_{filter='morphological_laplace', footprint=None, mode='nearest', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_242_{filter='morphological_laplace', footprint=None, mode='nearest', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_243_{filter='morphological_laplace', footprint=None, mode='nearest', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_244_{filter='morphological_laplace', footprint=None, mode='nearest', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_245_{filter='morphological_laplace', footprint=None, mode='nearest', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_246_{filter='morphological_laplace', footprint=None, mode='nearest', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_247_{filter='morphological_laplace', footprint=None, mode='nearest', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_248_{filter='morphological_laplace', footprint=None, mode='nearest', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_249_{filter='morphological_laplace', footprint=None, mode='nearest', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_250_{filter='morphological_laplace', footprint=None, mode='nearest', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_251_{filter='morphological_laplace', footprint=None, mode='nearest', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_252_{filter='morphological_laplace', footprint=None, mode='mirror', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_253_{filter='morphological_laplace', footprint=None, mode='mirror', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_254_{filter='morphological_laplace', footprint=None, mode='mirror', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_255_{filter='morphological_laplace', footprint=None, mode='mirror', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_256_{filter='morphological_laplace', footprint=None, mode='mirror', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_257_{filter='morphological_laplace', footprint=None, mode='mirror', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_258_{filter='morphological_laplace', footprint=None, mode='mirror', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_259_{filter='morphological_laplace', footprint=None, mode='mirror', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_260_{filter='morphological_laplace', footprint=None, mode='mirror', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_261_{filter='morphological_laplace', footprint=None, mode='mirror', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_262_{filter='morphological_laplace', footprint=None, mode='mirror', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_263_{filter='morphological_laplace', footprint=None, mode='mirror', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_264_{filter='morphological_laplace', footprint=None, mode='wrap', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_265_{filter='morphological_laplace', footprint=None, mode='wrap', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_266_{filter='morphological_laplace', footprint=None, mode='wrap', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_267_{filter='morphological_laplace', footprint=None, mode='wrap', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_268_{filter='morphological_laplace', footprint=None, mode='wrap', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_269_{filter='morphological_laplace', footprint=None, mode='wrap', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_270_{filter='morphological_laplace', footprint=None, mode='wrap', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_271_{filter='morphological_laplace', footprint=None, mode='wrap', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_272_{filter='morphological_laplace', footprint=None, mode='wrap', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_273_{filter='morphological_laplace', footprint=None, mode='wrap', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_274_{filter='morphological_laplace', footprint=None, mode='wrap', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_275_{filter='morphological_laplace', footprint=None, mode='wrap', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_276_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_277_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_278_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_279_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_280_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_281_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_282_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_283_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_284_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_285_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_286_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_287_{filter='morphological_laplace', footprint='random', mode='reflect', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_288_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_289_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_290_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_291_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_292_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_293_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_294_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_295_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_296_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_297_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_298_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_299_{filter='morphological_laplace', footprint='random', mode='constant', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_300_{filter='morphological_laplace', footprint='random', mode='nearest', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_301_{filter='morphological_laplace', footprint='random', mode='nearest', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_302_{filter='morphological_laplace', footprint='random', mode='nearest', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_303_{filter='morphological_laplace', footprint='random', mode='nearest', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_304_{filter='morphological_laplace', footprint='random', mode='nearest', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_305_{filter='morphological_laplace', footprint='random', mode='nearest', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_306_{filter='morphological_laplace', footprint='random', mode='nearest', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_307_{filter='morphological_laplace', footprint='random', mode='nearest', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_308_{filter='morphological_laplace', footprint='random', mode='nearest', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_309_{filter='morphological_laplace', footprint='random', mode='nearest', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_310_{filter='morphological_laplace', footprint='random', mode='nearest', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_311_{filter='morphological_laplace', footprint='random', mode='nearest', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_312_{filter='morphological_laplace', footprint='random', mode='mirror', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_313_{filter='morphological_laplace', footprint='random', mode='mirror', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_314_{filter='morphological_laplace', footprint='random', mode='mirror', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_315_{filter='morphological_laplace', footprint='random', mode='mirror', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_316_{filter='morphological_laplace', footprint='random', mode='mirror', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_317_{filter='morphological_laplace', footprint='random', mode='mirror', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_318_{filter='morphological_laplace', footprint='random', mode='mirror', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_319_{filter='morphological_laplace', footprint='random', mode='mirror', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_320_{filter='morphological_laplace', footprint='random', mode='mirror', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_321_{filter='morphological_laplace', footprint='random', mode='mirror', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_322_{filter='morphological_laplace', footprint='random', mode='mirror', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_323_{filter='morphological_laplace', footprint='random', mode='mirror', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_324_{filter='morphological_laplace', footprint='random', mode='wrap', origin=0, output=None, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_325_{filter='morphological_laplace', footprint='random', mode='wrap', origin=0, output=None, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_326_{filter='morphological_laplace', footprint='random', mode='wrap', origin=0, output=None, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_327_{filter='morphological_laplace', footprint='random', mode='wrap', origin=0, output=None, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_328_{filter='morphological_laplace', footprint='random', mode='wrap', origin=0, output=float32, size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_329_{filter='morphological_laplace', footprint='random', mode='wrap', origin=0, output=float32, size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_330_{filter='morphological_laplace', footprint='random', mode='wrap', origin=0, output=float32, size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_331_{filter='morphological_laplace', footprint='random', mode='wrap', origin=0, output=float32, size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_332_{filter='morphological_laplace', footprint='random', mode='wrap', origin=0, output='zeros', size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_333_{filter='morphological_laplace', footprint='random', mode='wrap', origin=0, output='zeros', size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_334_{filter='morphological_laplace', footprint='random', mode='wrap', origin=0, output='zeros', size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestMorphologicalGradientAndLaplace::test_morphological_gradient_and_laplace[_param_335_{filter='morphological_laplace', footprint='random', mode='wrap', origin=0, output='zeros', size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_0_{filter='white_tophat', footprint=None, mode='reflect', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_1_{filter='white_tophat', footprint=None, mode='reflect', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_2_{filter='white_tophat', footprint=None, mode='reflect', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_3_{filter='white_tophat', footprint=None, mode='reflect', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_4_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_5_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_6_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_7_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_8_{filter='white_tophat', footprint=None, mode='reflect', origin=1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_9_{filter='white_tophat', footprint=None, mode='reflect', origin=1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_10_{filter='white_tophat', footprint=None, mode='reflect', origin=1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_11_{filter='white_tophat', footprint=None, mode='reflect', origin=1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_12_{filter='white_tophat', footprint=None, mode='constant', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_13_{filter='white_tophat', footprint=None, mode='constant', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_14_{filter='white_tophat', footprint=None, mode='constant', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_15_{filter='white_tophat', footprint=None, mode='constant', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_16_{filter='white_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_17_{filter='white_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_18_{filter='white_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_19_{filter='white_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_20_{filter='white_tophat', footprint=None, mode='constant', origin=1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_21_{filter='white_tophat', footprint=None, mode='constant', origin=1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_22_{filter='white_tophat', footprint=None, mode='constant', origin=1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_23_{filter='white_tophat', footprint=None, mode='constant', origin=1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_24_{filter='white_tophat', footprint='random', mode='reflect', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_25_{filter='white_tophat', footprint='random', mode='reflect', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_26_{filter='white_tophat', footprint='random', mode='reflect', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_27_{filter='white_tophat', footprint='random', mode='reflect', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_28_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_29_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_30_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_31_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_32_{filter='white_tophat', footprint='random', mode='reflect', origin=1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_33_{filter='white_tophat', footprint='random', mode='reflect', origin=1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_34_{filter='white_tophat', footprint='random', mode='reflect', origin=1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_35_{filter='white_tophat', footprint='random', mode='reflect', origin=1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_36_{filter='white_tophat', footprint='random', mode='constant', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_37_{filter='white_tophat', footprint='random', mode='constant', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_38_{filter='white_tophat', footprint='random', mode='constant', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_39_{filter='white_tophat', footprint='random', mode='constant', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_40_{filter='white_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_41_{filter='white_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_42_{filter='white_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_43_{filter='white_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_44_{filter='white_tophat', footprint='random', mode='constant', origin=1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_45_{filter='white_tophat', footprint='random', mode='constant', origin=1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_46_{filter='white_tophat', footprint='random', mode='constant', origin=1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_47_{filter='white_tophat', footprint='random', mode='constant', origin=1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_48_{filter='black_tophat', footprint=None, mode='reflect', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_49_{filter='black_tophat', footprint=None, mode='reflect', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_50_{filter='black_tophat', footprint=None, mode='reflect', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_51_{filter='black_tophat', footprint=None, mode='reflect', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_52_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_53_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_54_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_55_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_56_{filter='black_tophat', footprint=None, mode='reflect', origin=1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_57_{filter='black_tophat', footprint=None, mode='reflect', origin=1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_58_{filter='black_tophat', footprint=None, mode='reflect', origin=1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_59_{filter='black_tophat', footprint=None, mode='reflect', origin=1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_60_{filter='black_tophat', footprint=None, mode='constant', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_61_{filter='black_tophat', footprint=None, mode='constant', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_62_{filter='black_tophat', footprint=None, mode='constant', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_63_{filter='black_tophat', footprint=None, mode='constant', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_64_{filter='black_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_65_{filter='black_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_66_{filter='black_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_67_{filter='black_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_68_{filter='black_tophat', footprint=None, mode='constant', origin=1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_69_{filter='black_tophat', footprint=None, mode='constant', origin=1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_70_{filter='black_tophat', footprint=None, mode='constant', origin=1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_71_{filter='black_tophat', footprint=None, mode='constant', origin=1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_72_{filter='black_tophat', footprint='random', mode='reflect', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_73_{filter='black_tophat', footprint='random', mode='reflect', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_74_{filter='black_tophat', footprint='random', mode='reflect', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_75_{filter='black_tophat', footprint='random', mode='reflect', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_76_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_77_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_78_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_79_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_80_{filter='black_tophat', footprint='random', mode='reflect', origin=1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_81_{filter='black_tophat', footprint='random', mode='reflect', origin=1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_82_{filter='black_tophat', footprint='random', mode='reflect', origin=1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_83_{filter='black_tophat', footprint='random', mode='reflect', origin=1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_84_{filter='black_tophat', footprint='random', mode='constant', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_85_{filter='black_tophat', footprint='random', mode='constant', origin=-1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_86_{filter='black_tophat', footprint='random', mode='constant', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_87_{filter='black_tophat', footprint='random', mode='constant', origin=-1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_88_{filter='black_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_89_{filter='black_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_90_{filter='black_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_91_{filter='black_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_92_{filter='black_tophat', footprint='random', mode='constant', origin=1, output=None, shape=(5, 7), size=(3, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_93_{filter='black_tophat', footprint='random', mode='constant', origin=1, output=None, shape=(5, 7), size=(3, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_94_{filter='black_tophat', footprint='random', mode='constant', origin=1, output=None, shape=(5, 7), size=(4, 3), structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_95_{filter='black_tophat', footprint='random', mode='constant', origin=1, output=None, shape=(5, 7), size=(4, 3), structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_96_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_97_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_98_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_99_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_100_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_101_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_102_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_103_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_104_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_105_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_106_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_107_{filter='white_tophat', footprint=None, mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_108_{filter='white_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_109_{filter='white_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_110_{filter='white_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_111_{filter='white_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_112_{filter='white_tophat', footprint=None, mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_113_{filter='white_tophat', footprint=None, mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_114_{filter='white_tophat', footprint=None, mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_115_{filter='white_tophat', footprint=None, mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_116_{filter='white_tophat', footprint=None, mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_117_{filter='white_tophat', footprint=None, mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_118_{filter='white_tophat', footprint=None, mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_119_{filter='white_tophat', footprint=None, mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_120_{filter='white_tophat', footprint=None, mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_121_{filter='white_tophat', footprint=None, mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_122_{filter='white_tophat', footprint=None, mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_123_{filter='white_tophat', footprint=None, mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_124_{filter='white_tophat', footprint=None, mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_125_{filter='white_tophat', footprint=None, mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_126_{filter='white_tophat', footprint=None, mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_127_{filter='white_tophat', footprint=None, mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_128_{filter='white_tophat', footprint=None, mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_129_{filter='white_tophat', footprint=None, mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_130_{filter='white_tophat', footprint=None, mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_131_{filter='white_tophat', footprint=None, mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_132_{filter='white_tophat', footprint=None, mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_133_{filter='white_tophat', footprint=None, mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_134_{filter='white_tophat', footprint=None, mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_135_{filter='white_tophat', footprint=None, mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_136_{filter='white_tophat', footprint=None, mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_137_{filter='white_tophat', footprint=None, mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_138_{filter='white_tophat', footprint=None, mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_139_{filter='white_tophat', footprint=None, mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_140_{filter='white_tophat', footprint=None, mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_141_{filter='white_tophat', footprint=None, mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_142_{filter='white_tophat', footprint=None, mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_143_{filter='white_tophat', footprint=None, mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_144_{filter='white_tophat', footprint=None, mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_145_{filter='white_tophat', footprint=None, mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_146_{filter='white_tophat', footprint=None, mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_147_{filter='white_tophat', footprint=None, mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_148_{filter='white_tophat', footprint=None, mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_149_{filter='white_tophat', footprint=None, mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_150_{filter='white_tophat', footprint=None, mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_151_{filter='white_tophat', footprint=None, mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_152_{filter='white_tophat', footprint=None, mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_153_{filter='white_tophat', footprint=None, mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_154_{filter='white_tophat', footprint=None, mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_155_{filter='white_tophat', footprint=None, mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_156_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_157_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_158_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_159_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_160_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_161_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_162_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_163_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_164_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_165_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_166_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_167_{filter='white_tophat', footprint='random', mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_168_{filter='white_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_169_{filter='white_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_170_{filter='white_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_171_{filter='white_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_172_{filter='white_tophat', footprint='random', mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_173_{filter='white_tophat', footprint='random', mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_174_{filter='white_tophat', footprint='random', mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_175_{filter='white_tophat', footprint='random', mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_176_{filter='white_tophat', footprint='random', mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_177_{filter='white_tophat', footprint='random', mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_178_{filter='white_tophat', footprint='random', mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_179_{filter='white_tophat', footprint='random', mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_180_{filter='white_tophat', footprint='random', mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_181_{filter='white_tophat', footprint='random', mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_182_{filter='white_tophat', footprint='random', mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_183_{filter='white_tophat', footprint='random', mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_184_{filter='white_tophat', footprint='random', mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_185_{filter='white_tophat', footprint='random', mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_186_{filter='white_tophat', footprint='random', mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_187_{filter='white_tophat', footprint='random', mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_188_{filter='white_tophat', footprint='random', mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_189_{filter='white_tophat', footprint='random', mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_190_{filter='white_tophat', footprint='random', mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_191_{filter='white_tophat', footprint='random', mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_192_{filter='white_tophat', footprint='random', mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_193_{filter='white_tophat', footprint='random', mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_194_{filter='white_tophat', footprint='random', mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_195_{filter='white_tophat', footprint='random', mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_196_{filter='white_tophat', footprint='random', mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_197_{filter='white_tophat', footprint='random', mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_198_{filter='white_tophat', footprint='random', mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_199_{filter='white_tophat', footprint='random', mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_200_{filter='white_tophat', footprint='random', mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_201_{filter='white_tophat', footprint='random', mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_202_{filter='white_tophat', footprint='random', mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_203_{filter='white_tophat', footprint='random', mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_204_{filter='white_tophat', footprint='random', mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_205_{filter='white_tophat', footprint='random', mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_206_{filter='white_tophat', footprint='random', mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_207_{filter='white_tophat', footprint='random', mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_208_{filter='white_tophat', footprint='random', mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_209_{filter='white_tophat', footprint='random', mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_210_{filter='white_tophat', footprint='random', mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_211_{filter='white_tophat', footprint='random', mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_212_{filter='white_tophat', footprint='random', mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_213_{filter='white_tophat', footprint='random', mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_214_{filter='white_tophat', footprint='random', mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_215_{filter='white_tophat', footprint='random', mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_216_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_217_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_218_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_219_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_220_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_221_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 1.47 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_222_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_223_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_224_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_225_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_226_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_227_{filter='black_tophat', footprint=None, mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_228_{filter='black_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_229_{filter='black_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_230_{filter='black_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_231_{filter='black_tophat', footprint=None, mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_232_{filter='black_tophat', footprint=None, mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_233_{filter='black_tophat', footprint=None, mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_234_{filter='black_tophat', footprint=None, mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_235_{filter='black_tophat', footprint=None, mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_236_{filter='black_tophat', footprint=None, mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_237_{filter='black_tophat', footprint=None, mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_238_{filter='black_tophat', footprint=None, mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_239_{filter='black_tophat', footprint=None, mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_240_{filter='black_tophat', footprint=None, mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_241_{filter='black_tophat', footprint=None, mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_242_{filter='black_tophat', footprint=None, mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_243_{filter='black_tophat', footprint=None, mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_244_{filter='black_tophat', footprint=None, mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_245_{filter='black_tophat', footprint=None, mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_246_{filter='black_tophat', footprint=None, mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_247_{filter='black_tophat', footprint=None, mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_248_{filter='black_tophat', footprint=None, mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_249_{filter='black_tophat', footprint=None, mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_250_{filter='black_tophat', footprint=None, mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_251_{filter='black_tophat', footprint=None, mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_252_{filter='black_tophat', footprint=None, mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_253_{filter='black_tophat', footprint=None, mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_254_{filter='black_tophat', footprint=None, mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_255_{filter='black_tophat', footprint=None, mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_256_{filter='black_tophat', footprint=None, mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_257_{filter='black_tophat', footprint=None, mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_258_{filter='black_tophat', footprint=None, mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_259_{filter='black_tophat', footprint=None, mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_260_{filter='black_tophat', footprint=None, mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_261_{filter='black_tophat', footprint=None, mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_262_{filter='black_tophat', footprint=None, mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_263_{filter='black_tophat', footprint=None, mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_264_{filter='black_tophat', footprint=None, mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_265_{filter='black_tophat', footprint=None, mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_266_{filter='black_tophat', footprint=None, mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_267_{filter='black_tophat', footprint=None, mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_268_{filter='black_tophat', footprint=None, mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_269_{filter='black_tophat', footprint=None, mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_270_{filter='black_tophat', footprint=None, mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_271_{filter='black_tophat', footprint=None, mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_272_{filter='black_tophat', footprint=None, mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_273_{filter='black_tophat', footprint=None, mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_274_{filter='black_tophat', footprint=None, mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_275_{filter='black_tophat', footprint=None, mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_276_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_277_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_278_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_279_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_280_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_281_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_282_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_283_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_284_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_285_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_286_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_287_{filter='black_tophat', footprint='random', mode='reflect', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_288_{filter='black_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_289_{filter='black_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_290_{filter='black_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_291_{filter='black_tophat', footprint='random', mode='constant', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_292_{filter='black_tophat', footprint='random', mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_293_{filter='black_tophat', footprint='random', mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_294_{filter='black_tophat', footprint='random', mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_295_{filter='black_tophat', footprint='random', mode='constant', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_296_{filter='black_tophat', footprint='random', mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_297_{filter='black_tophat', footprint='random', mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_298_{filter='black_tophat', footprint='random', mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_299_{filter='black_tophat', footprint='random', mode='constant', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_300_{filter='black_tophat', footprint='random', mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_301_{filter='black_tophat', footprint='random', mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_302_{filter='black_tophat', footprint='random', mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_303_{filter='black_tophat', footprint='random', mode='nearest', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_304_{filter='black_tophat', footprint='random', mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_305_{filter='black_tophat', footprint='random', mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_306_{filter='black_tophat', footprint='random', mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_307_{filter='black_tophat', footprint='random', mode='nearest', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_308_{filter='black_tophat', footprint='random', mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_309_{filter='black_tophat', footprint='random', mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_310_{filter='black_tophat', footprint='random', mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_311_{filter='black_tophat', footprint='random', mode='nearest', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_312_{filter='black_tophat', footprint='random', mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_313_{filter='black_tophat', footprint='random', mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_314_{filter='black_tophat', footprint='random', mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_315_{filter='black_tophat', footprint='random', mode='mirror', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_316_{filter='black_tophat', footprint='random', mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_317_{filter='black_tophat', footprint='random', mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.79 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_318_{filter='black_tophat', footprint='random', mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_319_{filter='black_tophat', footprint='random', mode='mirror', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_320_{filter='black_tophat', footprint='random', mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_321_{filter='black_tophat', footprint='random', mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_322_{filter='black_tophat', footprint='random', mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_323_{filter='black_tophat', footprint='random', mode='mirror', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_324_{filter='black_tophat', footprint='random', mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_325_{filter='black_tophat', footprint='random', mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_326_{filter='black_tophat', footprint='random', mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_327_{filter='black_tophat', footprint='random', mode='wrap', origin=0, output=None, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_328_{filter='black_tophat', footprint='random', mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_329_{filter='black_tophat', footprint='random', mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_330_{filter='black_tophat', footprint='random', mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_331_{filter='black_tophat', footprint='random', mode='wrap', origin=0, output=float32, shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_332_{filter='black_tophat', footprint='random', mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_333_{filter='black_tophat', footprint='random', mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure=None, x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_334_{filter='black_tophat', footprint='random', mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=int32}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py::TestWhiteTophatAndBlackTopHat::test_white_tophat_and_black_tophat[_param_335_{filter='black_tophat', footprint='random', mode='wrap', origin=0, output='zeros', shape=(6, 8), size=3, structure='random', x_dtype=float64}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py::TestSepFIR2d_param_0_{hcol=1, hrow=1, input=(256, 256)}::test_sepfir2d | 3.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py::TestSepFIR2d_param_1_{hcol=1, hrow=1, input=(4, 512)}::test_sepfir2d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py::TestSepFIR2d_param_2_{hcol=1, hrow=1, input=(512, 3)}::test_sepfir2d | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py::TestSepFIR2d_param_3_{hcol=1, hrow=3, input=(256, 256)}::test_sepfir2d | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py::TestSepFIR2d_param_4_{hcol=1, hrow=3, input=(4, 512)}::test_sepfir2d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py::TestSepFIR2d_param_5_{hcol=1, hrow=3, input=(512, 3)}::test_sepfir2d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py::TestSepFIR2d_param_6_{hcol=3, hrow=1, input=(256, 256)}::test_sepfir2d | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py::TestSepFIR2d_param_7_{hcol=3, hrow=1, input=(4, 512)}::test_sepfir2d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py::TestSepFIR2d_param_8_{hcol=3, hrow=1, input=(512, 3)}::test_sepfir2d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py::TestSepFIR2d_param_9_{hcol=3, hrow=3, input=(256, 256)}::test_sepfir2d | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py::TestSepFIR2d_param_10_{hcol=3, hrow=3, input=(4, 512)}::test_sepfir2d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py::TestSepFIR2d_param_11_{hcol=3, hrow=3, input=(512, 3)}::test_sepfir2d | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_0_{mode='full', size1=(10,), size2=3}] | 10.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_1_{mode='full', size1=(10,), size2=4}] | 10.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_2_{mode='full', size1=(10,), size2=5}] | 10.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_3_{mode='full', size1=(10,), size2=10}] | 10.65 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_4_{mode='full', size1=(5, 10), size2=3}] | 9.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_5_{mode='full', size1=(5, 10), size2=4}] | 10.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_6_{mode='full', size1=(5, 10), size2=5}] | 11.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_7_{mode='full', size1=(5, 10), size2=10}] | 16.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_8_{mode='full', size1=(10, 3), size2=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_9_{mode='full', size1=(10, 3), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_10_{mode='full', size1=(10, 3), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_11_{mode='full', size1=(10, 3), size2=10}] | 10.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_12_{mode='full', size1=(3, 4, 10), size2=3}] | 12.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_13_{mode='full', size1=(3, 4, 10), size2=4}] | 12.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_14_{mode='full', size1=(3, 4, 10), size2=5}] | 12.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_15_{mode='full', size1=(3, 4, 10), size2=10}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_16_{mode='same', size1=(10,), size2=3}] | 10.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_17_{mode='same', size1=(10,), size2=4}] | 10.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_18_{mode='same', size1=(10,), size2=5}] | 10.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_19_{mode='same', size1=(10,), size2=10}] | 10.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_20_{mode='same', size1=(5, 10), size2=3}] | 9.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_21_{mode='same', size1=(5, 10), size2=4}] | 10.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_22_{mode='same', size1=(5, 10), size2=5}] | 11.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_23_{mode='same', size1=(5, 10), size2=10}] | 16.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_24_{mode='same', size1=(10, 3), size2=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_25_{mode='same', size1=(10, 3), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_26_{mode='same', size1=(10, 3), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_27_{mode='same', size1=(10, 3), size2=10}] | 10.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_28_{mode='same', size1=(3, 4, 10), size2=3}] | 12.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_29_{mode='same', size1=(3, 4, 10), size2=4}] | 12.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_30_{mode='same', size1=(3, 4, 10), size2=5}] | 12.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_31_{mode='same', size1=(3, 4, 10), size2=10}] | 12.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_32_{mode='valid', size1=(10,), size2=3}] | 10.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_33_{mode='valid', size1=(10,), size2=4}] | 10.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_34_{mode='valid', size1=(10,), size2=5}] | 10.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_35_{mode='valid', size1=(10,), size2=10}] | 10.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_36_{mode='valid', size1=(5, 10), size2=3}] | 9.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_37_{mode='valid', size1=(5, 10), size2=4}] | 10.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_38_{mode='valid', size1=(5, 10), size2=5}] | 11.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_39_{mode='valid', size1=(5, 10), size2=10}] | 16.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_40_{mode='valid', size1=(10, 3), size2=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_41_{mode='valid', size1=(10, 3), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_42_{mode='valid', size1=(10, 3), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_43_{mode='valid', size1=(10, 3), size2=10}] | 11.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_44_{mode='valid', size1=(3, 4, 10), size2=3}] | 12.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_45_{mode='valid', size1=(3, 4, 10), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_46_{mode='valid', size1=(3, 4, 10), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_convolve[_param_47_{mode='valid', size1=(3, 4, 10), size2=10}] | 12.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_0_{mode='full', size1=(10,), size2=3}] | 10.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_1_{mode='full', size1=(10,), size2=4}] | 10.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_2_{mode='full', size1=(10,), size2=5}] | 10.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_3_{mode='full', size1=(10,), size2=10}] | 10.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_4_{mode='full', size1=(5, 10), size2=3}] | 9.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_5_{mode='full', size1=(5, 10), size2=4}] | 9.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_6_{mode='full', size1=(5, 10), size2=5}] | 9.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_7_{mode='full', size1=(5, 10), size2=10}] | 10.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_8_{mode='full', size1=(10, 3), size2=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_9_{mode='full', size1=(10, 3), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_10_{mode='full', size1=(10, 3), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_11_{mode='full', size1=(10, 3), size2=10}] | 10.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_12_{mode='full', size1=(3, 4, 10), size2=3}] | 10.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_13_{mode='full', size1=(3, 4, 10), size2=4}] | 11.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_14_{mode='full', size1=(3, 4, 10), size2=5}] | 13.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_15_{mode='full', size1=(3, 4, 10), size2=10}] | 0.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_16_{mode='same', size1=(10,), size2=3}] | 10.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_17_{mode='same', size1=(10,), size2=4}] | 10.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_18_{mode='same', size1=(10,), size2=5}] | 10.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_19_{mode='same', size1=(10,), size2=10}] | 10.63 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_20_{mode='same', size1=(5, 10), size2=3}] | 8.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_21_{mode='same', size1=(5, 10), size2=4}] | 8.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_22_{mode='same', size1=(5, 10), size2=5}] | 9.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_23_{mode='same', size1=(5, 10), size2=10}] | 11.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_24_{mode='same', size1=(10, 3), size2=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_25_{mode='same', size1=(10, 3), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_26_{mode='same', size1=(10, 3), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_27_{mode='same', size1=(10, 3), size2=10}] | 10.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_28_{mode='same', size1=(3, 4, 10), size2=3}] | 9.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_29_{mode='same', size1=(3, 4, 10), size2=4}] | 11.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_30_{mode='same', size1=(3, 4, 10), size2=5}] | 13.55 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_31_{mode='same', size1=(3, 4, 10), size2=10}] | 13.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_32_{mode='valid', size1=(10,), size2=3}] | 10.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_33_{mode='valid', size1=(10,), size2=4}] | 10.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_34_{mode='valid', size1=(10,), size2=5}] | 10.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_35_{mode='valid', size1=(10,), size2=10}] | 10.65 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_36_{mode='valid', size1=(5, 10), size2=3}] | 9.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_37_{mode='valid', size1=(5, 10), size2=4}] | 9.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_38_{mode='valid', size1=(5, 10), size2=5}] | 9.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_39_{mode='valid', size1=(5, 10), size2=10}] | 10.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_40_{mode='valid', size1=(10, 3), size2=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_41_{mode='valid', size1=(10, 3), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_42_{mode='valid', size1=(10, 3), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_43_{mode='valid', size1=(10, 3), size2=10}] | 10.14 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_44_{mode='valid', size1=(3, 4, 10), size2=3}] | 10.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_45_{mode='valid', size1=(3, 4, 10), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_46_{mode='valid', size1=(3, 4, 10), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate::test_correlate[_param_47_{mode='valid', size1=(3, 4, 10), size2=10}] | 13.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_0_{mode='full', size1=(10,), size2=3}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_1_{mode='full', size1=(10,), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_2_{mode='full', size1=(10,), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_3_{mode='full', size1=(10,), size2=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_4_{mode='full', size1=(5, 10), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_5_{mode='full', size1=(5, 10), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_6_{mode='full', size1=(5, 10), size2=5}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_7_{mode='full', size1=(5, 10), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_8_{mode='full', size1=(10, 3), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_9_{mode='full', size1=(10, 3), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_10_{mode='full', size1=(10, 3), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_11_{mode='full', size1=(10, 3), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_16_{mode='same', size1=(10,), size2=3}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_17_{mode='same', size1=(10,), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_18_{mode='same', size1=(10,), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_19_{mode='same', size1=(10,), size2=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_20_{mode='same', size1=(5, 10), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_21_{mode='same', size1=(5, 10), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_22_{mode='same', size1=(5, 10), size2=5}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_23_{mode='same', size1=(5, 10), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_24_{mode='same', size1=(10, 3), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_25_{mode='same', size1=(10, 3), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_26_{mode='same', size1=(10, 3), size2=5}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_27_{mode='same', size1=(10, 3), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_32_{mode='valid', size1=(10,), size2=3}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_33_{mode='valid', size1=(10,), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_34_{mode='valid', size1=(10,), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_35_{mode='valid', size1=(10,), size2=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_36_{mode='valid', size1=(5, 10), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_37_{mode='valid', size1=(5, 10), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_38_{mode='valid', size1=(5, 10), size2=5}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_39_{mode='valid', size1=(5, 10), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_40_{mode='valid', size1=(10, 3), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_41_{mode='valid', size1=(10, 3), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_42_{mode='valid', size1=(10, 3), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_43_{mode='valid', size1=(10, 3), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_45_{mode='valid', size1=(3, 4, 10), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_fftconvolve[_param_46_{mode='valid', size1=(3, 4, 10), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_0_{mode='full', size1=(10,), size2=3}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_1_{mode='full', size1=(10,), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_2_{mode='full', size1=(10,), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_3_{mode='full', size1=(10,), size2=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_4_{mode='full', size1=(5, 10), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_5_{mode='full', size1=(5, 10), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_6_{mode='full', size1=(5, 10), size2=5}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_7_{mode='full', size1=(5, 10), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_8_{mode='full', size1=(10, 3), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_9_{mode='full', size1=(10, 3), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_10_{mode='full', size1=(10, 3), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_11_{mode='full', size1=(10, 3), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_16_{mode='same', size1=(10,), size2=3}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_17_{mode='same', size1=(10,), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_18_{mode='same', size1=(10,), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_19_{mode='same', size1=(10,), size2=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_20_{mode='same', size1=(5, 10), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_21_{mode='same', size1=(5, 10), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_22_{mode='same', size1=(5, 10), size2=5}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_23_{mode='same', size1=(5, 10), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_24_{mode='same', size1=(10, 3), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_25_{mode='same', size1=(10, 3), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_26_{mode='same', size1=(10, 3), size2=5}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_27_{mode='same', size1=(10, 3), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_32_{mode='valid', size1=(10,), size2=3}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_33_{mode='valid', size1=(10,), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_34_{mode='valid', size1=(10,), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_35_{mode='valid', size1=(10,), size2=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_36_{mode='valid', size1=(5, 10), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_37_{mode='valid', size1=(5, 10), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_38_{mode='valid', size1=(5, 10), size2=5}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_39_{mode='valid', size1=(5, 10), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_40_{mode='valid', size1=(10, 3), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_41_{mode='valid', size1=(10, 3), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_42_{mode='valid', size1=(10, 3), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_43_{mode='valid', size1=(10, 3), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_45_{mode='valid', size1=(3, 4, 10), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_convolve_fft[_param_46_{mode='valid', size1=(3, 4, 10), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_0_{mode='full', size1=(10,), size2=3}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_1_{mode='full', size1=(10,), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_2_{mode='full', size1=(10,), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_3_{mode='full', size1=(10,), size2=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_4_{mode='full', size1=(5, 10), size2=3}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_5_{mode='full', size1=(5, 10), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_6_{mode='full', size1=(5, 10), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_7_{mode='full', size1=(5, 10), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_8_{mode='full', size1=(10, 3), size2=3}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_9_{mode='full', size1=(10, 3), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_10_{mode='full', size1=(10, 3), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_11_{mode='full', size1=(10, 3), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_16_{mode='same', size1=(10,), size2=3}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_17_{mode='same', size1=(10,), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_18_{mode='same', size1=(10,), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_19_{mode='same', size1=(10,), size2=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_20_{mode='same', size1=(5, 10), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_21_{mode='same', size1=(5, 10), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_22_{mode='same', size1=(5, 10), size2=5}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_23_{mode='same', size1=(5, 10), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_24_{mode='same', size1=(10, 3), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_25_{mode='same', size1=(10, 3), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_26_{mode='same', size1=(10, 3), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_27_{mode='same', size1=(10, 3), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_32_{mode='valid', size1=(10,), size2=3}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_33_{mode='valid', size1=(10,), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_34_{mode='valid', size1=(10,), size2=5}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_35_{mode='valid', size1=(10,), size2=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_36_{mode='valid', size1=(5, 10), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_37_{mode='valid', size1=(5, 10), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_38_{mode='valid', size1=(5, 10), size2=5}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_39_{mode='valid', size1=(5, 10), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_40_{mode='valid', size1=(10, 3), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_41_{mode='valid', size1=(10, 3), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_42_{mode='valid', size1=(10, 3), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_43_{mode='valid', size1=(10, 3), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_45_{mode='valid', size1=(3, 4, 10), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolve::test_correlate_fft[_param_46_{mode='valid', size1=(3, 4, 10), size2=5}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[1-7-full] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[1-7-same] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[1-7-valid] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[3-1-full] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[3-1-same] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[3-1-valid] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[54-31-full] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[54-31-same] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[54-31-valid] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[11-24-full] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[11-24-same] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[11-24-valid] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[--full] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[--same] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[--valid] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[511-141-full] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[511-141-same] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1[511-141-valid] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_incomparable_shape[51-14-full] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_incomparable_shape[51-14-same] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_incomparable_shape[511-141-full] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_incomparable_shape[511-141-same] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_axes[14-24-0-full] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_axes[14-24-0-same] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_axes[14-24-0-valid] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_axes[255-213-12-full] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_axes[255-213-12-same] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_axes[255-213-12-valid] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_axes[255-211-12-full] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_axes[255-211-12-same] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_axes[255-211-12-valid] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_axes[155-213-12-full] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_axes[155-213-12-same] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestFFTConvolveFastShape::test_fftconvolve1_axes[155-213-12-valid] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_0_{mode='full', size1=(10,), size2=3}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_1_{mode='full', size1=(10,), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_3_{mode='full', size1=(10,), size2=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_5_{mode='full', size1=(5, 10), size2=3}] | 3.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_6_{mode='full', size1=(5, 10), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_8_{mode='full', size1=(5, 10), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_10_{mode='full', size1=(10, 3), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_11_{mode='full', size1=(10, 3), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_13_{mode='full', size1=(10, 3), size2=10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_15_{mode='full', size1=(3, 10, 15), size2=3}] | 6.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_16_{mode='full', size1=(3, 10, 15), size2=4}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_18_{mode='full', size1=(3, 10, 15), size2=10}] | 0.05 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_20_{mode='same', size1=(10,), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_21_{mode='same', size1=(10,), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_23_{mode='same', size1=(10,), size2=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_25_{mode='same', size1=(5, 10), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_26_{mode='same', size1=(5, 10), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_28_{mode='same', size1=(5, 10), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_30_{mode='same', size1=(10, 3), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_31_{mode='same', size1=(10, 3), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_33_{mode='same', size1=(10, 3), size2=10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_35_{mode='same', size1=(3, 10, 15), size2=3}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_36_{mode='same', size1=(3, 10, 15), size2=4}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_38_{mode='same', size1=(3, 10, 15), size2=10}] | 0.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_40_{mode='valid', size1=(10,), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_41_{mode='valid', size1=(10,), size2=4}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_43_{mode='valid', size1=(10,), size2=10}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_45_{mode='valid', size1=(5, 10), size2=3}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_46_{mode='valid', size1=(5, 10), size2=4}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_48_{mode='valid', size1=(5, 10), size2=10}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_50_{mode='valid', size1=(10, 3), size2=3}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_51_{mode='valid', size1=(10, 3), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_53_{mode='valid', size1=(10, 3), size2=10}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_55_{mode='valid', size1=(3, 10, 15), size2=3}] | 0.03 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_56_{mode='valid', size1=(3, 10, 15), size2=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOAConvolve::test_oaconvolve[_param_58_{mode='valid', size1=(3, 10, 15), size2=10}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_0_{boundary='fill', fillvalue=0, mode='full', size1=(5, 10), size2=(3, 2)}] | 9.44 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_1_{boundary='fill', fillvalue=0, mode='full', size1=(5, 10), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_2_{boundary='fill', fillvalue=0, mode='full', size1=(5, 10), size2=(2, 2)}] | 9.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_3_{boundary='fill', fillvalue=0, mode='full', size1=(5, 10), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_4_{boundary='fill', fillvalue=0, mode='full', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_5_{boundary='fill', fillvalue=0, mode='full', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_6_{boundary='fill', fillvalue=0, mode='full', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_7_{boundary='fill', fillvalue=0, mode='full', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_8_{boundary='fill', fillvalue=0, mode='full', size1=(10, 7), size2=(10, 10)}] | 18.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_9_{boundary='fill', fillvalue=0, mode='full', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_10_{boundary='fill', fillvalue=0, mode='same', size1=(5, 10), size2=(3, 2)}] | 9.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_11_{boundary='fill', fillvalue=0, mode='same', size1=(5, 10), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_12_{boundary='fill', fillvalue=0, mode='same', size1=(5, 10), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_13_{boundary='fill', fillvalue=0, mode='same', size1=(5, 10), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_14_{boundary='fill', fillvalue=0, mode='same', size1=(5, 10), size2=(11, 11)}] | 16.11 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_15_{boundary='fill', fillvalue=0, mode='same', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_16_{boundary='fill', fillvalue=0, mode='same', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_17_{boundary='fill', fillvalue=0, mode='same', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_18_{boundary='fill', fillvalue=0, mode='same', size1=(10, 7), size2=(10, 10)}] | 18.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_19_{boundary='fill', fillvalue=0, mode='same', size1=(10, 7), size2=(11, 11)}] | 19.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_20_{boundary='fill', fillvalue=0, mode='valid', size1=(5, 10), size2=(3, 2)}] | 9.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_21_{boundary='fill', fillvalue=0, mode='valid', size1=(5, 10), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_22_{boundary='fill', fillvalue=0, mode='valid', size1=(5, 10), size2=(2, 2)}] | 9.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_23_{boundary='fill', fillvalue=0, mode='valid', size1=(5, 10), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_24_{boundary='fill', fillvalue=0, mode='valid', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_25_{boundary='fill', fillvalue=0, mode='valid', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_26_{boundary='fill', fillvalue=0, mode='valid', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_27_{boundary='fill', fillvalue=0, mode='valid', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_28_{boundary='fill', fillvalue=0, mode='valid', size1=(10, 7), size2=(10, 10)}] | 18.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_29_{boundary='fill', fillvalue=0, mode='valid', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_30_{boundary='fill', fillvalue=1, mode='full', size1=(5, 10), size2=(3, 2)}] | 9.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_31_{boundary='fill', fillvalue=1, mode='full', size1=(5, 10), size2=(3, 3)}] | 9.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_32_{boundary='fill', fillvalue=1, mode='full', size1=(5, 10), size2=(2, 2)}] | 9.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_33_{boundary='fill', fillvalue=1, mode='full', size1=(5, 10), size2=(10, 10)}] | 9.88 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_34_{boundary='fill', fillvalue=1, mode='full', size1=(5, 10), size2=(11, 11)}] | 9.97 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_35_{boundary='fill', fillvalue=1, mode='full', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_36_{boundary='fill', fillvalue=1, mode='full', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_37_{boundary='fill', fillvalue=1, mode='full', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_38_{boundary='fill', fillvalue=1, mode='full', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_39_{boundary='fill', fillvalue=1, mode='full', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_40_{boundary='fill', fillvalue=1, mode='same', size1=(5, 10), size2=(3, 2)}] | 9.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_41_{boundary='fill', fillvalue=1, mode='same', size1=(5, 10), size2=(3, 3)}] | 9.61 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_42_{boundary='fill', fillvalue=1, mode='same', size1=(5, 10), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_43_{boundary='fill', fillvalue=1, mode='same', size1=(5, 10), size2=(10, 10)}] | 9.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_44_{boundary='fill', fillvalue=1, mode='same', size1=(5, 10), size2=(11, 11)}] | 9.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_45_{boundary='fill', fillvalue=1, mode='same', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_46_{boundary='fill', fillvalue=1, mode='same', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_47_{boundary='fill', fillvalue=1, mode='same', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_48_{boundary='fill', fillvalue=1, mode='same', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_49_{boundary='fill', fillvalue=1, mode='same', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_50_{boundary='fill', fillvalue=1, mode='valid', size1=(5, 10), size2=(3, 2)}] | 9.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_51_{boundary='fill', fillvalue=1, mode='valid', size1=(5, 10), size2=(3, 3)}] | 9.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_52_{boundary='fill', fillvalue=1, mode='valid', size1=(5, 10), size2=(2, 2)}] | 9.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_53_{boundary='fill', fillvalue=1, mode='valid', size1=(5, 10), size2=(10, 10)}] | 16.07 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_54_{boundary='fill', fillvalue=1, mode='valid', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_55_{boundary='fill', fillvalue=1, mode='valid', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_56_{boundary='fill', fillvalue=1, mode='valid', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_57_{boundary='fill', fillvalue=1, mode='valid', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_58_{boundary='fill', fillvalue=1, mode='valid', size1=(10, 7), size2=(10, 10)}] | 18.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_59_{boundary='fill', fillvalue=1, mode='valid', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_60_{boundary='fill', fillvalue=-1, mode='full', size1=(5, 10), size2=(3, 2)}] | 9.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_61_{boundary='fill', fillvalue=-1, mode='full', size1=(5, 10), size2=(3, 3)}] | 9.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_62_{boundary='fill', fillvalue=-1, mode='full', size1=(5, 10), size2=(2, 2)}] | 9.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_63_{boundary='fill', fillvalue=-1, mode='full', size1=(5, 10), size2=(10, 10)}] | 9.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_64_{boundary='fill', fillvalue=-1, mode='full', size1=(5, 10), size2=(11, 11)}] | 9.91 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_65_{boundary='fill', fillvalue=-1, mode='full', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_66_{boundary='fill', fillvalue=-1, mode='full', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_67_{boundary='fill', fillvalue=-1, mode='full', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_68_{boundary='fill', fillvalue=-1, mode='full', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_69_{boundary='fill', fillvalue=-1, mode='full', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_70_{boundary='fill', fillvalue=-1, mode='same', size1=(5, 10), size2=(3, 2)}] | 9.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_71_{boundary='fill', fillvalue=-1, mode='same', size1=(5, 10), size2=(3, 3)}] | 9.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_72_{boundary='fill', fillvalue=-1, mode='same', size1=(5, 10), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_73_{boundary='fill', fillvalue=-1, mode='same', size1=(5, 10), size2=(10, 10)}] | 9.89 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_74_{boundary='fill', fillvalue=-1, mode='same', size1=(5, 10), size2=(11, 11)}] | 9.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_75_{boundary='fill', fillvalue=-1, mode='same', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_76_{boundary='fill', fillvalue=-1, mode='same', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_77_{boundary='fill', fillvalue=-1, mode='same', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_78_{boundary='fill', fillvalue=-1, mode='same', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_79_{boundary='fill', fillvalue=-1, mode='same', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_80_{boundary='fill', fillvalue=-1, mode='valid', size1=(5, 10), size2=(3, 2)}] | 9.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_81_{boundary='fill', fillvalue=-1, mode='valid', size1=(5, 10), size2=(3, 3)}] | 9.64 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_82_{boundary='fill', fillvalue=-1, mode='valid', size1=(5, 10), size2=(2, 2)}] | 9.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_83_{boundary='fill', fillvalue=-1, mode='valid', size1=(5, 10), size2=(10, 10)}] | 16.15 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_84_{boundary='fill', fillvalue=-1, mode='valid', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_85_{boundary='fill', fillvalue=-1, mode='valid', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_86_{boundary='fill', fillvalue=-1, mode='valid', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_87_{boundary='fill', fillvalue=-1, mode='valid', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_88_{boundary='fill', fillvalue=-1, mode='valid', size1=(10, 7), size2=(10, 10)}] | 18.99 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_89_{boundary='fill', fillvalue=-1, mode='valid', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_90_{boundary='wrap', fillvalue=0, mode='full', size1=(5, 10), size2=(3, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_91_{boundary='wrap', fillvalue=0, mode='full', size1=(5, 10), size2=(3, 3)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_92_{boundary='wrap', fillvalue=0, mode='full', size1=(5, 10), size2=(2, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_93_{boundary='wrap', fillvalue=0, mode='full', size1=(5, 10), size2=(10, 10)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_94_{boundary='wrap', fillvalue=0, mode='full', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_95_{boundary='wrap', fillvalue=0, mode='full', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_96_{boundary='wrap', fillvalue=0, mode='full', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_97_{boundary='wrap', fillvalue=0, mode='full', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_98_{boundary='wrap', fillvalue=0, mode='full', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_99_{boundary='wrap', fillvalue=0, mode='full', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_100_{boundary='wrap', fillvalue=0, mode='same', size1=(5, 10), size2=(3, 2)}] | 9.48 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_101_{boundary='wrap', fillvalue=0, mode='same', size1=(5, 10), size2=(3, 3)}] | 9.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_102_{boundary='wrap', fillvalue=0, mode='same', size1=(5, 10), size2=(2, 2)}] | 9.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_103_{boundary='wrap', fillvalue=0, mode='same', size1=(5, 10), size2=(10, 10)}] | 9.84 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_104_{boundary='wrap', fillvalue=0, mode='same', size1=(5, 10), size2=(11, 11)}] | 9.90 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_105_{boundary='wrap', fillvalue=0, mode='same', size1=(10, 7), size2=(3, 2)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_106_{boundary='wrap', fillvalue=0, mode='same', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_107_{boundary='wrap', fillvalue=0, mode='same', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_108_{boundary='wrap', fillvalue=0, mode='same', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_109_{boundary='wrap', fillvalue=0, mode='same', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_110_{boundary='wrap', fillvalue=0, mode='valid', size1=(5, 10), size2=(3, 2)}] | 9.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_111_{boundary='wrap', fillvalue=0, mode='valid', size1=(5, 10), size2=(3, 3)}] | 9.59 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_112_{boundary='wrap', fillvalue=0, mode='valid', size1=(5, 10), size2=(2, 2)}] | 9.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_113_{boundary='wrap', fillvalue=0, mode='valid', size1=(5, 10), size2=(10, 10)}] | 15.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_114_{boundary='wrap', fillvalue=0, mode='valid', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_115_{boundary='wrap', fillvalue=0, mode='valid', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_116_{boundary='wrap', fillvalue=0, mode='valid', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_117_{boundary='wrap', fillvalue=0, mode='valid', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_118_{boundary='wrap', fillvalue=0, mode='valid', size1=(10, 7), size2=(10, 10)}] | 9.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_119_{boundary='wrap', fillvalue=0, mode='valid', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_120_{boundary='symm', fillvalue=0, mode='full', size1=(5, 10), size2=(3, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_121_{boundary='symm', fillvalue=0, mode='full', size1=(5, 10), size2=(3, 3)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_122_{boundary='symm', fillvalue=0, mode='full', size1=(5, 10), size2=(2, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_123_{boundary='symm', fillvalue=0, mode='full', size1=(5, 10), size2=(10, 10)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_124_{boundary='symm', fillvalue=0, mode='full', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_125_{boundary='symm', fillvalue=0, mode='full', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_126_{boundary='symm', fillvalue=0, mode='full', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_127_{boundary='symm', fillvalue=0, mode='full', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_128_{boundary='symm', fillvalue=0, mode='full', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_129_{boundary='symm', fillvalue=0, mode='full', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_130_{boundary='symm', fillvalue=0, mode='same', size1=(5, 10), size2=(3, 2)}] | 9.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_131_{boundary='symm', fillvalue=0, mode='same', size1=(5, 10), size2=(3, 3)}] | 9.67 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_132_{boundary='symm', fillvalue=0, mode='same', size1=(5, 10), size2=(2, 2)}] | 9.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_133_{boundary='symm', fillvalue=0, mode='same', size1=(5, 10), size2=(10, 10)}] | 9.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_134_{boundary='symm', fillvalue=0, mode='same', size1=(5, 10), size2=(11, 11)}] | 9.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_135_{boundary='symm', fillvalue=0, mode='same', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_136_{boundary='symm', fillvalue=0, mode='same', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_137_{boundary='symm', fillvalue=0, mode='same', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_138_{boundary='symm', fillvalue=0, mode='same', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_139_{boundary='symm', fillvalue=0, mode='same', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_140_{boundary='symm', fillvalue=0, mode='valid', size1=(5, 10), size2=(3, 2)}] | 9.51 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_141_{boundary='symm', fillvalue=0, mode='valid', size1=(5, 10), size2=(3, 3)}] | 9.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_142_{boundary='symm', fillvalue=0, mode='valid', size1=(5, 10), size2=(2, 2)}] | 9.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_143_{boundary='symm', fillvalue=0, mode='valid', size1=(5, 10), size2=(10, 10)}] | 15.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_144_{boundary='symm', fillvalue=0, mode='valid', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_145_{boundary='symm', fillvalue=0, mode='valid', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_146_{boundary='symm', fillvalue=0, mode='valid', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_147_{boundary='symm', fillvalue=0, mode='valid', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_148_{boundary='symm', fillvalue=0, mode='valid', size1=(10, 7), size2=(10, 10)}] | 9.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_convolve2d[_param_149_{boundary='symm', fillvalue=0, mode='valid', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_0_{boundary='fill', fillvalue=0, mode='full', size1=(5, 10), size2=(3, 2)}] | 9.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_1_{boundary='fill', fillvalue=0, mode='full', size1=(5, 10), size2=(3, 3)}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_2_{boundary='fill', fillvalue=0, mode='full', size1=(5, 10), size2=(2, 2)}] | 9.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_3_{boundary='fill', fillvalue=0, mode='full', size1=(5, 10), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_4_{boundary='fill', fillvalue=0, mode='full', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_5_{boundary='fill', fillvalue=0, mode='full', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_6_{boundary='fill', fillvalue=0, mode='full', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_7_{boundary='fill', fillvalue=0, mode='full', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_8_{boundary='fill', fillvalue=0, mode='full', size1=(10, 7), size2=(10, 10)}] | 11.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_9_{boundary='fill', fillvalue=0, mode='full', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_10_{boundary='fill', fillvalue=0, mode='same', size1=(5, 10), size2=(3, 2)}] | 9.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_11_{boundary='fill', fillvalue=0, mode='same', size1=(5, 10), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_12_{boundary='fill', fillvalue=0, mode='same', size1=(5, 10), size2=(2, 2)}] | 9.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_13_{boundary='fill', fillvalue=0, mode='same', size1=(5, 10), size2=(10, 10)}] | 11.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_14_{boundary='fill', fillvalue=0, mode='same', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_15_{boundary='fill', fillvalue=0, mode='same', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_16_{boundary='fill', fillvalue=0, mode='same', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_17_{boundary='fill', fillvalue=0, mode='same', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_18_{boundary='fill', fillvalue=0, mode='same', size1=(10, 7), size2=(10, 10)}] | 11.95 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_19_{boundary='fill', fillvalue=0, mode='same', size1=(10, 7), size2=(11, 11)}] | 11.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_20_{boundary='fill', fillvalue=0, mode='valid', size1=(5, 10), size2=(3, 2)}] | 9.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_21_{boundary='fill', fillvalue=0, mode='valid', size1=(5, 10), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_22_{boundary='fill', fillvalue=0, mode='valid', size1=(5, 10), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_23_{boundary='fill', fillvalue=0, mode='valid', size1=(5, 10), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_24_{boundary='fill', fillvalue=0, mode='valid', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_25_{boundary='fill', fillvalue=0, mode='valid', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_26_{boundary='fill', fillvalue=0, mode='valid', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_27_{boundary='fill', fillvalue=0, mode='valid', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_28_{boundary='fill', fillvalue=0, mode='valid', size1=(10, 7), size2=(10, 10)}] | 11.94 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_29_{boundary='fill', fillvalue=0, mode='valid', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_30_{boundary='fill', fillvalue=1, mode='full', size1=(5, 10), size2=(3, 2)}] | 9.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_31_{boundary='fill', fillvalue=1, mode='full', size1=(5, 10), size2=(3, 3)}] | 9.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_32_{boundary='fill', fillvalue=1, mode='full', size1=(5, 10), size2=(2, 2)}] | 9.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_33_{boundary='fill', fillvalue=1, mode='full', size1=(5, 10), size2=(10, 10)}] | 12.74 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_34_{boundary='fill', fillvalue=1, mode='full', size1=(5, 10), size2=(11, 11)}] | 12.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_35_{boundary='fill', fillvalue=1, mode='full', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_36_{boundary='fill', fillvalue=1, mode='full', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_37_{boundary='fill', fillvalue=1, mode='full', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_38_{boundary='fill', fillvalue=1, mode='full', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_39_{boundary='fill', fillvalue=1, mode='full', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_40_{boundary='fill', fillvalue=1, mode='same', size1=(5, 10), size2=(3, 2)}] | 9.32 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_41_{boundary='fill', fillvalue=1, mode='same', size1=(5, 10), size2=(3, 3)}] | 8.64 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_42_{boundary='fill', fillvalue=1, mode='same', size1=(5, 10), size2=(2, 2)}] | 9.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_43_{boundary='fill', fillvalue=1, mode='same', size1=(5, 10), size2=(10, 10)}] | 12.77 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_44_{boundary='fill', fillvalue=1, mode='same', size1=(5, 10), size2=(11, 11)}] | 12.83 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_45_{boundary='fill', fillvalue=1, mode='same', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_46_{boundary='fill', fillvalue=1, mode='same', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_47_{boundary='fill', fillvalue=1, mode='same', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_48_{boundary='fill', fillvalue=1, mode='same', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_49_{boundary='fill', fillvalue=1, mode='same', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_50_{boundary='fill', fillvalue=1, mode='valid', size1=(5, 10), size2=(3, 2)}] | 9.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_51_{boundary='fill', fillvalue=1, mode='valid', size1=(5, 10), size2=(3, 3)}] | 9.40 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_52_{boundary='fill', fillvalue=1, mode='valid', size1=(5, 10), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_53_{boundary='fill', fillvalue=1, mode='valid', size1=(5, 10), size2=(10, 10)}] | 11.04 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_54_{boundary='fill', fillvalue=1, mode='valid', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_55_{boundary='fill', fillvalue=1, mode='valid', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_56_{boundary='fill', fillvalue=1, mode='valid', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_57_{boundary='fill', fillvalue=1, mode='valid', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_58_{boundary='fill', fillvalue=1, mode='valid', size1=(10, 7), size2=(10, 10)}] | 11.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_59_{boundary='fill', fillvalue=1, mode='valid', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_60_{boundary='fill', fillvalue=-1, mode='full', size1=(5, 10), size2=(3, 2)}] | 9.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_61_{boundary='fill', fillvalue=-1, mode='full', size1=(5, 10), size2=(3, 3)}] | 9.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_62_{boundary='fill', fillvalue=-1, mode='full', size1=(5, 10), size2=(2, 2)}] | 9.20 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_63_{boundary='fill', fillvalue=-1, mode='full', size1=(5, 10), size2=(10, 10)}] | 12.69 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_64_{boundary='fill', fillvalue=-1, mode='full', size1=(5, 10), size2=(11, 11)}] | 12.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_65_{boundary='fill', fillvalue=-1, mode='full', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_66_{boundary='fill', fillvalue=-1, mode='full', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_67_{boundary='fill', fillvalue=-1, mode='full', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_68_{boundary='fill', fillvalue=-1, mode='full', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_69_{boundary='fill', fillvalue=-1, mode='full', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_70_{boundary='fill', fillvalue=-1, mode='same', size1=(5, 10), size2=(3, 2)}] | 9.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_71_{boundary='fill', fillvalue=-1, mode='same', size1=(5, 10), size2=(3, 3)}] | 8.65 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_72_{boundary='fill', fillvalue=-1, mode='same', size1=(5, 10), size2=(2, 2)}] | 9.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_73_{boundary='fill', fillvalue=-1, mode='same', size1=(5, 10), size2=(10, 10)}] | 12.76 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_74_{boundary='fill', fillvalue=-1, mode='same', size1=(5, 10), size2=(11, 11)}] | 12.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_75_{boundary='fill', fillvalue=-1, mode='same', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_76_{boundary='fill', fillvalue=-1, mode='same', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_77_{boundary='fill', fillvalue=-1, mode='same', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_78_{boundary='fill', fillvalue=-1, mode='same', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_79_{boundary='fill', fillvalue=-1, mode='same', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_80_{boundary='fill', fillvalue=-1, mode='valid', size1=(5, 10), size2=(3, 2)}] | 9.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_81_{boundary='fill', fillvalue=-1, mode='valid', size1=(5, 10), size2=(3, 3)}] | 9.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_82_{boundary='fill', fillvalue=-1, mode='valid', size1=(5, 10), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_83_{boundary='fill', fillvalue=-1, mode='valid', size1=(5, 10), size2=(10, 10)}] | 11.10 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_84_{boundary='fill', fillvalue=-1, mode='valid', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_85_{boundary='fill', fillvalue=-1, mode='valid', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_86_{boundary='fill', fillvalue=-1, mode='valid', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_87_{boundary='fill', fillvalue=-1, mode='valid', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_88_{boundary='fill', fillvalue=-1, mode='valid', size1=(10, 7), size2=(10, 10)}] | 11.92 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_89_{boundary='fill', fillvalue=-1, mode='valid', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_90_{boundary='wrap', fillvalue=0, mode='full', size1=(5, 10), size2=(3, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_91_{boundary='wrap', fillvalue=0, mode='full', size1=(5, 10), size2=(3, 3)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_92_{boundary='wrap', fillvalue=0, mode='full', size1=(5, 10), size2=(2, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_93_{boundary='wrap', fillvalue=0, mode='full', size1=(5, 10), size2=(10, 10)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_94_{boundary='wrap', fillvalue=0, mode='full', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_95_{boundary='wrap', fillvalue=0, mode='full', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_96_{boundary='wrap', fillvalue=0, mode='full', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_97_{boundary='wrap', fillvalue=0, mode='full', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_98_{boundary='wrap', fillvalue=0, mode='full', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_99_{boundary='wrap', fillvalue=0, mode='full', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_100_{boundary='wrap', fillvalue=0, mode='same', size1=(5, 10), size2=(3, 2)}] | 9.36 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_101_{boundary='wrap', fillvalue=0, mode='same', size1=(5, 10), size2=(3, 3)}] | 8.65 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_102_{boundary='wrap', fillvalue=0, mode='same', size1=(5, 10), size2=(2, 2)}] | 9.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_103_{boundary='wrap', fillvalue=0, mode='same', size1=(5, 10), size2=(10, 10)}] | 10.96 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_104_{boundary='wrap', fillvalue=0, mode='same', size1=(5, 10), size2=(11, 11)}] | 11.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_105_{boundary='wrap', fillvalue=0, mode='same', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_106_{boundary='wrap', fillvalue=0, mode='same', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_107_{boundary='wrap', fillvalue=0, mode='same', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_108_{boundary='wrap', fillvalue=0, mode='same', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_109_{boundary='wrap', fillvalue=0, mode='same', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_110_{boundary='wrap', fillvalue=0, mode='valid', size1=(5, 10), size2=(3, 2)}] | 9.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_111_{boundary='wrap', fillvalue=0, mode='valid', size1=(5, 10), size2=(3, 3)}] | 9.33 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_112_{boundary='wrap', fillvalue=0, mode='valid', size1=(5, 10), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_113_{boundary='wrap', fillvalue=0, mode='valid', size1=(5, 10), size2=(10, 10)}] | 10.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_114_{boundary='wrap', fillvalue=0, mode='valid', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_115_{boundary='wrap', fillvalue=0, mode='valid', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_116_{boundary='wrap', fillvalue=0, mode='valid', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_117_{boundary='wrap', fillvalue=0, mode='valid', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_118_{boundary='wrap', fillvalue=0, mode='valid', size1=(10, 7), size2=(10, 10)}] | 10.52 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_119_{boundary='wrap', fillvalue=0, mode='valid', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_120_{boundary='symm', fillvalue=0, mode='full', size1=(5, 10), size2=(3, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_121_{boundary='symm', fillvalue=0, mode='full', size1=(5, 10), size2=(3, 3)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_122_{boundary='symm', fillvalue=0, mode='full', size1=(5, 10), size2=(2, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_123_{boundary='symm', fillvalue=0, mode='full', size1=(5, 10), size2=(10, 10)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_124_{boundary='symm', fillvalue=0, mode='full', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_125_{boundary='symm', fillvalue=0, mode='full', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_126_{boundary='symm', fillvalue=0, mode='full', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_127_{boundary='symm', fillvalue=0, mode='full', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_128_{boundary='symm', fillvalue=0, mode='full', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_129_{boundary='symm', fillvalue=0, mode='full', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
------------------------------Captured stdout call------------------------------ skipped: dtype = <class 'numpy.float64'> (broken in scipy) skipped: dtype = <class 'numpy.float32'> (broken in scipy) skipped: dtype = <class 'numpy.float16'> (broken in scipy) skipped: dtype = <class 'numpy.int8'> (broken in scipy) skipped: dtype = <class 'numpy.int16'> (broken in scipy) skipped: dtype = <class 'numpy.int32'> (broken in scipy) skipped: dtype = <class 'numpy.int64'> (broken in scipy) skipped: dtype = <class 'numpy.longlong'> (broken in scipy) skipped: dtype = <class 'numpy.uint8'> (broken in scipy) skipped: dtype = <class 'numpy.uint16'> (broken in scipy) skipped: dtype = <class 'numpy.uint32'> (broken in scipy) skipped: dtype = <class 'numpy.uint64'> (broken in scipy) skipped: dtype = <class 'numpy.ulonglong'> (broken in scipy) skipped: dtype = <class 'numpy.bool_'> (broken in scipy) skipped: dtype = <class 'numpy.complex64'> (broken in scipy) skipped: dtype = <class 'numpy.complex128'> (broken in scipy) | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_130_{boundary='symm', fillvalue=0, mode='same', size1=(5, 10), size2=(3, 2)}] | 9.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_131_{boundary='symm', fillvalue=0, mode='same', size1=(5, 10), size2=(3, 3)}] | 6.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_132_{boundary='symm', fillvalue=0, mode='same', size1=(5, 10), size2=(2, 2)}] | 9.31 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_133_{boundary='symm', fillvalue=0, mode='same', size1=(5, 10), size2=(10, 10)}] | 11.16 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_134_{boundary='symm', fillvalue=0, mode='same', size1=(5, 10), size2=(11, 11)}] | 11.64 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_135_{boundary='symm', fillvalue=0, mode='same', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_136_{boundary='symm', fillvalue=0, mode='same', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_137_{boundary='symm', fillvalue=0, mode='same', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_138_{boundary='symm', fillvalue=0, mode='same', size1=(10, 7), size2=(10, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_139_{boundary='symm', fillvalue=0, mode='same', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_140_{boundary='symm', fillvalue=0, mode='valid', size1=(5, 10), size2=(3, 2)}] | 9.37 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_141_{boundary='symm', fillvalue=0, mode='valid', size1=(5, 10), size2=(3, 3)}] | 8.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_142_{boundary='symm', fillvalue=0, mode='valid', size1=(5, 10), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_143_{boundary='symm', fillvalue=0, mode='valid', size1=(5, 10), size2=(10, 10)}] | 10.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_144_{boundary='symm', fillvalue=0, mode='valid', size1=(5, 10), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_145_{boundary='symm', fillvalue=0, mode='valid', size1=(10, 7), size2=(3, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_146_{boundary='symm', fillvalue=0, mode='valid', size1=(10, 7), size2=(3, 3)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_147_{boundary='symm', fillvalue=0, mode='valid', size1=(10, 7), size2=(2, 2)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_148_{boundary='symm', fillvalue=0, mode='valid', size1=(10, 7), size2=(10, 10)}] | 10.70 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestConvolveCorrelate2D::test_correlate2d[_param_149_{boundary='symm', fillvalue=0, mode='valid', size1=(10, 7), size2=(11, 11)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method1[_param_0_{mode='valid'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method1[_param_1_{mode='same'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method1[_param_2_{mode='full'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method2[_param_0_{mode='valid'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method2[_param_1_{mode='same'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method2[_param_2_{mode='full'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method_int[_param_0_{mode='valid'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method_int[_param_1_{mode='same'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method_int[_param_2_{mode='full'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method_ndim[_param_0_{mode='valid'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method_ndim[_param_1_{mode='same'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method_ndim[_param_2_{mode='full'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method_zero_dim[_param_0_{mode='valid'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method_zero_dim[_param_1_{mode='same'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestChooseConvMethod::test_choose_conv_method_zero_dim[_param_2_{mode='full'}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_0_{im=(10,), mysize=3, noise=False}] | 2.98 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_1_{im=(10,), mysize=3, noise=True}] | 8.87 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_2_{im=(10,), mysize=4, noise=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_3_{im=(10,), mysize=4, noise=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_4_{im=(10,), mysize=(3, 4, 5), noise=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_5_{im=(10,), mysize=(3, 4, 5), noise=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_6_{im=(5, 10), mysize=3, noise=False}] | 3.09 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_7_{im=(5, 10), mysize=3, noise=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_8_{im=(5, 10), mysize=4, noise=False}] | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_9_{im=(5, 10), mysize=4, noise=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_10_{im=(5, 10), mysize=(3, 4, 5), noise=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_11_{im=(5, 10), mysize=(3, 4, 5), noise=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_12_{im=(10, 3), mysize=3, noise=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_13_{im=(10, 3), mysize=3, noise=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_14_{im=(10, 3), mysize=4, noise=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_15_{im=(10, 3), mysize=4, noise=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_16_{im=(10, 3), mysize=(3, 4, 5), noise=False}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_17_{im=(10, 3), mysize=(3, 4, 5), noise=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_18_{im=(3, 4, 10), mysize=3, noise=False}] | 2.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_19_{im=(3, 4, 10), mysize=3, noise=True}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_20_{im=(3, 4, 10), mysize=4, noise=False}] | 2.41 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_21_{im=(3, 4, 10), mysize=4, noise=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_22_{im=(3, 4, 10), mysize=(3, 4, 5), noise=False}] | 1.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestWiener::test_wiener[_param_23_{im=(3, 4, 10), mysize=(3, 4, 5), noise=True}] | 0.02 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_0_{a=(10,), domain=3, rank=0}] | 7.46 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_1_{a=(10,), domain=3, rank=1}] | 7.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_2_{a=(10,), domain=3, rank=2}] | 7.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_3_{a=(10,), domain=4, rank=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_4_{a=(10,), domain=4, rank=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_5_{a=(10,), domain=4, rank=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_6_{a=(10,), domain=(3, 3, 5), rank=0}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_7_{a=(10,), domain=(3, 3, 5), rank=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_8_{a=(10,), domain=(3, 3, 5), rank=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_9_{a=(5, 10), domain=3, rank=0}] | 9.22 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_10_{a=(5, 10), domain=3, rank=1}] | 8.06 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_11_{a=(5, 10), domain=3, rank=2}] | 8.08 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_12_{a=(5, 10), domain=4, rank=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_13_{a=(5, 10), domain=4, rank=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_14_{a=(5, 10), domain=4, rank=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_15_{a=(5, 10), domain=(3, 3, 5), rank=0}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_16_{a=(5, 10), domain=(3, 3, 5), rank=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_17_{a=(5, 10), domain=(3, 3, 5), rank=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_18_{a=(10, 3), domain=3, rank=0}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_19_{a=(10, 3), domain=3, rank=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_20_{a=(10, 3), domain=3, rank=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_21_{a=(10, 3), domain=4, rank=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_22_{a=(10, 3), domain=4, rank=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_23_{a=(10, 3), domain=4, rank=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_24_{a=(10, 3), domain=(3, 3, 5), rank=0}] | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_25_{a=(10, 3), domain=(3, 3, 5), rank=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_26_{a=(10, 3), domain=(3, 3, 5), rank=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_27_{a=(3, 4, 10), domain=3, rank=0}] | 7.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_28_{a=(3, 4, 10), domain=3, rank=1}] | 9.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_29_{a=(3, 4, 10), domain=3, rank=2}] | 9.81 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_30_{a=(3, 4, 10), domain=4, rank=0}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_31_{a=(3, 4, 10), domain=4, rank=1}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_32_{a=(3, 4, 10), domain=4, rank=2}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_33_{a=(3, 4, 10), domain=(3, 3, 5), rank=0}] | 9.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_34_{a=(3, 4, 10), domain=(3, 3, 5), rank=1}] | 11.21 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestOrderFilter::test_order_filter[_param_35_{a=(3, 4, 10), domain=(3, 3, 5), rank=2}] | 11.53 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt::test_medfilt[_param_0_{kernel_size=3, volume=(10,)}] | 8.30 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt::test_medfilt[_param_1_{kernel_size=3, volume=(5, 10)}] | 9.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt::test_medfilt[_param_2_{kernel_size=3, volume=(10, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt::test_medfilt[_param_3_{kernel_size=3, volume=(5, 6, 10)}] | 11.75 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt::test_medfilt[_param_4_{kernel_size=4, volume=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt::test_medfilt[_param_5_{kernel_size=4, volume=(5, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt::test_medfilt[_param_6_{kernel_size=4, volume=(10, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt::test_medfilt[_param_7_{kernel_size=4, volume=(5, 6, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt::test_medfilt[_param_8_{kernel_size=(3, 3, 5), volume=(10,)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt::test_medfilt[_param_9_{kernel_size=(3, 3, 5), volume=(5, 10)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt::test_medfilt[_param_10_{kernel_size=(3, 3, 5), volume=(10, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt::test_medfilt[_param_11_{kernel_size=(3, 3, 5), volume=(5, 6, 10)}] | 13.93 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt2d::test_medfilt2d[_param_0_{input=(5, 10), kernel_size=3}] | 0.80 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt2d::test_medfilt2d[_param_1_{input=(5, 10), kernel_size=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt2d::test_medfilt2d[_param_2_{input=(5, 10), kernel_size=(3, 5)}] | 2.60 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt2d::test_medfilt2d[_param_3_{input=(10, 5), kernel_size=3}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt2d::test_medfilt2d[_param_4_{input=(10, 5), kernel_size=4}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py::TestMedFilt2d::test_medfilt2d[_param_5_{input=(10, 5), kernel_size=(3, 5)}] | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py::TestSpecial::test_i0 | 2.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py::TestSpecial::test_i1 | 2.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py::TestSpecial::test_j0 | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py::TestSpecial::test_j1 | 0.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py::TestSpecial::test_y0 | 2.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py::TestSpecial::test_y1 | 2.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py::TestFusionSpecial::test_i0 | 2.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py::TestFusionSpecial::test_i1 | 2.27 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py::TestFusionSpecial::test_j0 | 2.34 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py::TestFusionSpecial::test_j1 | 2.35 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py::TestFusionSpecial::test_y0 | 2.57 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py::TestFusionSpecial::test_y1 | 2.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_convex_analysis.py::TestSpecialConvex::test_entr | 2.24 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_convex_analysis.py::TestSpecialConvex::test_huber | 2.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_convex_analysis.py::TestSpecialConvex::test_huber_basic | 0.72 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_convex_analysis.py::TestSpecialConvex::test_pseudo_huber | 2.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_convex_analysis.py::TestSpecialConvex::test_rel_entr | 2.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_digamma.py::TestDigamma::test_arange | 9.50 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_digamma.py::TestDigamma::test_inf_and_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_digamma.py::TestDigamma::test_linspace_negative | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_digamma.py::TestDigamma::test_linspace_positive | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_digamma.py::TestDigamma::test_scalar | 1.58 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_erf.py::TestSpecial::test_erf | 2.25 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_erf.py::TestSpecial::test_erfc | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_erf.py::TestSpecial::test_erfcinv | 2.67 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_erf.py::TestSpecial::test_erfcinv_behavior | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_erf.py::TestSpecial::test_erfcx | 2.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_erf.py::TestSpecial::test_erfinv | 2.38 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_erf.py::TestSpecial::test_erfinv_behavior | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_erf.py::TestFusionSpecial::test_erf | 2.23 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_erf.py::TestFusionSpecial::test_erfc | 2.29 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_erf.py::TestFusionSpecial::test_erfcinv | 2.68 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_erf.py::TestFusionSpecial::test_erfcx | 2.28 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_erf.py::TestFusionSpecial::test_erfinv | 2.39 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_gamma.py::TestGamma::test_arange | 9.45 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_gamma.py::TestGamma::test_inf_and_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_gamma.py::TestGamma::test_linspace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_gamma.py::TestGamma::test_scalar | 1.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_gammaln.py::TestGammaln::test_arange | 9.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_gammaln.py::TestGammaln::test_inf_and_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_gammaln.py::TestGammaln::test_linspace | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_gammaln.py::TestGammaln::test_scalar | 1.54 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_polygamma.py::TestPolygamma::test_arange | 10.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_polygamma.py::TestPolygamma::test_inf_and_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_polygamma.py::TestPolygamma::test_linspace | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_polygamma.py::TestPolygamma::test_scalar | 2.26 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_statistics.py::TestSpecial::test_ndtr | 2.43 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_statistics.py::TestFusionSpecial::test_ndtr | 2.42 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_zeta.py::TestZeta::test_arange | 7.19 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_zeta.py::TestZeta::test_inf_and_nan | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_zeta.py::TestZeta::test_linspace | 0.01 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/special_tests/test_zeta.py::TestZeta::test_scalar | 0.82 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_0_{axis=None, base=None, normalize=False, shape=(64,), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_0_{axis=None, base=None, normalize=False, shape=(64,), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_1_{axis=None, base=None, normalize=False, shape=(64,), use_qk=True}::test_entropy | 1.49 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_1_{axis=None, base=None, normalize=False, shape=(64,), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_2_{axis=None, base=None, normalize=False, shape=(16, 15), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_2_{axis=None, base=None, normalize=False, shape=(16, 15), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_3_{axis=None, base=None, normalize=False, shape=(16, 15), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_3_{axis=None, base=None, normalize=False, shape=(16, 15), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_4_{axis=None, base=None, normalize=False, shape=(14, 4, 10), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_4_{axis=None, base=None, normalize=False, shape=(14, 4, 10), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_5_{axis=None, base=None, normalize=False, shape=(14, 4, 10), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_5_{axis=None, base=None, normalize=False, shape=(14, 4, 10), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_6_{axis=None, base=None, normalize=True, shape=(64,), use_qk=False}::test_entropy | 6.62 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_6_{axis=None, base=None, normalize=True, shape=(64,), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_7_{axis=None, base=None, normalize=True, shape=(64,), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_7_{axis=None, base=None, normalize=True, shape=(64,), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_8_{axis=None, base=None, normalize=True, shape=(16, 15), use_qk=False}::test_entropy | 3.78 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_8_{axis=None, base=None, normalize=True, shape=(16, 15), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_9_{axis=None, base=None, normalize=True, shape=(16, 15), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_9_{axis=None, base=None, normalize=True, shape=(16, 15), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_10_{axis=None, base=None, normalize=True, shape=(14, 4, 10), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_10_{axis=None, base=None, normalize=True, shape=(14, 4, 10), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_11_{axis=None, base=None, normalize=True, shape=(14, 4, 10), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_11_{axis=None, base=None, normalize=True, shape=(14, 4, 10), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_12_{axis=None, base=10, normalize=False, shape=(64,), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_12_{axis=None, base=10, normalize=False, shape=(64,), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_13_{axis=None, base=10, normalize=False, shape=(64,), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_13_{axis=None, base=10, normalize=False, shape=(64,), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_14_{axis=None, base=10, normalize=False, shape=(16, 15), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_14_{axis=None, base=10, normalize=False, shape=(16, 15), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_15_{axis=None, base=10, normalize=False, shape=(16, 15), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_15_{axis=None, base=10, normalize=False, shape=(16, 15), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_16_{axis=None, base=10, normalize=False, shape=(14, 4, 10), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_16_{axis=None, base=10, normalize=False, shape=(14, 4, 10), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_17_{axis=None, base=10, normalize=False, shape=(14, 4, 10), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_17_{axis=None, base=10, normalize=False, shape=(14, 4, 10), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_18_{axis=None, base=10, normalize=True, shape=(64,), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_18_{axis=None, base=10, normalize=True, shape=(64,), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_19_{axis=None, base=10, normalize=True, shape=(64,), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_19_{axis=None, base=10, normalize=True, shape=(64,), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_20_{axis=None, base=10, normalize=True, shape=(16, 15), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_20_{axis=None, base=10, normalize=True, shape=(16, 15), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_21_{axis=None, base=10, normalize=True, shape=(16, 15), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_21_{axis=None, base=10, normalize=True, shape=(16, 15), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_22_{axis=None, base=10, normalize=True, shape=(14, 4, 10), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_22_{axis=None, base=10, normalize=True, shape=(14, 4, 10), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_23_{axis=None, base=10, normalize=True, shape=(14, 4, 10), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_23_{axis=None, base=10, normalize=True, shape=(14, 4, 10), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_24_{axis=0, base=None, normalize=False, shape=(64,), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_24_{axis=0, base=None, normalize=False, shape=(64,), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_25_{axis=0, base=None, normalize=False, shape=(64,), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_25_{axis=0, base=None, normalize=False, shape=(64,), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_26_{axis=0, base=None, normalize=False, shape=(16, 15), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_26_{axis=0, base=None, normalize=False, shape=(16, 15), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_27_{axis=0, base=None, normalize=False, shape=(16, 15), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_27_{axis=0, base=None, normalize=False, shape=(16, 15), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_28_{axis=0, base=None, normalize=False, shape=(14, 4, 10), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_28_{axis=0, base=None, normalize=False, shape=(14, 4, 10), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_29_{axis=0, base=None, normalize=False, shape=(14, 4, 10), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_29_{axis=0, base=None, normalize=False, shape=(14, 4, 10), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_30_{axis=0, base=None, normalize=True, shape=(64,), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_30_{axis=0, base=None, normalize=True, shape=(64,), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_31_{axis=0, base=None, normalize=True, shape=(64,), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_31_{axis=0, base=None, normalize=True, shape=(64,), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_32_{axis=0, base=None, normalize=True, shape=(16, 15), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_32_{axis=0, base=None, normalize=True, shape=(16, 15), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_33_{axis=0, base=None, normalize=True, shape=(16, 15), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_33_{axis=0, base=None, normalize=True, shape=(16, 15), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_34_{axis=0, base=None, normalize=True, shape=(14, 4, 10), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_34_{axis=0, base=None, normalize=True, shape=(14, 4, 10), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_35_{axis=0, base=None, normalize=True, shape=(14, 4, 10), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_35_{axis=0, base=None, normalize=True, shape=(14, 4, 10), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_36_{axis=0, base=10, normalize=False, shape=(64,), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_36_{axis=0, base=10, normalize=False, shape=(64,), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_37_{axis=0, base=10, normalize=False, shape=(64,), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_37_{axis=0, base=10, normalize=False, shape=(64,), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_38_{axis=0, base=10, normalize=False, shape=(16, 15), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_38_{axis=0, base=10, normalize=False, shape=(16, 15), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_39_{axis=0, base=10, normalize=False, shape=(16, 15), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_39_{axis=0, base=10, normalize=False, shape=(16, 15), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_40_{axis=0, base=10, normalize=False, shape=(14, 4, 10), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_40_{axis=0, base=10, normalize=False, shape=(14, 4, 10), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_41_{axis=0, base=10, normalize=False, shape=(14, 4, 10), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_41_{axis=0, base=10, normalize=False, shape=(14, 4, 10), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_42_{axis=0, base=10, normalize=True, shape=(64,), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_42_{axis=0, base=10, normalize=True, shape=(64,), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_43_{axis=0, base=10, normalize=True, shape=(64,), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_43_{axis=0, base=10, normalize=True, shape=(64,), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_44_{axis=0, base=10, normalize=True, shape=(16, 15), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_44_{axis=0, base=10, normalize=True, shape=(16, 15), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_45_{axis=0, base=10, normalize=True, shape=(16, 15), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_45_{axis=0, base=10, normalize=True, shape=(16, 15), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_46_{axis=0, base=10, normalize=True, shape=(14, 4, 10), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_46_{axis=0, base=10, normalize=True, shape=(14, 4, 10), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_47_{axis=0, base=10, normalize=True, shape=(14, 4, 10), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_47_{axis=0, base=10, normalize=True, shape=(14, 4, 10), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_48_{axis=-1, base=None, normalize=False, shape=(64,), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_48_{axis=-1, base=None, normalize=False, shape=(64,), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_49_{axis=-1, base=None, normalize=False, shape=(64,), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_49_{axis=-1, base=None, normalize=False, shape=(64,), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_50_{axis=-1, base=None, normalize=False, shape=(16, 15), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_50_{axis=-1, base=None, normalize=False, shape=(16, 15), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_51_{axis=-1, base=None, normalize=False, shape=(16, 15), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_51_{axis=-1, base=None, normalize=False, shape=(16, 15), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_52_{axis=-1, base=None, normalize=False, shape=(14, 4, 10), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_52_{axis=-1, base=None, normalize=False, shape=(14, 4, 10), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_53_{axis=-1, base=None, normalize=False, shape=(14, 4, 10), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_53_{axis=-1, base=None, normalize=False, shape=(14, 4, 10), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_54_{axis=-1, base=None, normalize=True, shape=(64,), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_54_{axis=-1, base=None, normalize=True, shape=(64,), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_55_{axis=-1, base=None, normalize=True, shape=(64,), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_55_{axis=-1, base=None, normalize=True, shape=(64,), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_56_{axis=-1, base=None, normalize=True, shape=(16, 15), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_56_{axis=-1, base=None, normalize=True, shape=(16, 15), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_57_{axis=-1, base=None, normalize=True, shape=(16, 15), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_57_{axis=-1, base=None, normalize=True, shape=(16, 15), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_58_{axis=-1, base=None, normalize=True, shape=(14, 4, 10), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_58_{axis=-1, base=None, normalize=True, shape=(14, 4, 10), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_59_{axis=-1, base=None, normalize=True, shape=(14, 4, 10), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_59_{axis=-1, base=None, normalize=True, shape=(14, 4, 10), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_60_{axis=-1, base=10, normalize=False, shape=(64,), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_60_{axis=-1, base=10, normalize=False, shape=(64,), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_61_{axis=-1, base=10, normalize=False, shape=(64,), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_61_{axis=-1, base=10, normalize=False, shape=(64,), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_62_{axis=-1, base=10, normalize=False, shape=(16, 15), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_62_{axis=-1, base=10, normalize=False, shape=(16, 15), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_63_{axis=-1, base=10, normalize=False, shape=(16, 15), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_63_{axis=-1, base=10, normalize=False, shape=(16, 15), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_64_{axis=-1, base=10, normalize=False, shape=(14, 4, 10), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_64_{axis=-1, base=10, normalize=False, shape=(14, 4, 10), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_65_{axis=-1, base=10, normalize=False, shape=(14, 4, 10), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_65_{axis=-1, base=10, normalize=False, shape=(14, 4, 10), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_66_{axis=-1, base=10, normalize=True, shape=(64,), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_66_{axis=-1, base=10, normalize=True, shape=(64,), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_67_{axis=-1, base=10, normalize=True, shape=(64,), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_67_{axis=-1, base=10, normalize=True, shape=(64,), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_68_{axis=-1, base=10, normalize=True, shape=(16, 15), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_68_{axis=-1, base=10, normalize=True, shape=(16, 15), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_69_{axis=-1, base=10, normalize=True, shape=(16, 15), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_69_{axis=-1, base=10, normalize=True, shape=(16, 15), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_70_{axis=-1, base=10, normalize=True, shape=(14, 4, 10), use_qk=False}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_70_{axis=-1, base=10, normalize=True, shape=(14, 4, 10), use_qk=False}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_71_{axis=-1, base=10, normalize=True, shape=(14, 4, 10), use_qk=True}::test_entropy | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropy_param_71_{axis=-1, base=10, normalize=True, shape=(14, 4, 10), use_qk=True}::test_entropy_complex | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropyBasic::test_entropy_2d | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropyBasic::test_entropy_2d_nondefault_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropyBasic::test_entropy_2d_zero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropyBasic::test_entropy_base | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropyBasic::test_entropy_base_2d_nondefault_axis | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropyBasic::test_entropy_positive | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropyBasic::test_entropy_raises_value_error | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py::TestEntropyBasic::test_entropy_zero | 0.00 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/tools_tests/test_install_library.py::TestInstallLibrary_param_0_{library='cudnn'}::test_main | 0.00 | |
|
------------------------------Captured stdout call------------------------------ [ { "cuda": "11.4", "cudnn": "8.2.4", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-11.4-linux-x64-v8.2.4.15.tgz", "filenames": [ "libcudnn.so.8.2.4", "libcudnn_ops_infer.so.8.2.4", "libcudnn_ops_train.so.8.2.4", "libcudnn_cnn_infer.so.8.2.4", "libcudnn_cnn_train.so.8.2.4", "libcudnn_adv_infer.so.8.2.4", "libcudnn_adv_train.so.8.2.4" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-11.4-windows-x64-v8.2.4.15.zip", "filenames": [ "cudnn64_8.dll", "cudnn_ops_infer64_8.dll", "cudnn_ops_train64_8.dll", "cudnn_cnn_infer64_8.dll", "cudnn_cnn_train64_8.dll", "cudnn_adv_infer64_8.dll", "cudnn_adv_train64_8.dll" ] } } }, { "cuda": "11.3", "cudnn": "8.2.4", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-11.4-linux-x64-v8.2.4.15.tgz", "filenames": [ "libcudnn.so.8.2.4", "libcudnn_ops_infer.so.8.2.4", "libcudnn_ops_train.so.8.2.4", "libcudnn_cnn_infer.so.8.2.4", "libcudnn_cnn_train.so.8.2.4", "libcudnn_adv_infer.so.8.2.4", "libcudnn_adv_train.so.8.2.4" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-11.4-windows-x64-v8.2.4.15.zip", "filenames": [ "cudnn64_8.dll", "cudnn_ops_infer64_8.dll", "cudnn_ops_train64_8.dll", "cudnn_cnn_infer64_8.dll", "cudnn_cnn_train64_8.dll", "cudnn_adv_infer64_8.dll", "cudnn_adv_train64_8.dll" ] } } }, { "cuda": "11.2", "cudnn": "8.2.4", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-11.4-linux-x64-v8.2.4.15.tgz", "filenames": [ "libcudnn.so.8.2.4", "libcudnn_ops_infer.so.8.2.4", "libcudnn_ops_train.so.8.2.4", "libcudnn_cnn_infer.so.8.2.4", "libcudnn_cnn_train.so.8.2.4", "libcudnn_adv_infer.so.8.2.4", "libcudnn_adv_train.so.8.2.4" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-11.4-windows-x64-v8.2.4.15.zip", "filenames": [ "cudnn64_8.dll", "cudnn_ops_infer64_8.dll", "cudnn_ops_train64_8.dll", "cudnn_cnn_infer64_8.dll", "cudnn_cnn_train64_8.dll", "cudnn_adv_infer64_8.dll", "cudnn_adv_train64_8.dll" ] } } }, { "cuda": "11.1", "cudnn": "8.2.4", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-11.4-linux-x64-v8.2.4.15.tgz", "filenames": [ "libcudnn.so.8.2.4", "libcudnn_ops_infer.so.8.2.4", "libcudnn_ops_train.so.8.2.4", "libcudnn_cnn_infer.so.8.2.4", "libcudnn_cnn_train.so.8.2.4", "libcudnn_adv_infer.so.8.2.4", "libcudnn_adv_train.so.8.2.4" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-11.4-windows-x64-v8.2.4.15.zip", "filenames": [ "cudnn64_8.dll", "cudnn_ops_infer64_8.dll", "cudnn_ops_train64_8.dll", "cudnn_cnn_infer64_8.dll", "cudnn_cnn_train64_8.dll", "cudnn_adv_infer64_8.dll", "cudnn_adv_train64_8.dll" ] } } }, { "cuda": "11.0", "cudnn": "8.2.4", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-11.4-linux-x64-v8.2.4.15.tgz", "filenames": [ "libcudnn.so.8.2.4", "libcudnn_ops_infer.so.8.2.4", "libcudnn_ops_train.so.8.2.4", "libcudnn_cnn_infer.so.8.2.4", "libcudnn_cnn_train.so.8.2.4", "libcudnn_adv_infer.so.8.2.4", "libcudnn_adv_train.so.8.2.4" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-11.4-windows-x64-v8.2.4.15.zip", "filenames": [ "cudnn64_8.dll", "cudnn_ops_infer64_8.dll", "cudnn_ops_train64_8.dll", "cudnn_cnn_infer64_8.dll", "cudnn_cnn_train64_8.dll", "cudnn_adv_infer64_8.dll", "cudnn_adv_train64_8.dll" ] } } }, { "cuda": "10.2", "cudnn": "8.2.4", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-10.2-linux-x64-v8.2.4.15.tgz", "filenames": [ "libcudnn.so.8.2.4", "libcudnn_ops_infer.so.8.2.4", "libcudnn_ops_train.so.8.2.4", "libcudnn_cnn_infer.so.8.2.4", "libcudnn_cnn_train.so.8.2.4", "libcudnn_adv_infer.so.8.2.4", "libcudnn_adv_train.so.8.2.4" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-10.2-windows10-x64-v8.2.4.15.zip", "filenames": [ "cudnn64_8.dll", "cudnn_ops_infer64_8.dll", "cudnn_ops_train64_8.dll", "cudnn_cnn_infer64_8.dll", "cudnn_cnn_train64_8.dll", "cudnn_adv_infer64_8.dll", "cudnn_adv_train64_8.dll" ] } } }, { "cuda": "10.1", "cudnn": "8.0.5", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.0.5/cudnn-10.1-linux-x64-v8.0.5.39.tgz", "filenames": [ "libcudnn.so.8.0.5", "libcudnn_ops_infer.so.8.0.5", "libcudnn_ops_train.so.8.0.5", "libcudnn_cnn_infer.so.8.0.5", "libcudnn_cnn_train.so.8.0.5", "libcudnn_adv_infer.so.8.0.5", "libcudnn_adv_train.so.8.0.5" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v8.0.5/cudnn-10.1-windows10-x64-v8.0.5.39.zip", "filenames": [ "cudnn64_8.dll", "cudnn_ops_infer64_8.dll", "cudnn_ops_train64_8.dll", "cudnn_cnn_infer64_8.dll", "cudnn_cnn_train64_8.dll", "cudnn_adv_infer64_8.dll", "cudnn_adv_train64_8.dll" ] } } }, { "cuda": "10.0", "cudnn": "7.6.5", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v7.6.5/cudnn-10.0-linux-x64-v7.6.5.32.tgz", "filenames": [ "libcudnn.so.7.6.5" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v7.6.5/cudnn-10.0-windows10-x64-v7.6.5.32.zip", "filenames": [ "cudnn64_7.dll" ] } } }, { "cuda": "9.2", "cudnn": "7.6.5", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v7.6.5/cudnn-9.2-linux-x64-v7.6.5.32.tgz", "filenames": [ "libcudnn.so.7.6.5" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/redist/cudnn/v7.6.5/cudnn-9.2-windows10-x64-v7.6.5.32.zip", "filenames": [ "cudnn64_7.dll" ] } } } ] | |||
| Passed | tests/cupyx_tests/tools_tests/test_install_library.py::TestInstallLibrary_param_0_{library='cudnn'}::test_urls | 0.85 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/tools_tests/test_install_library.py::TestInstallLibrary_param_1_{library='cutensor'}::test_main | 0.00 | |
|
------------------------------Captured stdout call------------------------------ [ { "cuda": "11.4", "cutensor": "1.3.1", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.3.1/local_installers/libcutensor-linux-x86_64-1.3.1.3.tar.gz", "filenames": [ "libcutensor.so.1.3.1" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.3.1/local_installers/libcutensor-windows-x86_64-1.3.1.3.zip", "filenames": [ "cutensor.dll" ] } } }, { "cuda": "11.3", "cutensor": "1.3.1", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.3.1/local_installers/libcutensor-linux-x86_64-1.3.1.3.tar.gz", "filenames": [ "libcutensor.so.1.3.1" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.3.1/local_installers/libcutensor-windows-x86_64-1.3.1.3.zip", "filenames": [ "cutensor.dll" ] } } }, { "cuda": "11.2", "cutensor": "1.3.1", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.3.1/local_installers/libcutensor-linux-x86_64-1.3.1.3.tar.gz", "filenames": [ "libcutensor.so.1.3.1" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.3.1/local_installers/libcutensor-windows-x86_64-1.3.1.3.zip", "filenames": [ "cutensor.dll" ] } } }, { "cuda": "11.1", "cutensor": "1.3.1", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.3.1/local_installers/libcutensor-linux-x86_64-1.3.1.3.tar.gz", "filenames": [ "libcutensor.so.1.3.1" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.3.1/local_installers/libcutensor-windows-x86_64-1.3.1.3.zip", "filenames": [ "cutensor.dll" ] } } }, { "cuda": "11.0", "cutensor": "1.3.1", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.3.1/local_installers/libcutensor-linux-x86_64-1.3.1.3.tar.gz", "filenames": [ "libcutensor.so.1.3.1" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.3.1/local_installers/libcutensor-windows-x86_64-1.3.1.3.zip", "filenames": [ "cutensor.dll" ] } } }, { "cuda": "10.2", "cutensor": "1.3.1", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.3.1/local_installers/libcutensor-linux-x86_64-1.3.1.3.tar.gz", "filenames": [ "libcutensor.so.1.3.1" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.3.1/local_installers/libcutensor-windows-x86_64-1.3.1.3.zip", "filenames": [ "cutensor.dll" ] } } }, { "cuda": "10.1", "cutensor": "1.2.2", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.2.2/local_installers/libcutensor-linux-x86_64-1.2.2.5.tar.gz", "filenames": [ "libcutensor.so.1.2.2" ] }, "Windows": { "url": "https://developer.download.nvidia.com/compute/cutensor/1.2.2/local_installers/libcutensor-windows-x86_64-1.2.2.5.zip", "filenames": [ "cutensor.dll" ] } } } ] | |||
| Passed | tests/cupyx_tests/tools_tests/test_install_library.py::TestInstallLibrary_param_1_{library='cutensor'}::test_urls | 0.56 | |
|
No log output captured. | |||
| Passed | tests/cupyx_tests/tools_tests/test_install_library.py::TestInstallLibrary_param_2_{library='nccl'}::test_main | 0.00 | |
|
------------------------------Captured stdout call------------------------------ [ { "cuda": "11.4", "nccl": "2.11.4", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/nccl/v2.11/nccl_2.11.4-1+cuda11.4_x86_64.txz", "filenames": [ "libnccl.so.2.11.4" ] } } }, { "cuda": "11.3", "nccl": "2.9.9", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/nccl/v2.9/nccl_2.9.9-1+cuda11.3_x86_64.txz", "filenames": [ "libnccl.so.2.9.9" ] } } }, { "cuda": "11.2", "nccl": "2.8.4", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/nccl/v2.8/nccl_2.8.4-1+cuda11.2_x86_64.txz", "filenames": [ "libnccl.so.2.8.4" ] } } }, { "cuda": "11.1", "nccl": "2.8.4", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/nccl/v2.8/nccl_2.8.4-1+cuda11.1_x86_64.txz", "filenames": [ "libnccl.so.2.8.4" ] } } }, { "cuda": "11.0", "nccl": "2.11.4", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/nccl/v2.11/nccl_2.11.4-1+cuda11.0_x86_64.txz", "filenames": [ "libnccl.so.2.11.4" ] } } }, { "cuda": "10.2", "nccl": "2.11.4", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/nccl/v2.11/nccl_2.11.4-1+cuda10.2_x86_64.txz", "filenames": [ "libnccl.so.2.11.4" ] } } }, { "cuda": "10.1", "nccl": "2.8.3", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/nccl/v2.8/nccl_2.8.3-1+cuda10.1_x86_64.txz", "filenames": [ "libnccl.so.2.8.3" ] } } }, { "cuda": "10.0", "nccl": "2.6.4", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/nccl/v2.6/nccl_2.6.4-1+cuda10.0_x86_64.txz", "filenames": [ "libnccl.so.2.6.4" ] } } }, { "cuda": "9.2", "nccl": "2.4.8", "assets": { "Linux": { "url": "https://developer.download.nvidia.com/compute/redist/nccl/v2.4/nccl_2.4.8-1+cuda9.2_x86_64.txz", "filenames": [ "libnccl.so.2.4.8" ] } } } ] | |||
| Passed | tests/cupyx_tests/tools_tests/test_install_library.py::TestInstallLibrary_param_2_{library='nccl'}::test_urls | 0.49 | |
|
No log output captured. | |||
| Passed | tests/example_tests/test_finance.py::TestBlackScholes::test_black_scholes | 2.38 | |
|
No log output captured. | |||
| Passed | tests/example_tests/test_finance.py::TestMonteCarlo::test_monte_carlo | 3.07 | |
|
No log output captured. | |||
| Passed | tests/example_tests/test_finance.py::TestMonteCarloWithMultiGPU::test_monte_carlo_multigpu | 1.84 | |
|
No log output captured. | |||
| Passed | tests/example_tests/test_gemm.py::TestGEMM::test_sgemm | 13.28 | |
|
No log output captured. | |||
| Passed | tests/install_tests/test_build.py::TestCheckVersion::test_check_hip_version | 0.23 | |
|
No log output captured. | |||
| Passed | tests/install_tests/test_utils.py::TestPrintWarning::test_print_warning | 0.00 | |
|
------------------------------Captured stdout call------------------------------ ************************************************** *** WARNING: This is a test. ************************************************** | |||
| Passed | tests/install_tests/test_utils.py::TestSearchOnPath::test_exec_not_found | 0.00 | |
|
No log output captured. | |||